开发者

Simple techniques for preventing spamming of a web chat application

开发者 https://www.devze.com 2023-04-05 06:31 出处:网络
I have a simple, custom rolled chat here: ( http://ninjawars.net - essentially: ajax chat, php backend, javascript listing of chat messages, logged-in user input only ) that suffers from being able to

I have a simple, custom rolled chat here: ( http://ninjawars.net - essentially: ajax chat, php backend, javascript listing of chat messages, logged-in user input only ) that suffers from being able to be spammed. What are some simple systems to prevent spamming of a chat?

One thing (lowest level of protection) that I have already implemented:

  • Ignore consecutive duplicate messages from the same user.

Other ideas that I have:

  • Add consecutive messages from the same user together, instead of creating a separate message line. (relatively simple to implement, decreases the effect of spam but doesn't prevent it)
  • Prevent continued messages after a certain number of consecutive messages from one user, for new users. (relatively simple to implement)
  • 开发者_如何学运维
  • Chat moderation by trusted users (complex to implement).

Are there any simple systems/algorithms to prevent chat message spamming that I should know about?


Put an increasing delay on how fast a user can reply. So after each message post store next_reply_time as a timestamp of NOW + 1 second. If they reply before the time has reached, ignore it and give a "Reply too fast" warning and set the next_reply_time to NOW + 2 seconds, and so on. This way if they stack up messages too fast, you'll ignore them for longer periods of time. This delay can of course be based on reputation.

0

精彩评论

暂无评论...
验证码 换一张
取 消