Is it possible to break only some of a web site services using DDoS?

For example, disabling only the search feature of a specific website.

I raise this question following a controversy in South Korea, where part of the election watchdog's web site was down during an election. The government claimed it's due to a DDoS attack but many people in Korea do not beleive that story.

Related news: http://thevotingnews.com/international/asia/korea/election-watchdog%E2%80%99s-website-attacked-by-ddos-korea-herald/

link|improve this question
2  
I don't think this question should have been closed. – Mascarpone Dec 5 '11 at 15:29
Agreed. Seems like it's right on topic for SF. The fact that it is receiving votes should be indicative of that. – Beaming Mel-Bin Dec 8 '11 at 10:51
feedback

closed as off topic by sam, SmallClanger, pauska, DJ Pon3, Ward Dec 5 '11 at 15:22

Questions on Server Fault are expected to generally relate to servers, networking, or desktop infrastructure, within the scope defined in the faq.

2 Answers

up vote 2 down vote accepted

When you do a DDoS (or DoS) attack the basic idea is to take down the resource by overloading it with requests. What effect the attack will have depends on the server(s) and the configuration.

In some case you will be able to take down the entire site by attacking the web servers, or some other critical resource (like database server). But some functions may be hosted on a separate server (like a search function), or even hosted by a separate company (like google, facebook, ...). If that external resource is attacked, only that function will be down while the rest of the site works normally.

link|improve this answer
feedback

I would think that if a.exampleserver.com's search utility was sending all queries to a database on b.exampleserver.com, then a successful DDoS attack on b.examplserver.com would allow the website on a.exampleserver.com to continue to run, but with a failed search feature.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.