Tagged Questions
The denial-of-service tag has no wiki summary.
11
votes
1answer
421 views
How was the hash collision issue in ASP.NET fixed (MS11-100)? [closed]
As reported by Slashdot, MS issued an update to ASP.NET to fix the hash collision attack today. (Listed as "Collisions in HashTable May Cause DoS Vulnerability - CVE-2011-3414" on the linked Technet ...
7
votes
3answers
248 views
How to protect an OpenID consumer against abuse?
I am considering OpenID as a login method for my PHP application, but there is one thing that prevents me from continuing: how can I protect an OpenID consumer against abuse?
An example of abusing ...
7
votes
5answers
496 views
Which kind of webapps can realistically be affected by the floating bug?
There's an easy way to totally lock a lot of JVM:
class runhang {
public static void main(String[] args) {
System.out.println("Test:");
double d = Double.parseDouble("2.2250738585072012e-308");
...
7
votes
3answers
3k views
Best practices for detecting DOS (denial of service) attacks?
I am looking for best practices for detecting and preventing DOS in the service implementation (not external network monitoring). The service handles queries for user, group and attribute information. ...
5
votes
2answers
271 views
Best practices for preventing Denial of Service Attack in Django
What are the best practices in Django to detect and prevent DoS attacks... Are there any ready to use apps or middleware available which prevents website access and scan through bots?
5
votes
2answers
137 views
TripleDESCryptoServiceProvider - vulnerable to Denial of Service?
We have a legacy ASP.NET site which uses the encryption methods here:
http://www.codekeep.net/snippets/af1cd375-059a-4175-93d7-25eea2c5c660.aspx
When we call the following method, the page loads ...
5
votes
4answers
2k views
Protect yourself against Dos attacks
This might be something more suited for Serverfault, but many webdevelopers who come only here will probably benefit from possible answers to this question.
The question is: How do you effectively ...
4
votes
2answers
211 views
Does Windows Azure have anything readily available against denial of service attacks?
We're developing a web service hosted in Windows Azure. We expect that at some moments bad guys try to DDOS it. I Googled and didn't find anything new and definitive (this one is rather vague) about ...
4
votes
5answers
193 views
'Forgot Password' throttling
I have a 'forgot password' system set up that sends an email with a reset link to the user. M question is: How can I prevent abuse of this system? How can I make sure that people don't use this to ...
3
votes
2answers
599 views
smurf attack using C#
I am currently developing an application for my Networks Security project, which involves launching of smurf attack using C#. Smurf attack includes that u send a packet to any server (let's say ...
3
votes
1answer
135 views
Security question: excessive Drupal requests from a single user account
I've notice some strange behaviour on my Drupal site. I like to understand the data I'm looking at before I take action so that I don't waste time pursuing the wrong measures, but I'm lacking security ...
3
votes
5answers
1k views
How to Avoid DOS Attack using Berkeley Sockets in C++
I'm working my way through UNIX Network Programming Volume 1 by Richard Stevens and attempting to write a TCP Echo Client that uses the Telnet protocol. I'm still in the early stages and attempting ...
2
votes
2answers
195 views
HashDoS: how can worst case complexity of Hashtable be O(n^2)?
By now many of you must have heard about HashDoS. The researchers who found this, claim in their video that the worst case complexity of Hastable is O(n^2). How can this be?
2
votes
3answers
134 views
Decorating a HashMap adding randomness to prevent (D)DoS
EDIT by the way the point of the workaround here is to reuse all the existing HashMap (like the ConcurrentHashMap etc.) instead of re-inventing entirely the wheel. Languages using randomized hash ...
2
votes
1answer
112 views
Prevent XML DoS attack in ASP.NET webmethod
I have a following web method (ASP.NET, c# 4.0):
[WebMethod]
public XmlDocument NewQuote(string username, string password, XmlDocument xml)
{
// process request
}
I was wondering how to prevent ...
2
votes
2answers
119 views
Undetectable DoS attack with an invalid IP [closed]
in Security+ book, it has been told that DoS attack can be undetectable and an attacker can use an invalid IP address.
what did it mean by Invalid IP address? is it a zombie IP? how can we face with ...
2
votes
2answers
181 views
ASP.NET Web application prevent denial of service attacks
What tools or techniques can I use to protect my ASP.NET web application from Denial Of Service attacks
2
votes
2answers
58 views
Server friendly slowban. Possible?
How is it possible to implement a slowban that will not be a tool for DoS to our site?
The problem is that a deliberate delay in serving an http response will keep server resources busy (web server ...
2
votes
2answers
225 views
DOS protection in rails
It seems most people advice going with some sort of hardware solution in load balancers for DOS attacks. I notice if you try to do a curl on any major/semi-major website you get a 301.
For someone ...
2
votes
3answers
534 views
How to detect inbound HTTP requests sent anonymously via Tor?
I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the ...
2
votes
2answers
349 views
Servlet filters for abuse prevention? (DoS, spam, etc)
I'm looking for a servlet filter library that helps me secure our web service against unauthorized usage and DDoS.
We have "authorized clients" for our web service, so ideally the filter would help ...
2
votes
2answers
234 views
Stop users from locking up crashing Linux machine using simple C code
Is there a way to prevent users from locking up a linux machine with code something along the lines of:
#import <stdio.h>
int main (int argc, char** argv)
{
while (1)
fork();
}
...
1
vote
1answer
58 views
How do current IM clients protect against flooding attacks?
Let's use Jabber as an example: If I setup my own jabber server and let it flood a jabber user on another server by sending messages with varying sender addresses, how would that user usually be ...
1
vote
1answer
37 views
Acceptable rate of http requests
I want to add a feature to my applications which parses an HTML page and jumps out to each <a href="http:\\foo" > in turn.
Im gathering title,description and keywords off each page load and ...
1
vote
1answer
118 views
solr DoS protection
Our web app has recently become the target of some DDoSers. We use solr and they managed to generate 100% load by searching for "**" every few seconds. Can someone tell me why that query takes tens of ...
1
vote
1answer
280 views
WCF netTcpBinding MaxReceivedMessageSize and Custom UsernamePasswordValidation
I'm building a WCF Service that uses Custom Username/Password validation on netTcpBinding with message level security. I've been researching MaxReceivedMessageSize settings and I've got a query of a ...
1
vote
7answers
332 views
Permanent DOS Attacks - Anyone Knowledgeable?
So, I'm looking into Permanent DOS attacks for a class, and I'm having a hard time coming up with concrete examples. There's a lot of information about Phlashing (flashing firmware to either brick the ...
1
vote
1answer
131 views
mod_xsendfile alternatives for a shared hosting service without it
I'm trying to log download statistics for .pdfs and .zips (5-25MB) in a rails app that I'm currently developing and I just hit a brick wall; I found out our shared hosting provider doesn't support ...
1
vote
1answer
146 views
Most efficient way to terminate an ASPX web request
I am writing some application logic which can recognize malformed or malicious http post data requests made to an IIS 5 aspx page. What is the most efficient way to terminate a bad request?
At the ...
1
vote
5answers
360 views
What's the best way to detect web applications attacks?
What is the best way to survey and detect bad users behavior or attacks like deny of services or exploits on my web app ?
I know server's statistics (like Awstats) are very useful for that kind of ...
0
votes
1answer
13 views
Roundtripping DataContracts andDenial Of Service attacks
I am working on a datacontract as follows that uses IExtensiblesDataObject to make it forward compatible with version 02 of this contract, but am worried about possible 'accidental' denial of service ...
0
votes
0answers
27 views
Apache Stuck in Reading state
I am running Apache with mod_status module. I have noticed that a number of requests are getting stuck in reading state for more than 60secs sometimes. Here is an output of the server status
Srv PID ...
0
votes
1answer
48 views
WCF REST Service Denial of Service Defence
I have created a WCF REST Search Service, and now want to know how to implement Denial of Service Defence to limit the number of request.
0
votes
0answers
61 views
Spring WebFlows Large Session
I am working on an enterprise Java application that is using spring webflows and I have noticed that the session that this creates on the server to manage the flows is rather large, 60k+. I am ...
0
votes
0answers
71 views
DoS prevention/network monitoring [closed]
i am trying to make a syn flooding monitor(a firewall kind of that will check for syn floods). I am using C (on ubuntu) for that.
Do i need to use raw sockets, or normal ones will do??
If only raw ...
0
votes
1answer
197 views
Tomcat6, Lambda Probe, insane amount of sessions from “unknown”
I'm running an e-Commerce site which "crashes" regularily. Usually, I'm seeing an insane number of sessions open (600-900 on normal days, 5000-20000 on crashes). I would like to determine where these ...
0
votes
5answers
477 views
Protect against a DoS attack without a CAPTCHA
I'd love to know a good way to protect against DoS attacks on my email and contact forms.
I have a "Share with a Friend" function which opens up a form I've created, but I'd rather not put in a ...
0
votes
1answer
138 views
Does Grizzly Project take care of buffer overflow or denial of service attacks?
I have searched a lot, but still don't understand whether using Grizzly means that I am protected against those attacks or that I should do some more effort?
Currently, the only thing I do in my ...
0
votes
2answers
183 views
how to block the hackers ip adress (denial of service threads) in php
i want to block the ipadress of clients they send more request server from samp ip adress (hackers).
how i send mac code to particular ip adress and receiving the mac code from user and compare ...
0
votes
1answer
615 views
Blocking IP addresses, preventing DoS attacks
So this is more of a general question on the best practice of preventing DoS attacks, I'm just trying to get a grasp on how most people handle malicious requests from the same IP address which is the ...
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
1answer
995 views
C# MVC: What is a good way to prevent Denial Of Service (DOS) attacks on ASP.NET sites?
I'm looking for a good and inexpensive way to prevent denial of service attacks on my ASP.NET MVC site.
I've been thinking about a solution that intercepts the HttpHandler and then counts requests ...