SV-219700r401224_rule
V-219700
SRG-APP-000516-DB-000363
O112-BP-021700
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-219700
False
O112-BP-021700
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
4057