PDA

View Full Version : Denial of Service



sgoodman
2012-06-10, 09:27 PM
Greetings,

Does a Distributed Denial of Service (http://myhosting.com/statusblog/2012/06/10/update-linweb07-shared-hosting-server/) (DDoS) attack individual websites, or the server itself?

Thanks,
Shane.

suwunk
2012-06-10, 11:51 PM
DDoS attack usually target site by flooding the server with packets, During a DDOS attack your website may become unreachable since the server is being flooded with bogus requests and cannot process the valid ones.

sgoodman
2012-06-11, 02:54 AM
Are the packets sent to individual web sites, or to the server itself?

Shane.

suwunk
2012-06-11, 07:50 AM
Network-layer attacks such as UDP, ICMP, and SYN floods pose challenges to server, Apache servers are most favorite target. There are others methods that directly target website such as Application-layer DDoS and exploit on SSL to create a denial of service.

tima
2012-06-11, 11:00 AM
Usually the DDoS is targeted against a single site, but often there may be "collateral damage", so to speak.

sgoodman
2012-06-11, 07:08 PM
Usually the DDoS is targeted against a single site

Is there anything I can do to protect my site?

Thanks,
Shane.

tima
2012-06-12, 09:09 AM
Without making broad generalizations, try not to get involved with the kind of people who would retaliate with a DDoS. :)

Also because of the distributed nature of the DoS, it's often very difficult, if not impossible, to nail the offender.

peleus
2012-06-17, 01:49 PM
Are you using a VPS or a dedicated server? DOS typically sends tons/thousands of request to you server/linux box to authenticate of course server will reject this since the attacker does have the credentials. The attack continuously do this until you can't login yourself anymore.

It is recommended to have at least one backdoor access like a local interface perhaps so you can still login once this attack happens and then block that IP at IP tables. may include the entire subnet just to be sure. https://imagicon.info/cat/15-33/smile.png

sgoodman
2012-06-17, 07:52 PM
I have both VPS and shared hosting.

Shane.