Questions tagged [flooding]

Flooding is a type of Denial of Service(DoS) network attack, which consists of the generation of numerous TCP requests intended to overwhelm a web server and result in slowdown or downtime.

71 questions
0
votes
3 answers

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 blacklisted due to flooding if I just flush out all emails…
zappan
  • 3,668
  • 4
  • 29
  • 24
0
votes
2 answers

Earliest opportunity to catch a page view

I have a function I wish to be called on every page view, at the earliest possible opportunity. The code gets the users IP address, an increments a counter by 1 in a database. This code is a basic flood limiter. If more than x requests are made in…
Tom Gullen
  • 61,249
  • 84
  • 283
  • 456
0
votes
1 answer

select() on socket (trouble)

Recently I have done this part of code. It does work, but select() works bad. When it has got last reply from server, it begins repeating last reply string with some strange characters in the beginning of reply string. So look at…
mroztn
  • 95
  • 3
0
votes
1 answer

Command Flood Protection mIRC

I have the following auto-responder on my bot on *:TEXT:*sparky*:*: { msg # $read(scripts/name-responses.txt) } on *:ACTION:*sparky*:*: { msg # $read(scripts/name-responses.txt) } I wanted to know how can I tell write a code, I'm guessing with an…
Luis M
  • 104
  • 1
  • 11
0
votes
1 answer

php flood protection improvement script

I have found this script Quick and easy flood protection? and I have turned it into a function. Works great for the most part. From time to time I see an error: [function.unlink]: No such file or directory in…
0
votes
1 answer

MIRC anti-flood script

I'm looking for a way to kick users for flood. The idea is: on [lessthanhalfop]:text:*:#chan: { If [timer$nick] !== 0 { set %kickstate$nick +1 if %kickstate$nick < 4 { kick $nick #chan [reason:flood] echo > kickedlist.txt …
Tom
  • 1
  • 1
0
votes
2 answers

Denial of service (DoS) Application in Visual Studio 2010

Its a lengthy question and Its might be amature, sorry I'm new at programming; I want to design a console based application for testing with a Denial of service (DOS) attack. Suppose ping example.com -t -l 65000 is the only thing that needs to be…
Raj
  • 1
  • 1
  • 3
0
votes
1 answer

Protect from query flooding on simple php db search script

I've never implemented something like this before but I'm in need of a simple way of modifying my searchdb.php file. My site is already live and I'm in need of a quick fix (minimal changes, preferably to one file (newbie developer…
meiryo
  • 11,157
  • 14
  • 47
  • 52
0
votes
1 answer

PHP - Methodology to prevent spam flooding and also excessive bandwidth

HiI am at prototype stage. For the scenario below, I want to share my plan with you and I am asking your opinions if my plan makes sense or is there any better way to achieve my requirement that you may recommend. thanks, regardsSCENARIOA spam bot…
Andre Chenier
  • 1,166
  • 2
  • 18
  • 37
-1
votes
1 answer

how to limit notification(notify)

I want to show just a one-time error message. But not other classnames ex (classname success message show itself every time but error message just one time shows). When I triggered error message last error message must close and open new error…
Er.Er
  • 135
  • 2
  • 14
-2
votes
2 answers

Golang http server app have many Socket (CLOSE_WAIT)

App can works few days. But in some moment, app has many socket with CLOSE_WAIT state, and cannot receive new client. Maybe it is some kind of flooding(Example: Sync-flood)? netstat -ant | grep CLOSE_WAIT | wc 3258 19548 260640 3258 - socket in…
S. Denis
  • 149
  • 3
  • 11
1 2 3 4
5