I have been getting tons of email spam from my own domain name. It is coming from a contact form that uses sendmail.php. My guess is someone is trying to use it to spam other people, but it keeps going directly into my inbox. I can't block sender. I can't flag as spam. And, I can't discover who the spammer is.
Any suggestions would be appreciated.
The same exact problem i had, until i discovered these spammers particularly target servers with file names submit.php, sendmail.php
what you do is
1. Either rename the file sendmail.php as sendmail.php
2. Use image verification (effective/recommended). Just generate a random no on image and ask your visitors to verify the image.
And, these spammers generate random data and i later found that whereever i had user submitted forms my database is inserted with full of junk atleast my database got inserted with about 5-10 junk a day. Everything was solved until i used image verification.
Hope this helps.
olddocks
Junior Poster in Training
70 posts since Jul 2005
Reputation Points: 10
Solved Threads: 0
I have been getting tons of email spam from my own domain name. It is coming from a contact form that uses sendmail.php. My guess is someone is trying to use it to spam other people, but it keeps going directly into my inbox. I can't block sender. I can't flag as spam. And, I can't discover who the spammer is.
Any suggestions would be appreciated.
Implement something server-side to only process $_POST requests originating from your domain name.
cscgal
The Queen of DaniWeb
19,421 posts since Feb 2002
Reputation Points: 1,474
Solved Threads: 229
Checking the referer should do it.
cscgal
The Queen of DaniWeb
19,421 posts since Feb 2002
Reputation Points: 1,474
Solved Threads: 229
you have to add a file input
then when it gets uploaded you have to get the temp name and load it into an array or variable tehn send it to the user they want. so basically you have to look into the headers and content through headers. if you don't understand php then it will be difficult to setup as it really gets into the headers and mime-types.
Candy_ME
Junior Poster in Training
65 posts since Mar 2007
Reputation Points: 10
Solved Threads: 0
Hello,
Easiest way make one confirmation page after form submission page.
Spammer and softwares never confirm that page.
Thanks
dss
Junior Poster in Training
77 posts since Aug 2006
Reputation Points: 10
Solved Threads: 0