I recently read this article about how a lone hacker (The Jester) conducts, amongst various other things, his DoS attacks over layer 7 instead of layer 4. It also mentions at one point he was able to successfully DoS a website using just a 3G enabled phone as his attack platform.
I'm curious as to how this was actually done. Would a simple HTML script be able to cause this big an impact? Especially considering that the article seems to suggest he is able to deny service without having to distribute the attack.
For example, and I appreciate this is just a very basic one, finding a large element on a page and constantly requesting a large number of it:
<html>
<meta http-equiv="refresh" content="1" />
<img src="http://www.iana.org/_img/iana-logo-pageheader.png" width="5" height="5"/>
<img src="http://www.iana.org/_img/iana-logo-pageheader.png" width="5" height="5"/>
<img src="http://www.iana.org/_img/iana-logo-pageheader.png" width="5" height="5"/>
<img src="http://www.iana.org/_img/iana-logo-pageheader.png" width="5" height="5"/>
<img src="http://www.iana.org/_img/iana-logo-pageheader.png" width="5" height="5"/>
<img src="http://www.iana.org/_img/iana-logo-pageheader.png" width="5" height="5"/>
(x100)
</meta>
</html>
Is this a viable, albeit very basic, AV for a layer 7 DoS?
