md5

Fireshell CTF 2019|Alphabet

#FireshellCTF2019 https://ctftime.org/task/7486 問題文 If you know your keyboard, you know the flag 一緒に渡されるファイル https://gist.githubusercontent.com/theoldmoon0602/fcf5368212f584262ae730bb1b34cbc6/raw/f3fb787e62053a78178da51f8a2ad…

Crypto CTF 2021 | Salt and Pepper

#cryptoctf2021 #!/usr/bin/env python3 from hashlib import md5, sha1 import sys from secret import salt, pepper from flag import flag assert len(salt) == len(pepper) == 19 assert md5(salt).hexdigest() == '5f72c4360a2287bc269e0ccba6fc24ba' a…