攻防世界misc——3-1

下载附件,得到未知格式文件,010看一下,是rar格式,另存为rar文件
攻防世界misc——3-1
解压,得到未知格式文件++__++,file看一下,pcapng文件攻防世界misc——3-1
改一下后缀,wireshark打开,协议分级看看,tcp流量居多攻防世界misc——3-1
试试看能不能导出http对象,发现flag.rar文件,导出攻防世界misc——3-1
解压,发现要密码
攻防世界misc——3-1
回到流量包,尝试追踪TCP流,发现疑似base64编码的字符串,尝试解码,失败攻防世界misc——3-1攻防世界misc——3-1
向下翻,又找到了python代码攻防世界misc——3-1
拎出来

# coding:utf-8

__author__ = 'YFP'

from Crypto import Random
from Crypto.Cipher import AES
import sys
import base64

IV = 'QWERTYUIOPASDFGH' 
def decrypt(encrypted):
    aes = AES.new(IV, AES.MODE_CBC, IV)
    return aes.decrypt(encrypted)

def encrypt(message):
    length = 16
    count = len(message)
    padding = length - (count % length)
    message = message + '\0' * padding
    aes = AES.new(IV, AES.MODE_CBC, IV)
    return aes.encrypt(message)

str = 'this is a test'
example = encrypt(str)
print(decrypt(example))

分析代码,用到了AES加密,模式为CBC,密码和偏移量都用Iv填充,密文估计就是之前发现的类似base64编码的字符串了,找在线工具直接解出压缩包密码攻防世界misc——3-1
解压,得到flag攻防世界misc——3-1

上一篇:BASE64编码


下一篇:Base64编码20211318