Call: +44 (0)1904 557620 Call
Forum

Welcome, Guest. Please Login.
Apr 16th, 2024, 6:32pm
News: If you would like to register contact the forum admin
Home | Help | Search | Members | Login
   Pete Finnigan's Oracle Security Forum
   Oracle Security
   Oracle Security
(Moderator: Pete Finnigan)
   procedure in package body and not declares
« Previous topic | Next topic »
Pages: 1  Reply | Notify of replies | Send Topic | Print
   Author  Topic: procedure in package body and not declares  (Read 4815 times)
Pete Finnigan
PeteFinnigan.com Administrator
*****




Oracle Security is easier if you design for it

   
View Profile | WWW | Email

Gender: male
Posts: 309
procedure in package body and not declares
« on: Nov 30th, 2009, 10:47pm »
Quote | Modify

maybe a stupid question...
theoretically possible to exist a method to call procedure from package body when this rpocedure is not declared in package?
 
P.S Sorry for my bad english (me+google translate  ) Grin
IP Logged

Pete Finnigan (email:pete@petefinnigan.com)
Oracle Security Web site: http://www.petefinnigan.com
Forum: http://www.petefinnigan.com/forum/yabb/YaBB.cgi
Oracle security blog: http://www.petefinnigan.com/weblog/entries/index.html
Pete Finnigan
PeteFinnigan.com Administrator
*****




Oracle Security is easier if you design for it

   
View Profile | WWW | Email

Gender: male
Posts: 309
Re: procedure in package body and not declares
« Reply #1 on: Dec 1st, 2009, 10:11pm »
Quote | Modify

Only from within the package.
Code:

PACKAGE pack_1
  proc_1
END;
 
PACKAGE BODY pack_1
  proc_2
  proc_1
END;

proc_2 can only be called from within the body of pack_1 (and not through dynamic SQL).
IP Logged

Pete Finnigan (email:pete@petefinnigan.com)
Oracle Security Web site: http://www.petefinnigan.com
Forum: http://www.petefinnigan.com/forum/yabb/YaBB.cgi
Oracle security blog: http://www.petefinnigan.com/weblog/entries/index.html
Pete Finnigan
PeteFinnigan.com Administrator
*****




Oracle Security is easier if you design for it

   
View Profile | WWW | Email

Gender: male
Posts: 309
Re: procedure in package body and not declares
« Reply #2 on: Dec 4th, 2009, 7:09pm »
Quote | Modify

on Dec 1st, 2009, 10:11pm, gamyers wrote:
Only from within the package.
Code:

PACKAGE pack_1
  proc_1
END;
 
PACKAGE BODY pack_1
  proc_2
  proc_1
END;

proc_2 can only be called from within the body of pack_1 (and not through dynamic SQL).

 
Thanks gamyers
I know about the fact that the procedures in the body of the package perform each other, but this is a theoretical question. whether this is possible at all, or the architecture of Oracle simply does not allow ...
IP Logged

Pete Finnigan (email:pete@petefinnigan.com)
Oracle Security Web site: http://www.petefinnigan.com
Forum: http://www.petefinnigan.com/forum/yabb/YaBB.cgi
Oracle security blog: http://www.petefinnigan.com/weblog/entries/index.html
Pete Finnigan
PeteFinnigan.com Administrator
*****




Oracle Security is easier if you design for it

   
View Profile | WWW | Email

Gender: male
Posts: 309
Re: procedure in package body and not declares
« Reply #3 on: Dec 6th, 2009, 9:50pm »
Quote | Modify

proc_2 wouldn't be 'exposed' (eg visible in user_arguments) so as far as anything outside the package goes, it simply doesn't exist.
IP Logged

Pete Finnigan (email:pete@petefinnigan.com)
Oracle Security Web site: http://www.petefinnigan.com
Forum: http://www.petefinnigan.com/forum/yabb/YaBB.cgi
Oracle security blog: http://www.petefinnigan.com/weblog/entries/index.html
Pete Finnigan
PeteFinnigan.com Administrator
*****




Oracle Security is easier if you design for it

   
View Profile | WWW | Email

Gender: male
Posts: 309
Re: procedure in package body and not declares
« Reply #4 on: Dec 6th, 2009, 10:35pm »
Quote | Modify

on Dec 6th, 2009, 9:50pm, gamyers wrote:
proc_2 wouldn't be 'exposed' (eg visible in user_arguments) so as far as anything outside the package goes, it simply doesn't exist.

 
Then perhaps the only way to do this re-create the package and declare a func/proc Grin
 
Thanks Gamyers
IP Logged

Pete Finnigan (email:pete@petefinnigan.com)
Oracle Security Web site: http://www.petefinnigan.com
Forum: http://www.petefinnigan.com/forum/yabb/YaBB.cgi
Oracle security blog: http://www.petefinnigan.com/weblog/entries/index.html
Pete Finnigan
PeteFinnigan.com Administrator
*****




Oracle Security is easier if you design for it

   
View Profile | WWW | Email

Gender: male
Posts: 309
Re: procedure in package body and not declares
« Reply #5 on: Dec 7th, 2009, 10:13am »
Quote | Modify

This is an interesting question that i dont instantly know the answer without checking. The answer will come down to one of two things:
 
1) Does Oracle control execution of procedures within packages (i.e. resolve scope) at the database metadata level?
 
2) Does oracle control procedure execution within packages at the PL/SQL VM level and then within the VM level is it resolved at compile time (static semantic analysis?) or at run time (via dynamic semantic analysis?)
 
