-
-
Save adampielak/e91e2dc3a0342401b12382736c396f19 to your computer and use it in GitHub Desktop.
spamemails.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| pprocess=`ps -ef | grep "spamemails.sh" | grep -v "grep" | wc -l`; | |
| if [ "$pprocess" -le 2 ] | |
| then | |
| { | |
| sh /usr/local/src/newmalicious.sh >> /usr/local/src/permupdates.txt; | |
| } | |
| fi | |
| Sub script File: /usr/local/src/newmalicious.sh | |
| #/bin/bash | |
| echo > /usr/local/src/newmalicious.txt | |
| for i in `tail -5000 /var/log/exim_mainlog | grep cwd | grep -v "/var/spool/exim" | replace "cwd=" "%" | cut -d "%" -f2 | awk '{print $1}' | grep -w "public_html" | uniq | sort -u`; do | |
| grep -lr '"64_decode";return' $i >> /usr/local/src/newmalicious.txt; | |
| done | |
| for j in `cat /usr/local/src/newmalicious.txt | grep -v -e '^$'`; do | |
| set -x | |
| chown root.root $j; | |
| chmod 000 $j; | |
| spamuser=`echo $j | cut -d '/' -f3`; | |
| pkill -u $spamuser; | |
| set +x | |
| exim -bpru | grep $spamuser | awk {'print $3'}| xargs exim -Mrm | |
| exim -bpr | grep frozen | awk {'print $3'} | xargs exim -Mrm; | |
| exim -bpru | grep '<>' | awk {'print $3'}| xargs exim -Mrm; | |
| done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment