new scan changes

This commit is contained in:
Palma Solutions LTD
2018-04-21 08:55:16 +02:00
parent 07868395dd
commit 4e70a9d8fa
5 changed files with 22 additions and 4 deletions

10
scan.sh
View File

@@ -16,28 +16,30 @@ base64 = "patterns/base64.txt"
mailing = "patterns/mailing.txt"
polymorphic = "patterns/polymorphic.txt"
crypto = "patterns/crypto.txt"
shells = "patterns/shells.txt"
misc = "patterns/misc.txt"
# Scanning for Phishing
for i in $(cat $phishing)
do
grep -Rl -e $i --include=*.{php,phtml,js,html,suspected}* /home/$user/public_html
grep -Rle $i --include=*.{php,phtml,js,html,suspected}* /home/$user/public_html
done
# Scanning for base64
for i in $(cat $base64)
do
grep -Rl -e $i /home/$user/public_html
grep -Rle $i --include=*.{php,phtml,js,html,suspected}* /home/$user/public_html
done
# Scanning for Mailing Scripts
for i in $(cat $mailing)
do
grep -Rl -e $i /home/$user/public_html
grep -Rle $i --include=*.{php,phtml}* /home/$user/public_html
done
# Scanning for CryptoCurrency Miners
for i in $(cat $crypto)
do
grep -Rl -e $i /home/$user/public_html
grep -Rle $i /home/$user/public_html
done