Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
2k views

PHP: Anti-Flood/Spam system

I'm actually working on a PHP project that will feature a user system (Login,Register,Send lost password to email,..) and I think that this may be very vulnerable to Brute-Force attacks and/or Spam ...
5
votes
1answer
390 views

rails - Choosing captcha plugin

There are a lot of captchas plugins in Rails and also many types of solutions for preventing spamming and flooding. So it isn't only Rails question. Let's see what types of plugins do we have: 1. ...
3
votes
2answers
167 views

How to avoid flooding in my very simple web application and make it scalable?

I'm trying to develop a very simple Java web application using JSP and Servlets. 1) There is a textbox and a submit button on the page, 2) The user enters his name, say John, to the textbox and ...
2
votes
3answers
147 views

Flood filling C++

I have a problem with implementation of flood filling. The task is to ask user to click on the white part of the image (indicating seed point), he want to fill with black. The operation should be done ...
1
vote
2answers
102 views

How can I limit the number of times an element is clicked within a minute?

I am making a PM system, and I am currently adding the message starring system (so the user can star messages). The problem is that if the user keeps starring and unstarring a message very fast ...
1
vote
1answer
106 views

Preventing flooding/DOS attacks in Java/AMF app

I'm working on the Java backend for a Flash webgame - the client and server communicate using Action Message Format (AMF). A few weeks ago, another team in our company had their product hacked by a ...
1
vote
2answers
223 views

Java Login Server Flood Protection

my java server is currently being DDoSed by thousands of different ip's. To counter it, i've been blocking the ip's through the dedicated servers firewall. However just more and more keep coming. This ...
1
vote
2answers
131 views

Flooding vs Javascript

I use to make an interface to send message to my website by using only HTML (without any kind of human verification). Annoying to get every days many fake message by bots that spam or flood my ...
1
vote
1answer
836 views

what does “possible SYN flooding on port 8009. Sending cookies” mean in /var/log/messages?

I have a web application setup apache+mod_jk+tomcat(connector for mod_jk on 8009 port). Recently my app started to hang few times a day and in /var/logs/messages there are entries like "possible SYN ...
1
vote
3answers
59 views

Find areas in matrix..?

lets say I have a very big matrix with 10000x10000 elements all having the value '0'. Lets say there are some big 'nests' of '1's. Those areas might even be connected, but very weekly connected by a ...
1
vote
3answers
264 views

Using a randomly generated token for flood control

Basic setup of my site is: user enters a message on the homepage, hits enter and the message is sent though a AJAX request to a file called like.php where it echo's a link that gets sent back to the ...
0
votes
0answers
42 views

ARP flooding effect on Linux system..?

Hello Developers and Linux geeks, I want to know what is the ideal behavior of the Linux system in ARP flooding? I am using an embedded device and want to test the ARP flooding and its affect. But, I ...
0
votes
0answers
57 views

Flood mitigation in ASP.NET application

I have a form on a web site that submits data using jQuery ajax in a JSON format to a sendmail.aspx page, that in an async manner sends an e-mail to corporate mailbox. I don't want to use captcha. ...
0
votes
1answer
110 views

php Blocking flooding request by session or IP

I want to block flooding requests by session or IP. This is my requirement. If any user send 1000 requests within 1 hour, I want to block that request. I don't know it's done by session or IP. ...
0
votes
0answers
57 views

How web-servers deal with SPAM ( flood ) attacks? [closed]

I want to know how Shared webhosting or other types of it deal with SPAM issues Ex : Stop serving the website for a period of time , and how much is it ? ..
0
votes
2answers
145 views

How to protect against Flooding

I have made my IRC bot and I've run into the problem of flooding. I'm trying to figure out a way to space out the messages so if 10 people all execute a command at the same time it doesn't excess ...
0
votes
2answers
276 views

PHP: avoid Flood/Spam system by session?

can I use Session avoid Flood/Spam ? ( spam in form ). I only need avoid use can repeat action as 3,4 action /s .
0
votes
1answer
116 views

Anti flood : session or db stocking ips

right now I'm using an antiflood function in all my websites : function flood($name,$time) { $name = 'tmptmptmp'.$name; if(!isset($_SESSION[$name])) { $_SESSION[$name] = time(); return true; ...
0
votes
1answer
196 views

select() on socket (trouble)

Recently I have done this part of code: http://dumpz.org/14945/ It does work, but select() works bad. When it has got last reply from server, it begins repeating last reply string with some strange ...
0
votes
1answer
63 views

How to fight flooding for a website?

I know,time restriction implementation as adopted on stackoverflow.com is a way to fight flooding. But sometimes I really want to input another message soon after I input a previous one and I want to ...
0
votes
3answers
431 views

Newsletter slow sending - delay between 2 mails to the same server / max e-mails per hour?

I have to make a newsletter sending utility application which will collect the list of subscriber from our central database and send out the newsletter. I've considered the possibility to be ...