SV-219706r401224_rule
V-219706
SRG-APP-000516-DB-000363
O112-BP-022300
CAT II
10
Revoke assignment of privileges with the WITH ADMIN OPTION from unauthorized users and re-grant them without the option.
From SQL*Plus:
revoke [privilege name] from user [username];
Replace [privilege name] with the named privilege and [username] with the named user.
Restrict use of the WITH ADMIN OPTION to authorized administrators.
Document authorized privilege assignments with the WITH ADMIN OPTION in the System Security Plan.
Run the SQL query:
select grantee, privilege from dba_sys_privs
where grantee not in
(<list of non-applicable accounts>)
and admin_option = 'YES'
and grantee not in
(select grantee from dba_role_privs where granted_role = 'DBA');
(With respect to the list of special accounts that are excluded from this requirement, it is expected that the DBA will maintain the list to suit local circumstances, adding special accounts as necessary and removing any that are not supposed to be in use in the Oracle deployment that is under review.)
If any accounts that are not authorized to have the ADMIN OPTION are listed, this is a Finding.
V-219706
False
O112-BP-022300
Run the SQL query:
select grantee, privilege from dba_sys_privs
where grantee not in
(<list of non-applicable accounts>)
and admin_option = 'YES'
and grantee not in
(select grantee from dba_role_privs where granted_role = 'DBA');
(With respect to the list of special accounts that are excluded from this requirement, it is expected that the DBA will maintain the list to suit local circumstances, adding special accounts as necessary and removing any that are not supposed to be in use in the Oracle deployment that is under review.)
If any accounts that are not authorized to have the ADMIN OPTION are listed, this is a Finding.
M
4057