SV-24905r3_rule
V-2533
WITH GRANT OPTION privileges
DO3451-ORACLE11
CAT II
10
Revoke privileges granted the WITH GRANT OPTION from non-DBA and accounts that do not own application objects.
Re-grant privileges without specifying WITH GRANT OPTION.
Execute the query:
select grantee||': '||owner||'.'||table_name
from dba_tab_privs
where grantable = 'YES'
and grantee not in (select distinct owner from dba_objects)
and grantee not in (select grantee from dba_role_privs where granted_role = 'DBA')
order by grantee;
If any accounts are listed, this is a finding.
V-2533
False
DO3451-ORACLE11
Execute the query:
select grantee||': '||owner||'.'||table_name
from dba_tab_privs
where grantable = 'YES'
and grantee not in (select distinct owner from dba_objects)
and grantee not in (select grantee from dba_role_privs where granted_role = 'DBA')
order by grantee;
If any accounts are listed, this is a finding.
M
Information Assurance Officer
1367