STIGQter STIGQter: STIG Summary: MariaDB Enterprise 10.x Security Technical Implementation Guide Version: 2 Release: 5 Benchmark Date: 01 Apr 2026:

Execution of software modules (to include stored procedures, functions, and triggers) with elevated privileges must be restricted to necessary cases only.

DISA Rule

SV-253724r961359_rule

Vulnerability Number

V-253724

Group Title

SRG-APP-000342-DB-000302

Rule Version

MADB-10-006900

Severity

CAT II

CCI(s)

Weight

10

Fix Recommendation

Determine where, when, how, and by what principals/subjects elevated privilege is needed.

To change the values of the SECURITY_TYPE for functions and procedures:

MariaDB> USE <database>;
MariaDB> ALTER FUNCTION procedure_name | function_name sql security INVOKER | DEFINER ;

To change the values of the DEFINER for functions, procedures, and triggers, run the following SQL as the database administrator:

MariaDB> SHOW CREATE function | procedure ;
MariaDB> DROP function | procedure ;

Recreate the function or procedure using the results of the create statement (from the SHOW CREATE results above), with the definer set to the desired user.

Check Contents

Functions and Procedures in MariaDB all have DEFINER and SECURITY_TYPE options.

If SECURITY_TYPE = DEFINER then the function or procedure is run using the privileges of the DEFINER account.

If SECURITY_TYPE = INVOKER, then they will be run using the privileges of the user invoking the function or procedure.

To list the values of the DEFINER and SECURITY_TYPE in functions and procedures as the database administrator, run the following SQL:

MariaDB> SELECT ROUTINE_NAME, ROUTINE_SCHEMA, ROUTINE_TYPE, DEFINER, SECURITY_TYPE FROM information_schema.routines WHERE ROUTINE_SCHEMA NOT IN ('sys','mysql');

Triggers in MariaDB have a DEFINER option.

For Triggers the value of the DEFINER determines the privileges to be used at trigger activation time.

To list the values of the DEFINER in Triggers, as the database administrator, run the following SQL:

MariaDB> SELECT trigger_schema, trigger_name, action_statement, definer FROM information_schema.triggers;

If elevation of MariaDB privileges is utilized but not documented, this is a finding.

If elevation of MariaDB privileges is documented, but not implemented as described in the documentation, this is a finding.

If the privilege-elevation logic can be invoked in ways other than intended, or in contexts other than intended, or by subjects/principals other than intended, this is a finding.

Vulnerability Number

V-253724

Documentable

False

Rule Version

MADB-10-006900

Severity Override Guidance

Functions and Procedures in MariaDB all have DEFINER and SECURITY_TYPE options.

If SECURITY_TYPE = DEFINER then the function or procedure is run using the privileges of the DEFINER account.

If SECURITY_TYPE = INVOKER, then they will be run using the privileges of the user invoking the function or procedure.

To list the values of the DEFINER and SECURITY_TYPE in functions and procedures as the database administrator, run the following SQL:

MariaDB> SELECT ROUTINE_NAME, ROUTINE_SCHEMA, ROUTINE_TYPE, DEFINER, SECURITY_TYPE FROM information_schema.routines WHERE ROUTINE_SCHEMA NOT IN ('sys','mysql');

Triggers in MariaDB have a DEFINER option.

For Triggers the value of the DEFINER determines the privileges to be used at trigger activation time.

To list the values of the DEFINER in Triggers, as the database administrator, run the following SQL:

MariaDB> SELECT trigger_schema, trigger_name, action_statement, definer FROM information_schema.triggers;

If elevation of MariaDB privileges is utilized but not documented, this is a finding.

If elevation of MariaDB privileges is documented, but not implemented as described in the documentation, this is a finding.

If the privilege-elevation logic can be invoked in ways other than intended, or in contexts other than intended, or by subjects/principals other than intended, this is a finding.

Check Content Reference

M

Target Key

5475