Forum Moderators: phranque
There is someone who is targeting my site and sending me more then 50 mails per day. All are spam mails. I have added a verification code using javascript but still getting many mails.
And the problem is that i can't develop verification image in php or asp bcoz there are around 300 html pages in my site that includes booking form.
I need your help to find out how i can block some one from sending such mails.
when i checked mail server it shows - mailed- bycoleman.example.com
Please help me.
Thanks
Dinesh Sharma
[edited by: phranque at 1:52 am (utc) on July 27, 2008]
[edit reason] examplified domain [/edit]
....All are spam mails. I have added a verification code using javascript but still getting many mails.
First, understand this is most likely an automated process and the attack is not hitting the form page. They are querying the form processor directly with a robot (automated program), which circumnavigates any "validation" on the form page. You need to turn your attention to the form processor itself.
....Spam mails consists adult website url's...etc
Two functions absolutely must be added to your form processor: figure out how to make it log the raw submitted data. Then seek out any malicious content (links of any kind) and stop the program immediately if found.
Consider a possibility, for a moment: your form processor does not adequately cleanse the input data and what if the robot sends data in such a way that it creates IT'S OWN BCC field? This is a common attack. You get one email, AOL gets 1000. And being a BCC, you never hear about it until your ISP warns you to remove the scripts because their IP is getting blacklisted.
There are many more.
Form abuse thread [webmasterworld.com]