用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
747 B

select load_file("/proc/uptime");
load_file("/proc/uptime")
<num> <num>
SET @old_net_buffer_length = @@global.net_buffer_length;
SET @old_max_allowed_packet= @@global.max_allowed_packet;
SET GLOBAL net_buffer_length = 1024;
SET GLOBAL max_allowed_packet = 1024;
select load_file("/proc/modules");
load_file("/proc/modules")
NULL
Warnings:
Warning 1301 Result of load_file() was larger than max_allowed_packet (1024) - truncated
SET GLOBAL max_allowed_packet = @old_max_allowed_packet;
SET GLOBAL net_buffer_length = @old_net_buffer_length;
select load_file("/proc/self/fd/0");
ERROR HY000: The file '/proc/self/fd/0' must be in the database directory or be readable by all
select load_file("/proc/uptime");
load_file("/proc/uptime")
<num> <num>