
Question: 1Consider that local disk files are accessible via MySQL with commands such as: mysql> LOAD DATA LOCAL INFILE ‘/etc/passwd’ INTO TABLE mypasswords; What change could be made to stop any breach via this insecurity?A. executing REVOKE LOAD FROM *.*B. setting the --local-service=0 option when starting mysqldC. executing REVOKE FILE FROM *.*D. executing REVOKE FILE ON *.* FROM ‘ ’ @’%’E. setting the --local-infile=0 option when starting...