Home » RDBMS Server » Security » Views, DBLinks and Priv "Workarounds" (Oracle 10.2.0.3)
Views, DBLinks and Priv "Workarounds" [message #461089] |
Wed, 16 June 2010 09:05  |
Roachcoach
Messages: 1576 Registered: May 2010 Location: UK
|
Senior Member |
|
|
Afternoon all.
I encountered something unexpected today.
As I'm sure you're all well aware I cannot create a view over an object I cannot grant privs on.
What I can do, however, is create a circular DB link back to my server, use that to create a view over a table I lack grant privs on.
In other words
Take the example of UserA & UserB. UserA has a table (table1) and he grants select on table1 to UserB
UserB cannot execute:
Create view myview as select * from UserA.table1
But, if UserB creates a DBlink(called DBlink for ease) to the server he can execute this:
Create view myview as select * from UserA.Table1@Dblink
This successfully executes.
My question is...why? Best guess asking around our guys is it divides privs seperately, processes the DBlink first as a subquery/internal view using credentials supplied in the link then creates the view over that effectively circumventing the fact that I lack privs directly.
Any insight would be interesting.
Thanks in advance.
|
|
|
|
|
|
|
|
|
|
|
|
Re: Views, DBLinks and Priv "Workarounds" [message #461112 is a reply to message #461108] |
Wed, 16 June 2010 10:40   |
Roachcoach
Messages: 1576 Registered: May 2010 Location: UK
|
Senior Member |
|
|
Dont suppose I have to actually run it at home. This should do the job
--creating userA
create user usera identified by aa;
grant create session to usera;
grant create table to usera;
grant create role to usera;
grant unlimited tablespace to usera;
--creating userb
create user userb identified by bb;
grant create session to userb;
grant create table to userb;
grant create database link to userb;
grant create view to userb;
grant unlimited tablespace to userb;
--connect as user A, make the table, role and grants
conn usera/aa
create table table1 as select * from dual;
create role myrole;
grant select on table1 to myrole;
grant myrole to userb;
--connect as userb, query the table directly, fail to create a view,
--create a dblink, query via DB link then finally create the view using DBlink
conn userb/bb
select * from usera.table1;
create view myview as select * from usera.table1;
create database link dblink connect to USERB identified by bb using 'ocp11g';
select * from usera.table1@dblink;
create view myview as select * from usera.table1@dblink;
select * from myview;
That should replicate what I'm seeing.
Perhaps redundant in light of earlier posts but may be useful in the future for any users searching etc.
[Updated on: Wed, 16 June 2010 11:25] by Moderator Report message to a moderator
|
|
|
|
Goto Forum:
Current Time: Fri Apr 04 20:15:21 CDT 2025
|