Web Hosting Talk







View Full Version : How to track down spammer using php spam script?


Skeptical
10-12-2003, 05:55 PM
What are some of the ways to track down a spammer on a servere using a php script to send out junkmail? I'm getting some bounced mails but the only thing it's telling me is that the spammer is using:

X-Mailer: PHPBulkEmailer 1.1 http://www.nukedweb.com/

I'm running cpanel so there's no central web server log for me to peruse through. Help!

linux-tech
10-12-2003, 07:19 PM
Originally posted by Skeptical
What are some of the ways to track down a spammer on a servere using a php script to send out junkmail? I'm getting some bounced mails but the only thing it's telling me is that the spammer is using:

X-Mailer: PHPBulkEmailer 1.1 http://www.nukedweb.com/

I'm running cpanel so there's no central web server log for me to peruse through. Help!

Use WHM. Be familliar with your tools. WHM has a very easy to use email management setup (top senders, all that).

straightface
10-12-2003, 07:19 PM
Hello,

Since he is using php, it is pretty difficult to find out. Because the script runs in the ownership of nobody(apache). You can enable phpsuexec to catch the culprit.

Usually sysadmins find out the hacker by searching through the home directories for php scripts that use mail() function.

Jim_UK
10-12-2003, 08:07 PM
find /home/*/public_html -iname 'index.php' -type f -print | xargs grep -i 'nukedweb.com'

eBoundary
10-12-2003, 11:36 PM
Originally posted by Jim_UK
find /home/*/public_html -iname 'index.php' -type f -print | xargs grep -i 'nukedweb.com'

Take it a step further and do \*.php

Or you could "egrep -i 'string' *" in the domlogs directory