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: Favorite methods to block spam in your apps?

2 pointsby 3riverdevabout 11 years ago
Lately, http:&#x2F;&#x2F;www.theprobono.org&#x2F; has been absolutely slammed with spam project postings. They tend to consist of random characters for the username, random real-world locations, and typical spammy descriptions.<p>I just pushed a sanity check for the time between when the form is displayed and submitted, ensuring a reasonable amount for a human to fill it out. Beyond CAPTCHA and honeypots, any other ideas?<p>I&#x27;ve also been looking for a possible 3rd party service that could look at the project description and give a &quot;likelihood of spam&quot;. Any thoughts?<p>Thanks!

2 comments

stevekempabout 11 years ago
What format is the project-description in? Is it a paragraph, or more, of random HTML? If so you might enjoy the blogspam API:<p><a href="http://blogspam.net/" rel="nofollow">http:&#x2F;&#x2F;blogspam.net&#x2F;</a><p>It is used to blog forum&#x2F;blog comments, but people have used it for protecting wikis from spam. (Disclaimer it is my pet-project.)
评论 #7586991 未加载
NameNickHNabout 11 years ago
I used a time based token for all my forms. The token becomes invalid after an hour or so. Enough time for legitimate users to post their stuff but completely blocks automatic spam.