Friday, March 25, 2016

How To Detect SPAM Sending PHP Scripts On your Webstie Server

Hello Friends,

In This Article i'am sharing a cool trick which helps the admin of a web server to detect spam sending php scripts on there server to avoid any wrong use of it.
Again I'am not a copier , i'am doing my research from various websites and blogs to provide you material
information which is easy to understand for normal humanware.
This Trick is taken from : http://blog.rimuhosting.com/

beware of spammers


Everyone has the occasional user who may leave something on their server that may send spam, or not update things as fast as they should. Tracking down the spammer can be a real problem though.
Sometimes you can track down the domain, but not the script, other times they may have so many files that its nearly impossible.
Recently, with the release of of PHP 5.3, they have enabled some brilliant tracking of spammers or exploited web forms by implementing some great features. One of those features is the configuration for email http://php.net/manual/en/mail.configuration.php
By simply adding the following 2 lines into your php.ini then you can track down pretty much any outgoing spam using PHP
mail.add_x_header = On
mail.log = /var/log/phpmail.log

The first one adds a header to all outgoing email. You may or may not want this one as it will give out information about your setup and config (eg uids, script locations), you also are probably not receiving the spam so its not much help too you. However, having received some spam today i checked the headers, and was able to email the owner of the server the exact location of his spam, so you never know.
The second line logs the entire lot to a log file. It's important to make sure that log file is owner and writeable by the webserver, and that it is being rotated by logrotate also.
With these in place your emails will have the following headers
X-PHP-Originating-Script: 33:ok.php
The 33 is the UID, the ok.php was the script sending me the spam.
An example of what is logged in the phpmail.log
mail() on [/var/www/vhosts/domain.com/httpdocs/pages/modules/system/system.mail.inc:83]: To: jeff@domain.co.uk -- Headers: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed; delsp=yes Content-Transfer-Encoding: 8Bit X-Mailer: Drupal Sender: jeff@domain.co.uk From: jeff@domain.co.uk
Handy!
Your php.ini will be in /etc/php.ini if you are using a RedHat based distro (Centos, Fedora, etc) and in /etc/php5/apache/php.ini if you run a Debian derivative (Ubuntu, etc). If you need a hand setting this up, just drop us an email.

Stay Tuned for more interesting articles here :)
Stay Safe

No comments:

Post a Comment