Kzqai
Kzqai

Reputation: 23062

Simple techniques for preventing spamming of a web chat application

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:

Other ideas that I have:

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

Upvotes: 2

Views: 2651

Answers (1)

six8
six8

Reputation: 2990

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.

Upvotes: 6

Related Questions