Find Exim Spam

How to locate the top scripts on your server that send out email. You can then search the Exim mail log for those scripts to determine if it looks like spam, and even check your Apache access logs in order to find how a spammer might be using your scripts to send out spam. Login to your server via SSH as the root user. Run the following command to pull the most used mailing script’s location from the Exim mail log:

grep cwd /var/log/exim_mainlog | grep -v /var/spool | awk -F"cwd=" '{print $2}' | awk '{print $1}' | sort | uniq -c | sort -n

Code breakdown:

grep cwd /var/log/exim_mainlog 	

Use the grep command to locate mentions of cwd from the Exim mail log. This stands for current working directory.

grep -v /var/spool

Use the grep with the -v flag which is an invert match, so we don’t show any lines that start with /var/spool as these are normal Exim deliveries not sent in from a script.

   
awk -F"cwd=" '{print $2}' | awk '{print $1}' 	

Use the awk command with the -Field seperator set to cwd=, then just print out the $2nd set of data, finally pipe that to the awk command again only printing out the $1st column so that we only get back the script path.

sort | uniq -c | sort -n 	

Sort the script paths by their name, uniquely count them, then sort them again numerically from lowest to highest.

You should see something like this:


    15 /home/username/public_html/about-us
    25 /home/username/public_html
    7866 /home/username/public_html/data

Here we can see that the /home/userna5/public_html/data directory by far has more deliveries coming in than any others.Now we can run the following command to see what scripts are located in that directory:

ls -lahtr /username/public_html/data

In thise case we got back:

    drwxr-xr-x 17 username username 4.0K Jan 20 10:25 ../
    -rw-r--r-- 1 username username 5.6K Jan 20 11:27 mailer.php
    drwxr-xr-x 2 username username 4.0K Jan 20 11:27 ./

So we can see there is a script called mailer.php in this directory. Knowing the mailer.php script was sending mail into Exim, we can now take a look at our Apache access log to see what IP addresses are accessing this script using the following command:

grep "mailer.php" /home/username/access-logs/example.com | awk '{print $1}' | sort -n | uniq -c | sort -n

You should get back something similar to this:


    2 123.123.123.126
    2 123.123.123.125
    2 123.123.123.124
    7860 123.123.123.123

So we can clearly see that the IP address 123.123.123.123 was responsible for using our mailer script in a malicious nature. If you did find a malicious IP address sending out a large volume of messages from a script on your server you’ll probably want to go ahead and block them at your server’s firewall so that they can’t try to connect again.

Remove exim emails:

# exim -bp | exiqgrep -i | xargs exim -Mrm

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.