一、靶场地址
https://buuoj.cn/challenges#[GXYCTF2019]gakki
二、复现步骤
1、下载题目给的附件,解压是一张图片;
2、用foremost分离出rar压缩包文件;
3、解压需要密码,用ARCHPR工具爆破密码,得到密码为8864;
ARCHPR工具下载地址:https://github.com/huan-cdm/ctf_tools
4、用密码成功解压文件,得到一堆无序的字符;
5、用python中的字符统计模块Counter得到flag;
# -*- coding: utf-8 -*-
from collections import Counter
f=open('num.txt','r')
f_read=f.read()
print(Counter(f_read))
flag{gaki_IsMyw1fe}