摘要:
[ACTF新生赛2020]SoulLike 64位elf 关键在这个函数,太长反编译器炸了,运行发现 会告诉那个位置错了,逐个爆破 from itertools import * import subprocess flag="" t="" for i in range(12): for j in 阅读全文
摘要:
游戏规则和地图如下 > h Game commands: h[elp] - See this help q[uit] - Exit the game Area commands: l[ook] [object] - Look at the room [or at an optional object 阅读全文
摘要:
32位exe 这里通过sub_401121得到一个值与loc_40117c异或解密,看sub_401121 监听了本地端口2222 但不知道值是多少,爆破 import sys import os import socket ip = '127.0.0.1' port = 2222 for i in 阅读全文
摘要:
本来想要写在buu合集里,但这题太恶心了,拿出来单独写 elf,拖进ida,找到主函数 程序需要两个参数,再运行时可以看到打印了“bad”,由此找到 第一个参数很简单, a="bngcg`debd" for i in a: print(chr(ord(i)^0x56),end="") 再找第二个参数 阅读全文