Unused database components, DBMS software, and database objects must be removed.
Severity | Group ID | Group Title | Version | Rule ID | Date | STIG Version |
---|---|---|---|---|---|---|
medium | V-253691 | SRG-APP-000141-DB-000091 | MADB-10-003200 | SV-253691r960963_rule | 2024-12-05 | 2 |
Description |
---|
Information systems are capable of providing a wide variety of functions and services. Some of the functions and services, provided by default, may not be necessary to support essential organizational operations (e.g., key missions, functions). It is detrimental for software products to provide, or install by default, functionality exceeding requirements or mission objectives. DBMSs must adhere to the principles of least functionality by providing only essential capabilities. |
ℹ️ Check |
---|
List all plugins and determine which are acceptable. MariaDB> SHOW PLUGINS; If unused plugins are installed and are not documented and authorized, this is a finding. |
✔️ Fix |
---|
To uninstall the plugin but leave the libraries in place: MariaDB> UNINSTALL PLUGIN plugin_name; To uninstall the plugin and the associated libraries: MariaDB> UNINSTALL SONAME plugin_name; |