STIGQter STIGQter: STIG Summary: Oracle Database 12c Security Technical Implementation Guide Version: 2 Release: 1 Benchmark Date: 23 Apr 2021:

Unused database components that are integrated in the DBMS and cannot be uninstalled must be disabled.

DISA Rule

SV-220286r395853_rule

Vulnerability Number

V-220286

Group Title

SRG-APP-000141-DB-000092

Rule Version

O121-C2-011700

Severity

CAT II

CCI(s)

Weight

10

Fix Recommendation

In the system documentation list the integrated components required for operation of applications that will be accessing the DBMS.

For Oracle Database 12.1, only the following components can be enabled/disabled:

Oracle Data Mining (dm)
Oracle Database Extensions for .NET (ode_net)
Oracle OLAP (olap)
Oracle Partitioning (partitioning)
Real Application Testing (rat)

Use the chopt utility (an Oracle-supplied operating system command that resides in the <Oracle Home path>/bin directory) to disable each option that should not be available. The command format is

chopt <enable|disable> <option>
where <option> is any of the abbreviations in parentheses in the list above. For example, to disable Real Application Testing, issue the following command at an OS prompt:

chopt disable rat

Restart the Oracle service.

(See My Oracle Support Document 948061.1 for more on the chopt command.)

Check Contents

Run this query to check to see what integrated components are installed in the database:

SELECT parameter, value
from v$option
where parameter in
(
'Data Mining',
'Oracle Database Extensions for .NET',
'OLAP',
'Partitioning',
'Real Application Testing'
);

This will return all of the relevant database options and their status. TRUE means that the option is installed. If the option is not installed, the option will be set to FALSE.

Review the options and check the system documentation to see what is required. If all listed components are authorized to be in use, this is not a finding.

If any unused components or features are listed by the query as TRUE, this is a finding.

Vulnerability Number

V-220286

Documentable

False

Rule Version

O121-C2-011700

Severity Override Guidance

Run this query to check to see what integrated components are installed in the database:

SELECT parameter, value
from v$option
where parameter in
(
'Data Mining',
'Oracle Database Extensions for .NET',
'OLAP',
'Partitioning',
'Real Application Testing'
);

This will return all of the relevant database options and their status. TRUE means that the option is installed. If the option is not installed, the option will be set to FALSE.

Review the options and check the system documentation to see what is required. If all listed components are authorized to be in use, this is not a finding.

If any unused components or features are listed by the query as TRUE, this is a finding.

Check Content Reference

M

Target Key

4059

Comments