The MySQL security article recommends disabling LOCAL INFILE if I don't need it.
http://www.greensql.com/content/mysql-security-best-practices-hardening-mysql-tips
I would like to do the same in MariaDB, but the following configuration line does not work in MariaDB (used to work in Mysql):
set-variable=local-infile=0
Does anyone know how to disable it? Or maybe it doesnβt have a runtime configuration configurator and needs to be compiled using a special configure flag?
source
share