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

From Oracle Database 11g Instance STIG

Part of Oracle default tablespace assignment

SV-24856r4_rule Only authorized system accounts should have the SYSTEM tablespace specified as the default tablespace.

Vulnerability discussion

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.

Check content

Run the query: select property_name, property_value from database_properties where property_name in ('DEFAULT_PERMANENT_TABLESPACE','DEFAULT_TEMP_TABLESPACE'); If either value is set to "SYSTEM", this is a finding. Run the query: select username from dba_users where (default_tablespace = 'SYSTEM' or temporary_tablespace = 'SYSTEM') and username not in ('LBACSYS','OUTLN','SYS','SYSTEM', 'MGMT_VIEW'); If any non-default account records are returned, this is a finding.

Fix text

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. Run the queries: alter database default tablespace ; alter database default temporary tablespace ; alter user default tablespace temporary tablespace ; Replace with the named user account. Replace with the new default tablespace name. Replace with the new default temporary tablespace name (typically TEMP). Repeat the "alter user" for each affected user account.

Pro Tips

Lavender hyperlinks in small type off to the right (of CSS class id, if you view the page source) point to globally unique URIs for each document and item. Copy the link location and paste anywhere you need to talk unambiguously about these things.

You can obtain data about documents and items in other formats. Simply provide an HTTP header Accept: text/turtle or Accept: application/rdf+xml.

Powered by sagemincer