ÈÐ Wïgê† Ðð† ñåmê

ïñ£ð§ê¢, ïñ£ðrmå†ïðñ §ê¢µr, Ðïgï†ål £ðrêñ§ï¢§, hå¢kïñg, §¥§†êm åÐmïñ阮rå†ïðñ, lïñµx ßlðg


The following will find malware and packed/obfuscated code along with javascript inside of pdf’s, etc recursively in the path you specify

[codesyntax lang=”bash”]

#!/bin/bash

# By Ed Wiget 
# this script scans path for virus, malware, etc

if [ "$1" = "" ]; then
	echo "what is the path to scan? i.e. /www"
	read cspath
else
	cspath=$1
fi
echo "path to scan is ${cspath}"

/usr/bin/freshclam

if [ ! -d /tmp/virus ]; then
	mkdir -p /tmp/virus
fi

/usr/bin/clamscan --recursive --infected --detect-pua=yes --algorithmic-detection=yes ${cspath} -l /var/log/clamscan.log --move=/tmp/virus

[/codesyntax]


Leave a Reply