cookies.txt      .scr

ただのテキストファイルのようだ

2018-12-09から1日間の記事一覧

hxpctf2018 writeup blind

なかなか好きな問題でした。 問題 #!/usr/bin/env python3 import os, random from Crypto.Cipher import AES aes = AES.new(os.urandom(16), AES.MODE_ECB) enc = lambda x: aes.encrypt(x.to_bytes(16, 'big')).hex() dec = lambda y: int.from_bytes(aes.…