UCF STIG Viewer Logo

System Privileges must not be granted to PUBLIC.


Overview

Finding ID Version Rule ID IA Controls Severity
V-61435 O121-BP-022400 SV-75925r1_rule Medium
Description
System privileges can be granted to users and roles and to the user group PUBLIC. All privileges granted to PUBLIC are accessible to every user in the database. Many of these privileges convey considerable authority over the database and should be granted only to those persons responsible for administering the database. In general, these privileges should be granted to roles and then the appropriate roles should be granted to users. System privileges must never be granted to PUBLIC as this could allow users to compromise the database.
STIG Date
Oracle Database 12c Security Technical Implementation Guide 2015-12-21

Details

Check Text ( C-62325r1_chk )
From SQL*Plus:

select privilege from dba_sys_privs where grantee = 'PUBLIC';

If any records are returned, this is a finding.
Fix Text (F-67351r1_fix)
Revoke any system privileges assigned to PUBLIC:

From SQL*Plus:

revoke [system privilege] from PUBLIC;

Replace [system privilege] with the named system privilege.

Note: System privileges are not granted to PUBLIC by default and would indicate a custom action.