ClamAV is an open source (GPLv2) anti-virus toolkit.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
clamav/contrib/phishing/gdbwhitelist.sh

8 lines
205 B

#!/bin/sh
if test $# -ne 1; then
echo "Usage: $0 /path/to/sample\n";
exit 1;
fi
clamscan --debug $1 >/dev/null 2>debugout
grep "This hash matched" debugout | sed -e 's/.*matched: \(.*\)/S:W:\1/'