SV-253743r961656_rule
V-253743
SRG-APP-000447-DB-000393
MADB-10-009100
CAT II
10
All errors and denials are logged to the sql errorlog. If the sql error log does not exist, install the sql error log plugin as follows:
MariaDB> INSTALL SONAME 'sql_errlog';
The error log should by default be located as sql_errors.log within the data directory (/var/lib/mysql by default).
As the database administrator, make a small SQL syntax error by running the following:
MariaDB> CREAT TABLEincorrect_syntax(id INT)
ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near CREAT TABLEincorrect_syntax(id INT) at line 1
Now verify the syntax error was logged (change the log file name and part to suit the circumstances):
$ cat $DATADIR/sql_errors.log
2019-09-05 14:31:22 root[root] @ localhost [] ERROR 1064: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near CREAT TABLEincorrect_syntax(id INT) at line 1 : CREAT TABLEincorrect_syntax(id INT)
Review security guide to determine how input errors from application to MariaDB are to be handled in general and if any special handling is defined for specific circumstances.
If it does not implement the documented behavior, this is a finding.
V-253743
False
MADB-10-009100
As the database administrator, make a small SQL syntax error by running the following:
MariaDB> CREAT TABLEincorrect_syntax(id INT)
ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near CREAT TABLEincorrect_syntax(id INT) at line 1
Now verify the syntax error was logged (change the log file name and part to suit the circumstances):
$ cat $DATADIR/sql_errors.log
2019-09-05 14:31:22 root[root] @ localhost [] ERROR 1064: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near CREAT TABLEincorrect_syntax(id INT) at line 1 : CREAT TABLEincorrect_syntax(id INT)
Review security guide to determine how input errors from application to MariaDB are to be handled in general and if any special handling is defined for specific circumstances.
If it does not implement the documented behavior, this is a finding.
M
5475