Reputation: 57268
I am currently working on a system that's based around the concept of Digg where you have a button on an external site and a user who clicks that button gets to post / digg it.
Anyway, I'm looking for some information on the types of spam that I should expect as time goes on.
So far I have thought about a fair few factors, such as flag system, X rates by different users before frontage, Domain Monitoring, and some others.
Any ideas on what money-hungry site owners would attempt?
Upvotes: 0
Views: 171
Reputation: 17555
Instead of telling you what you should watch out for, here's a more proactive approach: take a look at Akismet, CAPTCHA, DNSBL checks, and bandwidth throttling. All these can be done in PHP. This way you can start real-coding and not vapor-coding.
Upvotes: 1
Reputation: 212
I expect creating a system like digg's, you will be prone to problems like:
Plus the more common problems - mass account creations, mass automated submissions, spam being added. These are combatted using the systems you have mentioned, plus a bayesian spam filter.
Upvotes: 1