UCF STIG Viewer Logo

Only authorized system accounts should have the SYSTEM tablespace specified as the default tablespace.


Overview

Finding ID Version Rule ID IA Controls Severity
V-3846 DO0155-ORACLE10 SV-24855r2_rule DCPA-1 Medium
Description
The Oracle SYSTEM tablespace is used by the database to store all DBMS system objects. Other use of the system tablespace may compromise system availability and the effectiveness of host system access controls to the tablespace files.
STIG Date
Oracle Database 10g Instance STIG 2014-04-02

Details

Check Text ( C-29412r2_chk )
From SQL*Plus: select username from dba_users where (default_tablespace = 'SYSTEM' or temporary_tablespace = 'SYSTEM') and username not in ('AURORA$JIS$UTILITY$','AURORA$ORB$UNAUTHENTICATED', 'DBSNMP','MDSYS','ORDPLUGINS','ORDSYS','OSE$HTTP$ADMIN', 'OUTLN','REPADMIN','SYS','SYSTEM','TRACESVR','MTSSYS','DIP'); If any non-default account records are returned, this is a Finding.
Fix Text (F-26439r1_fix)
Create and dedicate tablespaces to support only one application. Do not share tablespaces between applications. Do not grant quotas to application object owners on tablespaces not dedicated to their associated application. From SQL*Plus: alter user [username] default tablespace [tablespace_name] temporary tablespace TEMP; Replace [username] with the named user account. Replace [tablespace_name] with the new default tablespace name.