TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Good web service to detect proxied IP addresses?

4 pointsby barmstrongabout 14 years ago
Hi,<p>I'm getting a large number of scam/spam messages being sent to users on my site. I have the usual deterrents in place (captchas, etc) but was wondering if there is a good API out there I can query to see if a user's IP address is being proxied or if they are known scammers/spammers/bad people from their ip address.<p>Thanks!

4 comments

xtacyabout 14 years ago
I don't know any services, but this might be a good place to start looking: <a href="http://whatismyipaddress.com/blacklist-check" rel="nofollow">http://whatismyipaddress.com/blacklist-check</a>.<p>There are a number of links to various IP blacklist providers.
评论 #2502333 未加载
staunchabout 14 years ago
Well behaving proxy servers will send X-Forwarded-For and other extra headers along with the request. Maybe the spammers actually use zombie machines (that don't send this), but worth checking at least.<p>Most individual spammers do at least one thing that makes it easy to identify them. Maybe they submit forms 10x faster than any human? Maybe no referer? A unique user agent?
mootothemaxabout 14 years ago
I wrote a script that runs every 15 minutes and checks the IPs of new users against Stop Forum Spam's API here:<p><a href="http://www.stopforumspam.com/apis" rel="nofollow">http://www.stopforumspam.com/apis</a><p>It's caught the significant majority of spammers, giving me some time to write other spam protection checks.
ddemchukabout 14 years ago
you can probably sign up for and integrate with Akismet's API and that can help quite a bit.
评论 #2502552 未加载