"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

0
votes
0answers
13 views

Better configuring my firewall for Minecraft [migrated]

not so long ago I purchased a new server, and I'm planning on running minecraft servers under it. Now I'm trying to better configure my firewall to stop ddos attacks against my server while running ...
0
votes
1answer
19 views

Use of .htaccess to mitigate denial of service attacks

I have an application that requires logon. It is only possible to access the site via a single logon page. I am concerned about DDOS and have (thanks to friends here) been able to write a script ...
-1
votes
0answers
7 views

Firewall - Ban IP with many bandwith [closed]

Is there any free firewall, blocking an IP if it hits more than the limit bandwith?
1
vote
2answers
114 views

Java program for DDos attack [closed]

I am trying to create a program for DDos attack in java. So far I have this: public class Attacker { public static void main(String... args) throws Exception { for (int i = 0; i < ...
0
votes
0answers
16 views

Can you block an ip with multiple connections? (Apache ddos attack) [migrated]

My server is under a Apache ddos attack right now. There's a ton of single ip addresses with 30+ connections. When I use this SSH command: netstat -n | grep ':80' | awk -F' ' '{print $5}' | awk ...
0
votes
0answers
61 views

How can I solve the Qualys Apache Partial HTTP Request Denial of Service Vulnerability

I use Qualys to scan the vulnerability of my web. There is a vulnerability that I cannot fix. Following is the information: Apache Partial HTTP Request Denial of Service Vulnerability - Zero Day ...
1
vote
1answer
65 views

10 request/minute for brute force attack and ddos?

If I save the time of first logging attempt and if the 10th attempt is made in less than 1 minute and I ban the IP address would that be enough to stop brute force attack and ddos? In real life ...
-1
votes
0answers
23 views

can FPGA stop DDOS? [closed]

FPGA can be much faster than computers in computation. I want to know can a device such as FPGA before our server computer protect it from DDOS by processing packets and dropping the attacking ...
1
vote
0answers
13 views

Feature Extraction for DDoS Detection

I tried to extract some features defined below as an input vector for a DDoS detection algorithm using NSL-KDD dataset. Features #2 and #4 are explicit KDD features. But one like the first feature ...
0
votes
0answers
16 views

Long-held http requests

From what I understand if a visitor calls a script test1.php and it can take anywhere from 5-55 seconds to complete (long polling) it will keep running even if the visitor has already left. Could one ...
-1
votes
0answers
34 views

Preventing DDOS attacks in Play Framework 2.0 [closed]

I'd like to protect my Play application from DDOS attacks. How to do that? I guess I should configure it in the application.conf file, but don't know exactly what to do. Thanks.
-2
votes
0answers
44 views

Perform DoS/DDoS attack [closed]

I study web attacks and methods of defence. I have web application on Apache server writen in PHP/Symfony 2. I need to perform some DoS/DDoS attack see what will be happening with application and how ...
0
votes
1answer
23 views

CloudBees and DoS Protection/Blacklisting

Does CloudBees offer anything in the way of DoS protection or IP blacklisting? I'm wondering what the recommended practices are for protecting CloudBees apps from these kinds of attacks, and don't see ...
0
votes
1answer
22 views

Number of packets ordered by IP [closed]

My server is currently under a small DOS attack. I would like to know if there is an easy way to get the list of IPs sending packets to my server, ordered by the number of packet they sent, on a ...
0
votes
1answer
147 views

Java - Simulate Slowloris HTTP DoS attack

I need to write java code test that will simulate Slowloris HTTP DoS attack on my web server. I've found a perl code that does that: http://ha.ckers.org/slowloris/ My environment is not constant, ...
-2
votes
1answer
216 views

ICMP time exceeded in-transit [closed]

In the last few days my server suffers an attack of this kind: (bandwith > 60MBit/s, XXX.XXX.XXX.XXX are multiple IPs) tcpdump -n proto ICMP 17:15:19.267464 IP XXX.XXX.XXX.XXX > my_ip: ...
0
votes
1answer
105 views

Notice: Undefined variable: argc in C:\xampp\htdocs\XerXes.php on line 73 Notice: Undefined variable: argv in C:\xampp\htdocs\XerXes.php on line 73

I have recently gotten into DOS attack scripts (How to use them and how to defend from them) and picked up this one called XerXes. I noticed that this has been coded in two different languages .c and ...
-3
votes
1answer
59 views

Could the internet have been designed to prevent DDOS attacks completely? [closed]

DDOS attacks seem to be one of the worst types of security attacks with no obvious long-term solution. I was just wondering if this is a flaw with the design of the internet or whether it's just an ...
2
votes
2answers
159 views

DDOS Attack in ASP.NET with State Server Session

Cant find this issue anywhere... Using ASP.NET 3.5, I have 3 web servers, in a web farm, using ASP.NET State Server (on a different Server). All pages Uses session (they read and do update the ...
0
votes
0answers
27 views

Rails - detecting if a Facebook Page post exists yet

Sometimes calling Facebook with opengraph to retrieving some post info, return an empty url field. Then, I construct myself the url in the form: http://www.facebook.com/{fb_page_id}/posts/{post_id} ...
0
votes
0answers
181 views

Block incoming DNS queries using netsh advfirewall [closed]

How do you do this with Windows firewall? iptables -I INPUT --in-interface ! lo -p udp --dport 53 -j DROP Ideally, if you can do this with netsh and before there is anything listening on port ...
0
votes
2answers
252 views

How to prevent DDoS Attack from HTTP server written in Go?

I'm developing an HTTP server in Go, but it doesn't seem to be able to prevent DDoS attacks. Do I need to implement a firewall for my server? There's also another solution: I could use Nginx as proxy ...
0
votes
0answers
113 views

how to white list IP's on heroku

Is there a way to prevent my application from receiving requests unless from a specific set of IP addresses on heroku? I know I can do this on the application side, but I'd prefer to never see the ...
1
vote
0answers
196 views

Array VPS PHP booter API in progress

I'm writing a booter API using an array of VPS's. Below is a preview of my code. It's all pretty straight forward as you see I'm using ssh2 to send remote console commands to the VPS's. My issue is ...
1
vote
1answer
194 views

Regarding TCP SYN flood: Why is half-open connections worse than established connections?

I asked this at /r/hacking at reddit and got no repsonse. To clarify: THIS IS NOT ASKED FOR HACKING PURPOSES. I am studying computer science and I am just curious. So.. When the host A sends a TCP ...
0
votes
0answers
30 views

How to make Main server and proxy servers in NS-2?

Is there any module for implementing main server and proxy server in NS-2? Please help ! I am simulating a virtual network where the main server in under attack. So i need to redirect the traffic to ...
0
votes
3answers
64 views

Magento - prevent from browsing without rewrite

I have a problem with someone (using many IP addresses) browsing all over my shop using: example.com/catalog/category/view/id/$i I have URL rewrite turned on, so the usual human browsing looks ...
0
votes
0answers
162 views

Can i use Windows Azure a DDOS shield?

I have a server that is in an unprotected facility without any kind of DDOS protection,my question is how can i use a windows azure service in order to protect my server from DDos attacks?
0
votes
2answers
349 views

Using .htaccess to prevent a DDOS attack not working with Permalinks

We have become the victim of a vicious DDOS attack on a WordPress site. Thankfully, they should be easily removed as they are GET requests with the string ?ptrxcz appended to the end of the URL. ...
0
votes
2answers
254 views

Using additional Re-Write Rules in WordPress .htaccess to Stop DDOS attacks

We have suddenly been the victim of what we are being told is a DDOS attack. We are trying to use some .htaccess rules to block the affending parameters, using the following, to show a 403 forbidden ...
0
votes
1answer
21 views

is there any Pyloris-like for Tornado?

My question seems to be dumb, but found this page and he mentioned some tools to make dDos attacks, i want to test my application how many concurent connections can handle, but this tools seems to be ...
0
votes
1answer
27 views

DDoS clear view [closed]

I have a doubt whether DDoS attack refers to network attack of a system (by sending maximum ip packets) or violating the query string by filling some javascript in input text boxes? what do DDoS ...
2
votes
1answer
94 views

How to block more than 100 dos attempt subnets in Google App Engine?

There were a lot of dos attempts to my GAE app which I couldn't reduce/combine them into less than 100 subnets to fit in the restriction. Is there a way I can block more than 100 subnets? If any ...
9
votes
3answers
690 views

Prevent Malicious Requests - DOS Attacks

I'm developing an asp.net MVC web application and the client has request that we try our best to make it as resilient as possible to Denial of Service attacks. They are worried that the site may ...
0
votes
3answers
791 views

DDOS attack and Amazon web services [closed]

A website is hosted in AMAZON WEB SERVICES. It uses Cloudfront, s3 and Route 53. If it will be attacked (DDOS or anything else) how likely is it to get down. My thoughts are that a average attacker ...
-3
votes
1answer
150 views

My Linux server is sending out attacks to other servers [closed]

I have a CentOS server, which I use for hosting a Minecraft server. Although my account got temporarily blocked from my provider for sending out attacks to other networks. I currently have access to ...
-1
votes
1answer
43 views

Denial Of Service attack in asynchronous communication [closed]

Is Low rate DOS attack (unintended) possible through asynchronous communication? Consider this scenario: I have a client server application were there is a WAN communication between the client and ...
0
votes
1answer
459 views

How to limit connections per second and IP on apache2?

Hi! I have been having recurrent problems on my apache2, some group of people is bombarding my server with HTTP petitions to all my forms, everything collapses and my service is interrupted. How can ...
14
votes
6answers
2k views

How to enable DDoS protection?

DDoS (Distributed Denial of Service Attacks) are generally blocked on a server level right? Is there a way to block it on a PHP level, or at least reduce it? If not, what is the fastest and most ...
2
votes
0answers
159 views

Restrict IP's by code in Asp.net MVC

My server is under attack a DDoS attack so I want to restrict IP's. I know how to detect DDoS in ASP.NET MVC (in ApplicationBeginRequest method), but is there also a way (in ASP.NET) to apply ...
2
votes
3answers
746 views

PHP, .htaccess, DDoS & speedy request protection

I have a question, i built this little script to check if a certain ip is flooding my website. When it does, i deny the ip in the .htaccess file. My question is, can somebody tell me if this script is ...
1
vote
1answer
147 views

Common web attacks [duplicate]

Possible Duplicate: Preparing an ASP.Net website for penetration testing How to test an already built-in website across user attacks? I have got a Process Management System developed in ...
-1
votes
1answer
120 views

DDOS protection from ISP side, UDP protocol, whitelist [closed]

Is it possible to ignore packets from ISP side which are incoming to my server? Is possible this kind of situation ? : I have white list of IP addresses. I continually update white list and sends it ...
1
vote
1answer
469 views

java socket and DoS

I wrote a little java program that establishes a socket connection (port 23456) over TCP between a server (pong.java) and a client (ping.java). I start the server and then the client which sends ping ...
4
votes
1answer
806 views

What happens if a DDOS attack hits Windows Azure Web Sites? [closed]

I am just thinking of moving a website from a VPS to Windows Azure Web Sites. After doing a load test, I accidentally took down my test website, using around 30MB over the daily bandwidth. This made ...
1
vote
1answer
244 views

php fopen() and fwrite() under heavy ddos attack

In normal condition , everything is ok, an I can write and create new files with fopen() and fwrite() but under "heavy" DDOS attacks , when file pointer is located at 0 , i cant write anything to ...
1
vote
1answer
235 views

CURL and DDOS Problems

I need get some data from remote http server.Im using Curl Classes for multirequests. My problem is Remote Server's Firewall. Im sending 1000 between 10000 GET and POST requests. And Server bans me ...
0
votes
1answer
153 views

jquery DDoS prevention

I'm using this example in my Codeigniter project and want to know how I can prevent people using code below for DDoS style attacks? Do I change code below or should I do something in my Codeigniter ...
1
vote
2answers
124 views

How to make a G-WAN servlet close its connection silently without sending any reply

How to have gwan send no reply to some requests, i.e. make a servlet closed silently without building and sending a reply? It is useful to reduce the out-going bandwidth from the server side. For ...
1
vote
1answer
2k views

Does AWS protect my site from DDoS attacking? [closed]

I heard that AWS protects customer from DDoS attacking but I can't find any document mention that. Could you give me any site which tells about this?

1 2 3