Tagged Questions

"A distributed denial of service attack (DDoS) occurs when multiple systems flood the bandwidth or resources of a targeted system, usually one or more web servers."

learn more… | top users | synonyms

6
votes
1answer
5k views

Apache rate limiting options

What techniques and/or modules are available to implement robust rate limiting (requests|bytes/ip/unit time) in apache?
5
votes
4answers
430 views

How to simulate DDOS/Slashdotting?

So, I'd like to get more experience working with high-traffic websites, but unfortunately the Internet is not beating down the doors to my blog. How can I simulate tens/hundreds of hits per second on ...
3
votes
1answer
288 views

Does Heroku protect individual sites from DoS / DDoS attacks?

Heroku is, it seems, under a DDoS attack right now, which is causing intermittent availability issues across the site manifesting themselves on (of course!) my app. I have seen a number of these ...
3
votes
3answers
1k views

Brute-force/DoS prevention in PHP

I am trying to write a script to prevent brute-force login attempts in a website I'm building. The logic goes something like this: User sends login information. Check if username and password is ...
2
votes
1answer
50 views

Using random name fields for input to fight spambots

I'm considering using random input names for registration form. It would be done this way: User requests register form site. Create random names for input fields and save them to user's session. ...
2
votes
1answer
83 views

How do you prevent a denial of service from exhausting a thread pool on a socket server in Java?

For work I have written a specialized HTTP server which only performs 301/302/Frame redirections for web sites. Recently, some nefarious clients have been intentionally opening sockets and writing one ...
2
votes
6answers
118 views

Prevent AJAX flooding in Javascript

My site has a Javascript method that makes an AJAX request to add an item to cart without reloading the page and making a simple notification. AddToCart() However, using any Javascript console, I ...
2
votes
1answer
111 views

Possible DDoS attack? [closed]

