Information
The local_infile parameter dictates whether files located on the MySQL client's computer can be loaded or selected via LOAD DATA INFILE or SELECT local_file.
Rationale:
Disabling local_infile reduces an attacker's ability to read sensitive files off the affected server via an SQL injection vulnerability.
Impact:
Disabling local_infile will impact the functionality of solutions that rely on it.
Solution
Add the following line to the [mysqld] section of the MySQL configuration file and restart the MySQL service:
local_infile=OFF
Default Value:
ON