2025春秋杯部分wpDAY1

2025春秋杯

DAY1

WEB

easy_flask

直接fenjing一把梭

image-20250118014553419

file_copy

下载github上的脚本

image-20250118014911687

MISC

简单算术

题目提示了异或

image-20250118015142036

简单镜像提取

image-20250118015539629

formost提取到镜像文件

image-20250118015549668

然后用autopsy打开

image-20250118015611472

image-20250118015618701

flag{E7A10C15E26AA5750070EF756AAA1F7C}

CRYPTO

通往哈希的旅程

import hashlib

# 目标哈希值
target_hash = "ca12fd8250972ec363a16593356abb1f3cf3a16d"

# 遍历所有可能的 11 位号码(以 188 开头)
for i in range(18800000000, 18900000000):
    number_str = str(i)
    # 使用 SHA1 算法生成哈希值
    hash_value = hashlib.sha1(number_str.encode()).hexdigest()
    # 比较哈希值是否匹配
    if hash_value == target_hash:
        print(f"flag{{{number_str}}}")
        break

image-20250118020136150

posted @ 2025-01-18 02:30  dynasty_chenzi  阅读(170)  评论(0)    收藏  举报
返回顶端