mirror of https://github.com/CISOfy/lynis.git
Changed file permissions
This commit is contained in:
parent
c5dcbe8c31
commit
40d6a853d5
|
@ -78,8 +78,8 @@
|
|||
|
||||
# "-u root --password=" avoids ~/.my.cnf authentication settings
|
||||
# "plugin = 'mysql_native_password' AND authentication_string = ''" avoids false positives when secure plugins are used
|
||||
FIND=$(${MYSQLCLIENTBINARY} --no-defaults -u root --password= --silent --batch --execute="SELECT count(*) FROM mysql.user WHERE user = 'root' AND plugin = 'mysql_native_password' AND authentication_string = ''" mysql 2>/dev/null)
|
||||
if [ "${FIND}" > "0" ]; then
|
||||
FIND=$(${MYSQLCLIENTBINARY} --no-defaults -u root --password= --silent --batch --execute="SELECT count(*) FROM mysql.user WHERE user = 'root' AND plugin = 'mysql_native_password' AND authentication_string = ''" mysql 2>/dev/null; echo $?)
|
||||
if [ "${FIND}" = "0" ]; then
|
||||
LogText "Result: Login succeeded, no MySQL root password set!"
|
||||
ReportWarning ${TEST_NO} "No MySQL root password set"
|
||||
Display --indent 4 --text "- Checking empty MySQL root password" --result "${STATUS_WARNING}" --color RED
|
||||
|
|
Loading…
Reference in New Issue