I would say its much more towards the VM/compiled code - has to be. BUT there is a possibility. As the compiled code is held in ther IDL$ tables it could possibly be modified or if its a case when the p-code is not held in the IDL$ tables then the DIANA could be modified in SOURCE$.  
 
Its way too complex to consider even if its possible you need to be connected to the SYS schema with modification rights to make it work. A trojan approach would be better to modify the package header either in source code files or in the database and get it recompiled?
 
cheers
 
Pete
IP Logged

Pete Finnigan (email:pete@petefinnigan.com)
Oracle Security Web site: http://www.petefinnigan.com
Forum: http://www.petefinnigan.com/forum/yabb/YaBB.cgi
Oracle security blog: http://www.petefinnigan.com/weblog/entries/index.html
Pete Finnigan
PeteFinnigan.com Administrator
*****




Oracle Security is easier if you design for it

   
View Profile | WWW | Email

Gender: male
Posts: 309
Re: procedure in package body and not declares
« Reply #6 on: Dec 7th, 2009, 10:14am »
Quote | Modify

Sorry forgot to add, why?
IP Logged

Pete Finnigan (email:pete@petefinnigan.com)
Oracle Security Web site: http://www.petefinnigan.com
Forum: http://www.petefinnigan.com/forum/yabb/YaBB.cgi
Oracle security blog: http://www.petefinnigan.com/weblog/entries/index.html
Pete Finnigan
PeteFinnigan.com Administrator
*****




Oracle Security is easier if you design for it

   
View Profile | WWW | Email

Gender: male
Posts: 309
Re: procedure in package body and not declares
« Reply #7 on: Dec 9th, 2009, 1:08am »
Quote | Modify

This is interesing if modify a code can add a not secure func. to secure package Smiley  , "rootkit" for oracle i try to code one Smiley  
If can to call a func which is not declared in package this is good metod to "trijan" a bd.
will think more...
IP Logged

Pete Finnigan (email:pete@petefinnigan.com)
Oracle Security Web site: http://www.petefinnigan.com
Forum: http://www.petefinnigan.com/forum/yabb/YaBB.cgi
Oracle security blog: http://www.petefinnigan.com/weblog/entries/index.html
Pages: 1  Reply | Notify of replies | Send Topic | Print

« Previous topic | Next topic »

Powered by YaBB 1 Gold - SP 1.4!
Forum software copyright © 2000-2004 Yet another Bulletin Board
  • PFCLScan PFCLScan

    Simply connect PFCLScan to your Oracle database and it will automatically discover the security issues that could make your Oracle database vulnerable to attack and to the potential loss of your data.

  • PFCL Obfuscate PFCLObfuscate

    PFCLObfuscate is the only tool available that can automatically add license controls to your PL/SQL code. PFCLObfuscate protects your Intellectual Property invested in your PL/SQL database code.

  • PFCLCode PFCLCode

    PFCLCode is a tool to allow you to analyse your PL/SQL code for many different types of security issues. PFCLCode gives you a detailed review and reports and includes a powerful colour syntax highlighting code editor

  • PFCLForensics PFCLForensics

    PFCLForensics is the only tool available to allow you to do a detailed live response of a breached Oracle database and to then go on and do a detailed forensic analysis of the data gathered.

  • Products We resell PFCLReselling

    PeteFinnigan.com Limited has partnered with a small number of relevant companies to resell their products where they enhance or compliment what we do

  • PFCLATK PFCLATK

    PFCLATK is a toolkit that allows detailed pre-defined policy driven audit trails for your Oracle database. The toolkit also provides for a centralised audit trail and centralised activity reporting

  • PFCLCookie PFCLCookie

    PFCLCookie is a useful tool to use to audit your websites for tracking cookies. Scan websites in a natural way using powerful browser driven scanner

  • PFCL Training PFCLTraining

    PFCLTraining is a set of expert training classes for you, aimed at teaching how to audit your own Oracle database, design audit trails, secure code in PL/SQL and secure and lock down your Oracle database.

  • PFCL Services PFCLServices

    Choose PFCLServices to add PeteFinnigan.com Ltd to your team for your Oracle Security needs. We are experts in performing detailed security audits, data security design work and policy creation

  • PFCLConsulting PFCLConsulting

    Choose PFCLConsulting to ask PeteFinnigan.com Limited to set up and use our products on your behalf

  • PFCLCustom PFCLCustom

    All of our software products can be customised at a number of levels. Choose this to see how our products can be part of your products and services

  • PFCLCloud PFCLCloud

    Private cloud, public cloud, hybrid cloud or no cloud. Learn how all of our services, trainings and products will work in the cloud

  • PFCLUserRights PFCLUserRights

    PFCLUserRights allows you to create a very detailed view of database users rights. The focus of the reports is to allow you to decide what privileges and accounts to keep and which to remove.

  • PFCLSTK PFCLSTK

    PFCLSTK is a toolkit application that allows you to provide database security easily to an existing database. PFCLSTK is a policy driven toolkit of PL/SQL that creates your security

  • PFCLSFTK PFCLSFTK

    PFCLSFTK is a toolkit that solves the problem of securing third party applications written in PL/SQL. It does this by creating a thin layer between the application and database and this traps SQL Injection attempts. This is a static firewall.

  • PFCLSEO PFCLSEO

    PFCLSEO is a web scanner based on the PFCLScan technology so that a user can easily scan a website for technical SEO issues