antirez / lamernews

Lamer News -- an HN style social news site written in Ruby/Sinatra/Redis/JQuery
http://lamernews.com
Other
1.36k stars 199 forks source link

Dealing with spammers #117

Open jellomaster opened 12 years ago

jellomaster commented 12 years ago

Would be cool to have:

lmatteis commented 12 years ago

Someone could easily spoof this by logging in through a proxy server and upvote/downvote from there.

The best way to deal with spammers for me is to let the community "flag" posts that people may think is spam.

sidkris77 commented 6 years ago

Any thoughts on a user flagging a news item as Spam? I did a quick POC and the screenshots are attached. I wish EchoJS had this feature as this would help users identify a news item as spam on the main news list page avoiding a clickbait. For now have attached the Karma for Spam to the NewsDownVoteKarma.

screenshot from 2018-04-05 23-31-40

screenshot from 2018-04-05 23-33-15

screenshot from 2018-04-05 23-38-20

screenshot from 2018-04-06 00-06-06

bruchmann commented 6 years ago

Hey all, one of the community moderators of Echo JS here.

@sidkris77 asked:

Any thoughts on a user flagging a news item as Spam?

I've had an rough idea about implementing a report spam-feature for that doesn't require any modification to lamernews for quite a while now, but couldn't act on it yet due to not having much spare time.

The way it would work involves using a microservice (like webtask.io, now.sh, etc.) to listen for incoming (authorized) requests that have the offending URL as a query parameter and notify moderators via their preferred method (email, slack, etc.). Sending the requests would be handled via a bookmarklet, executed on the discussions-page (e.g. https://example.com/news/12345).

It is definitely not the most optimal let alone a feasible solution, especially for mobile users.

peterc commented 6 years ago

You could also consider looking up IP addresses against lists of known "troublesome" IPs and in DNSBLs. This is what we've started to do as we've got lots of bot/junk email submissions on our newsletter signup pages. It's a way to get rid of automated junk, rather than a human trying to spam, however.

I haven't got a lot of time to go into all the details, but to provide some pointers:

Even if you didn't want to block people using misused VPNs, Tor and the like, due to a sense of not wanting to censor people, you could at least use the information to throttle them or show them a CAPTCHA, etc. I just outright block them because I'm dealing with email where zero tolerance is the best policy.

sidkris77 commented 6 years ago

I was just about to suggest Captcha when I read the last part of your message.

moooji commented 6 years ago

How about requiring sign in (via Github / Google / Twitter) to post? Given the nature of the website, I would assume that most people who want to post relevant news have a Github account for example. On top of that limits could be enforced like max number of posts per day etc.

I can recommend Firebase for auth a lot, but also Auth0 seems to be very convenient.

peterc commented 6 years ago

In running http://www.rubyflow.com/ I can confirm a lot of spammers now have GitHub accounts and will happily run automated spamming campaigns through them. However, GitHub does remain a great way to authenticate users IMHO.

selfrefactor commented 6 years ago

Then what about if there is minimal limit of total Github stars? On paper that seems like a good option.

sidkris77 commented 6 years ago

I don't think GitHub stars would be the right way. Think the system has to deal with it intelligently rather than be restrictive.

sillyslux commented 5 years ago

how about a new feature "mute(disable) user" from admin panel and adding some captcha for new registrations?