1
vote
3answers
55 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 …
1
vote
2answers
31 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 ( …
1
vote
0answers
71 views
Has anyone got billed for malicious activities (DDoS) on a cloud server? [closed]
I would like to know if anyone got billed beyond expectation on a cloud service because of malicious activities (DDoS, etc)? How does EC2 and/or Rackspace Cloud handle these issues …
1
vote
0answers
58 views
How to protect Lighttpd from DOS attacs and flood? [closed]
I have a problem with Lighttpd because someone started to use some Web downloader from very good connection and it blocked my whole website. Is there any way to protect Lighttpd fr …
0
votes
3answers
587 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 suc …
0
votes
2answers
36 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 effe …
2
votes
1answer
1k views
Apache rate limiting options
What techniques and/or modules are available to implement robust rate limiting (requests|bytes/ip/unit time) in apache?
1
vote
0answers
118 views
Blocking IP addresses Load Balanced Cluster
Hi
We're using HAproxy as a front end load balancer / proxy and are looking for solutions to block random IP addresses from jamming the cluster.
Is anyone familiar with a conf f …
0
votes
0answers
76 views
HttpModules and DOS attacks?
In the comments for this question, someone stated that use of HttpModules opens yourself up to DOS attacks. I would like to understand the reasoning behind this statement. I've f …
3
votes
4answers
1k 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);
StreamRead …
0
votes
5answers
340 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 …
