当前位置:网站首页>Ctfshow web entry explosion
Ctfshow web entry explosion
2022-07-05 14:58:00 【Cwxh0125】
web21
First, enter an account password casually

Grab the bag
The account name and password entered are base64 Encrypted , Decoding found that its form is ——admin: password , Next, construct payload
Using a custom iterator The first paragraph is admin The second paragraph is “:” The third paragraph is the password for downloading the title attachment Conduct base64 After encryption, it can be exploded
web22



web23
Open to see php Code , First analyze the code , You can know token By md5 encryption , And its first = Fourteenth = 17th ,( first place + Fourteenth + 17th )/ first place = 31st place

php Script
<?php
error_reporting(0);
$a="asdfghjklqwertyuiopzxcvbnm1234567890";
for($i=0;$i<36;$i++){
for($j=0;$j<36;$j++){
$token=$a[$i].$a[$j];
$token = md5($token);
if(substr($token, 1,1)===substr($token, 14,1) && substr($token, 14,1) ===substr($token, 17,1)){
if((intval(substr($token, 1,1))+intval(substr($token, 14,1))+substr($token, 17,1))/substr($token, 1,1)===intval(substr($token, 31,1))){
echo $a[$i].$a[$j];
exit(0);
}
}
}
}
?>
After running, get 3j The ginseng token=3j

web24
mt_scrand(seed) This function means , By distributing seed seeds , Then the seeds have , by mt_rand() Generate random Count 
stay kali Run on Or by php Script ![]()
Run a pseudo-random number 1155388967 Pass on ?r=1155388967 Can get flag
web25
web26
Direct input I can't find out

Blow up the password 
After blasting
边栏推荐
- webRTC SDP mslabel lable
- Penetration testing methodology
- NBA赛事直播超清画质背后:阿里云视频云「窄带高清2.0」技术深度解读
- How to open an account of qiniu securities? Is it safe to open an account?
- Implement a blog system -- using template engine technology
- CPU设计实战-第四章实践任务二用阻塞技术解决相关引发的冲突
- Long list optimized virtual scrolling
- mysql8.0JSON_ Instructions for using contains
- 开挖财上的证券账户可以吗?安全吗?
- 启牛证券账户怎么开通,开户安全吗?
猜你喜欢
随机推荐
我想咨询一下,mysql一个事务对于多张表的更新,怎么保证数据一致性的?
Handwriting promise and async await
FR练习题目---简单题
【招聘岗位】基础设施软件开发人员
Structure - C language
启牛证券账户怎么开通,开户安全吗?
MySQL----函数
R 熵权法计算权重及综合得分
你童年的快乐,都是被它承包了
js亮瞎你眼的日期选择器
【数组和进阶指针经典笔试题12道】这些题,满足你对数组和指针的所有幻想,come on !
Jmeter性能测试:ServerAgent资源监控
百亿按摩仪蓝海,难出巨头
开挖财上的证券账户可以吗?安全吗?
Reconnaissance des caractères easycr
Behind the ultra clear image quality of NBA Live Broadcast: an in-depth interpretation of Alibaba cloud video cloud "narrowband HD 2.0" technology
长列表优化虚拟滚动
P1451 求细胞数量/1329:【例8.2】细胞
[summary of leetcode weekly competition] the 81st fortnight competition of leetcode (6.25)
Topology visual drawing engine






![[detailed explanation of Huawei machine test] character statistics and rearrangement](/img/0f/972cde8c749e7b53159c9d9975c9f5.png)

