由于一部分题目很久之前做的没有记笔记so拜谢sq大佬直接截图只记录较为重要部分嘿嘿

致谢

补记笔记

Enchantment

  • 标准银河字母
    alt text

ez_锟斤拷???

ez_ssl

alt text

  • http过滤找到ssl.log文件
    alt text
  • tls首选项导入1.log
  • 再搜http
  • 追踪tls流可以看到文件和提示
    alt text
    alt text
  • 爆破解压得到flag

万里挑一

  • 脚本解压拿字典
import zipfile,os
def unzip(path,zfile):
file_path=path+os.sep+zfile
desdir=path+os.sep+zfile[:zfile.index('.zip')]
srcfile=zipfile.ZipFile(file_path)
for filename in srcfile.namelist():
srcfile.extract(filename,desdir)
if filename.endswith('.zip'):
#if zipfile.is_zipfile(filename):
path=desdir
zfile=filename
unzip(path,zfile)
path=r'E:\\Downloads\\attachment\\1'
zfile=r'password.zip'
unzip(path,zfile)
import os
#设置基础路径
base_path = r"E:\\Downloads\\attachment\\1\\password"
#创建输出文件
output_file= "all_passwords.txt"
with open(output_file,'w') as out_f:
#四层嵌套循环遍历e-9的所有组合
for i in range(10):#第一级目录0-9
for j in range(10):#第二级目录0-9
for k in range(10):#第三级目录0-9
for l in range(10):#第四级目录0-9
#构建当前文件路径
file_path=os.path.join(base_path,str(i),str(j),str(k),str(l),"pwd.txt")
try:
#读取文件内容
with open(file_path,'r') as in_f:
content = in_f.read().strip()
#提取冒号后的密码内容
if ':' in content:
password = content.split(':',1)[1].strip()
#写入到输出文件
out_f.write(password+'\n')
else:
print(f"格式错误:{file_path}")
except FileNotFoundError:
print(f"文件不存在:{file_path}")
except Exception as e:
print(f"处理错误{file_path}:{str(e)}")
print(f"所有密码已提取到{output_file}")
  • 爆破后还有一层明文

alt text

  • 震惊,不愧是misc大手子
  • 4D5A90000300000004000000
  • bkcrack.exe -C 1.zip -c "明文.exe" -p 1.bin
  • bkcrack -C 1.zip -k eec878a3 6808e48f 3aa41bd8 -U new.zip easy
  • 太搞笑了我原来还想偷懒不改密码,结果和我说密码错误。。。迷茫

weird_photo

  • 一把梭

WebRepo

alt text

  • 随波逐流能看到有7-zip文件但
  • 7-ZIP文件头:
37 7A BC AF 27 1C
  • 学习了这篇git泄露做出来了,但文章还没学习完,后面有空再看

alt text

  • 也可以

sq学长版本:
git reset --hard 249ff41401736165cd4514cee7afcd31ecfe7d09回退到该版本

Encrypted volume

alt text

  • :@(s<"A3F:89x541Ux[<
  • vc解开

alt text

哈基米难没露躲

alt text

  • 好有意思
  • 服了,要学会去记事本粘贴下看看

alt text

2048_master

alt text

  • 奇怪的是提示到16384有惊喜但不管是16384还是16384/2=8192都没有用,2048再上下左右几次就成功了嘻嘻

MoeCTF指导版

alt text

来自https://zhuanlan.zhihu.com/p/1938149602994921660
查阅 ProveYourLove 的题面可知七夕节会多一个 flag(七夕限定),因此第一题的答案是24

  • 原来如此

alt text
alt text
alt text

  • 231410173

alt text
alt text

  • 我服了。。。

alt text

  • 玩脑筋急转弯呢,incorrect后面那个!也要
  • 我去太好玩了

alt text

  • 全选可以直接得到欸

alt text

  • 设置按钮翻转就可以了
  • 好玩好玩哈哈哈哈哈

Pyjail 0

  • Python jail 系列题目