I am getting hundreds of lines of the same request in my access logs as of July 4th. This one came up thousands of times in the hours around this date: 86.128.198.216 - - [22/Jul/2011:00:44:16 ...
2
votes
2answers
288 views

Linux TCP server: reading client's IP address before accepting connection

Related: C++ Winsock API how to get connecting client IP before accepting the connection? Hi, when you are running a TCP server (written in C, using the Berkeley Socket API) is it possible to ...
2
votes
5answers
198 views

DDOS attack: defending with Thread.Sleep()?

If I introduce a Thread.Sleep(x) delay while rendering my HTTP response, where x would change depending on the rate of requests from a given IP: from being zero while request rate is low, and ...
2
votes
1answer
88 views

Would Google or Facebook ever be at risk of suffering a DDoS attack?

How strong is Google? I am curious, how much defense do they have? Also, do ISPs give users tiny upload capacity because they worry about DDoSes?
2
votes
2answers
371 views

Java input stream limit: protecting against DoS attacks

I'm coding a tool, that, given any URL, would periodically fetch its output. The problem is that an output could be not a simple and lightweight HTML page (expected in most cases), but some heavy data ...
2
votes
0answers
108 views

What is the strong way of ddosing? [closed]

Can you give me some information about the strongest way of ddos attack ? Is botnet the strongest way of ddosing ? Thanks in advace
2
votes
2answers
311 views

Testing of Web Security

In your experience, what have you found, worked on, or encountered in terms of site vulnerabilities? And what actions did you take to mitigate these issues? This may include XSS (cross site ...
2
votes
4answers
4k views

How to limit the number of characters read by StreamReader.ReadLine() in .NET?

I am writing a web server application in C# and using StreamReader class to read from an underlying NetworkStream: NetworkStream ns = new NetworkStream(clientSocket); StreamReader sr = new ...
1
vote
1answer
42 views

Java code to check HTTP headers for incoming request

I want to detect if there is any kind of vulnerable data present in the incoming request and only if the request headers looks okay it will taken by the server else it wil be deny by the server. Also ...
1
vote
0answers
75 views

How do I fix the DoS String#hash vulnerability for ruby-enterprise-1.8.7-2009.10?

The problem is described here. There have been patches for 1.8, JRuby and later version of ree, but I can't find anything for this version. I tried applying this patch. But compiling fails with an ...
1
vote
2answers
48 views

Google Analytics vs ddos

What i'm wondering is, what kind of behaviour does google analytics show when a ddos attack occurs? Any theories?
1
vote
1answer
66 views

Remote File Inclusion via Another Server?

My server (mediaquarter.at) is currently being DDoSed by requests like this (with some minor variations): ...
1
vote
0answers
70 views

Using mod_evasive on a specific directory

I'm trying to limit requests to an API on an internal site I've managed to implement mod_evasive to successfully block requests after a specific amount in a specific time. But this is causing ...
1
vote
1answer
105 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
3answers
191 views

What's an easy way to do a DDoS experiment without breaking any big rules?

I thought of buying my own website www.zzzwew.com and doing a DDoS on it, but it looks like that won't work... So if I get a goDaddy page and try to DDoS it that would hurt GoDaddy's general service? ...
1
vote
1answer
296 views

Rails and ip-spoofing

I have small application on Rails 2.3.2, served with nginx+thin(127). OS FreeBSD 7.1, DB - Posgresql. Twise at this week my app has fall. In log I get something like (~2-50 request per second): /!\ ...
1
vote
1answer
257 views

Implementing site access rate limiting in PHP

I am developing a fairly simple site on a LAMP framework + Codeigniter and want to implement a user access rate limit feature to prevent the site being flooded with requests from a single user. The ...
1
vote
1answer
60 views

Using java applets from outside the Server's html page

we have a java server-client application with an applet in the client side. our applet seems to be used by attackers for bots and other attacks... we suspect that they modified it and used it. ...
1
vote
8answers
2k views

Looking for DOS/DDOS protection tools and strategies

I am working on a java application that exposes webservices for a flash client. Any idea on how to prevent DOS/DDOS attacks ? I cannot use mechanism unfriendly for the end user such as captcha. So far ...
0
votes
1answer
32 views

Incapsula Service

I am looking for additional information about a cloud-based service called Incapsula. As I could understand from their website, they provide a service that protects and accelerates websites. I also ...
0
votes
0answers
35 views

How I can make a DDOS check servlet filter

Well i am working in this field for the first time and as the header says everything , it would be very good if somebody who has created similar things before could help me or either show me a way. ...
0
votes
1answer
28 views

DDos deflate bug bans white-listed IP's

Hi guys I run a busy CentOS webserver (nginx/php-fpm) an to protect it to certain attacks I used http://deflate.medialayer.com/ for a while. I had setup a white-list with 127.0.0.1, my external ...
0
votes
1answer
22 views

Safe connection limits for DDOS Deflate?

I work for a site that often get's attacked by bot networks. We have started to use this tool: http://deflate.medialayer.com/ which auto-bans ip's that have more open connections than the set value. ...
0
votes
0answers
40 views

Very often database PostgreSQL for my webapp fails [migrated]

I have web application like Nginx (proxy) + Tomcat (backend) + PostgreSQL (database). This web application is located on amazon free tier instance (http://aws.amazon.com/free/) and very often from ...
0
votes
0answers
22 views

What does the HTTP header Pragma: Number(0-100000) mean in Apache?

HTTPDoSTool3.6 's source code(http://code.google.com/p/owasp-dos-http-post/) will send the special HTTP request, which only contains a "Pragma" HTTP header, after sending a slow header. According to ...
0
votes
0answers
27 views

www.domain.tld on port 8080 without :8080 in url (Lighttpd) ? due to DRDoS [closed]

My server is getting DRDoSed using an exploit on port 80. I wonder if it is possible to change port used by webserver, Lighttpd in my case, to something different, 8080 probably. I want to avoid using ...
0
votes
0answers
134 views

IIS 7 dynamic IP restrictions and custom 403

To handle a possible DOS attack on my website i've decided to use Dynamic IP restrictions on IIS 7. It works great, but I want to customize the 403 error page. I tried to use .NET error pages in IIS ...
0
votes
0answers
116 views

How to recognize DoS/DDoS (Denial of Service) server attack? [closed]

We have ASP.NET MVC website which was attacked today (infinite automatic posts to one form)... When we enabled IIS7 logging we have found out attacker's IP address and we blocked it. What we would ...
0
votes
0answers
171 views

Is there a way to fight back DDOS attacks with IIS on kernel level?

I am developing a system, a main key of which should be security. So i have to consider the weakest places, where it might be broken. Probably, the first ones are brut force and DDOS attacks. I've ...
0
votes
3answers
310 views

How to close urllib2 connection?

I have made a program using urllib2 that makes a lot of connections across the web. I noticed that eventually that this can be DDoS worthy; I would like to know how to close down each connection after ...
0
votes
1answer
158 views

DNS Server Spoofed Request Amplification DDoS Mitigation for Server 2008 R2

We are undergoing PCI Compliance checks and our external nameservers (all Windows Server 2008 R2) have been hit by Nessus Plugin ID: 35450 (verbage below). Although this is a low severity hit, I see ...
0
votes
3answers
65 views

how can i improve this script firewall?

recently one of my server is getting targetting by a number of dos attack (thousands requests/min) by some chinese IP (these ip aren't always the same). So at the start of my framework I made a ...
0
votes
1answer
366 views

DDOS attack through iframe

I run a website which shows related articles widget that people can add on their websites. Currently what my system does when a link is clicked in that widget it redirects to a link on my website ...
0
votes
1answer
256 views

Flood protection for Jetty server?

I'm looking for a solution to prevent a Jetty server to be taken down by a DDoS or similar. Currently the servlets will open a new thread for each incomming connections, so 1 mio incomming connections ...
0
votes
2answers
240 views

What is DDOS attack? [closed]

I have been told my hosting server that my website has had a "DDOS attack" what is it and I how do I prevent it.
0
votes
2answers
226 views

DDOS Proxy Provider

I would like to know if anyone has experience with good DDOS Proxy Providers, where it is posible to switch only the NS of the domain and to prevent the attack. Please post any provider, that you have ...
0
votes
1answer
77 views

Is it possible to distinguish from “good” http requests and DoS attacks?

How could I know that a lot of requests in a short period of time come from a DoS attack and not from normal browser requests?
0
votes
2answers
68 views

Which steps could you take to minimize the effect of a potential (D)DoS attack in IIS?

With a single-server setup for simplicity, which steps could you do to minimize the attacks of a (D)DoS attack? And is it really worth it taking these steps, considering their effectivity and impact ...
0
votes
5answers
410 views

SQL Server NOLOCK on queries run for authorization

During the course of our application login there are several queries ran, all around validating the login. In evaluating them I noticed that one of the queries is run without the NOLOCK hint. There ...
-3
votes
1answer
69 views

DDOS Attack.. How to protect server [closed]

One of website has tremendous traffic with following logs. 220.84.197.175 - - [10/Nov/2011:19:10:32 +0900] "GET /D1103.jpg HTTP/1.1" 404 249 "-" "Mozilla/4.0 (Compatible; MSIE 6.0;)" ...