SV-24422r2_rule
V-15627
DBMS administrative privilege assignment
DG0117-ORACLE11
CAT II
10
Revoke assigned administrative privileges from database accounts and assign to accounts via roles.
Document roles and assignments in the System Security Plan.
From SQL*Plus (NOTE: The owner list below is a short list of all possible default Oracle accounts):
select grantee||': '||privilege
from dba_sys_privs
where grantee not in
('SYS', 'SYSTEM', 'SYSMAN', 'CTXSYS', 'MDSYS', 'WKSYS')
and grantee not in
(select distinct granted_role from dba_role_privs)
and privilege <> 'UNLIMITED TABLESPACE'
order by grantee;
NOTE: Disregard any default database component account privilege assignments that may be returned.
If administrative privileges have been assigned directly to an account, this is a Finding.
V-15627
False
DG0117-ORACLE11
From SQL*Plus (NOTE: The owner list below is a short list of all possible default Oracle accounts):
select grantee||': '||privilege
from dba_sys_privs
where grantee not in
('SYS', 'SYSTEM', 'SYSMAN', 'CTXSYS', 'MDSYS', 'WKSYS')
and grantee not in
(select distinct granted_role from dba_role_privs)
and privilege <> 'UNLIMITED TABLESPACE'
order by grantee;
NOTE: Disregard any default database component account privilege assignments that may be returned.
If administrative privileges have been assigned directly to an account, this is a Finding.
M
Information Assurance Officer
1367