Reputation: 8398
I know that I can check IP addresses and domains against blacklists like Spamhaus and co, but is there a way that I can prevent [email protected]
from signing up at my website?
Upvotes: 0
Views: 110
Reputation: 78866
most form spam is created with fake/invalid email adresses which are only used once, so creating a blacklist is pretty useless.
it's way more effective to block known bot IPs and malicious URLs in the form body.
I also suggest securing your form with a good captcha.
If you don't want to bother your users with captchas, there is a less obtrusive, but also less effective trick: create a additional form field and hide it via css. only accept the form if this field was submitted empty. many bots usually fill out all fields, so you can reject the form if this hidden field has any content.
Upvotes: 2