湖南省赛2024

PPT

审计源码发现ppt.zip,下载下来发现文件有点大,猜测有隐藏文件

image-20241018213748648

de提取zip文件

image-20241018214322837

发现一个文件(倒过来念是高手),二进制文件,丢到010中查看
image-20241018214620536

image-20241018214646926

weakpassword和PK文件头

工具逆一下或者脚本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import struct

def reverse_binary_file(file_path):
# 读取原始二进制文件
with open(file_path, 'rb') as file:
content = bytearray(file.read())

# 反转字节序列
reversed_content = content[::-1]

# 写入新的反转后的文件
new_file_path = f"{file_path}_reversed"
with open(new_file_path, 'wb') as new_file:
new_file.write(reversed_content)

print(f"原始文件已成功反转并保存为 {new_file_path}")


reverse_binary_file("手高是的念来过倒")

直接爆破密码,得到2233

得到一个lsass.dmp文件

用Mimikatz提取密码

image-20241018221447945


湖南省赛2024
http://example.com/2024/10/18/比赛/湖南省赛2024/
作者
Englobe
发布于
2024年10月18日
许可协议