SV-235190r638812_rule
V-235190
SRG-APP-000514-DB-000383
MYS8-00-011800
CAT II
10
Implement NIST FIPS 140-2 validated cryptographic modules to provision digital signatures.
Turn on MySQL FIPS mode and restart mysqld
Edit my.cnf
[mysqld]
ssl_fips_mode=ON
or
[mysqld]
ssl_fips_mode=STRICT
In general, STRICT imposes more restrictions than ON, but MySQL itself has no FIPS-specific code other than to specify to OpenSSL the FIPS mode value. The exact behavior of FIPS mode for ON or STRICT depends on the OpenSSL version.
ALL cryptography is provided via OpenSSL and can be verified in FIPS mode.
Run this command:
SELECT VARIABLE_NAME, VARIABLE_VALUE
FROM performance_schema.global_variables where variable_name = 'ssl_fips_mode';
If the VARIABLE_VALUE does not return "ON" or "STRICT", this is a finding.
In general, STRICT imposes more restrictions than ON, but MySQL itself has no FIPS-specific code other than to specify to OpenSSL the FIPS mode value. The exact behavior of FIPS mode for ON or STRICT depends on the OpenSSL version.
V-235190
False
MYS8-00-011800
ALL cryptography is provided via OpenSSL and can be verified in FIPS mode.
Run this command:
SELECT VARIABLE_NAME, VARIABLE_VALUE
FROM performance_schema.global_variables where variable_name = 'ssl_fips_mode';
If the VARIABLE_VALUE does not return "ON" or "STRICT", this is a finding.
In general, STRICT imposes more restrictions than ON, but MySQL itself has no FIPS-specific code other than to specify to OpenSSL the FIPS mode value. The exact behavior of FIPS mode for ON or STRICT depends on the OpenSSL version.
M
5277