To1in的BUU刷题记录6
To1in 的BUU刷题记录6 To1in 的BUU刷题记录——6 12.[BSidesSF2020]decrypto-2 import hashlib import struct import sys class Crypto: def __init__(self, key): if not isinstance(key, bytes): raise T…
To1in 的BUU刷题记录6 To1in 的BUU刷题记录——6 12.[BSidesSF2020]decrypto-2 import hashlib import struct import sys class Crypto: def __init__(self, key): if not isinstance(key, bytes): raise T…
To1in 的BUU刷题记录5 To1in 的BUU刷题记录——5(梅森旋转专题) 10.[GKCTF 2021]Random import random from hashlib import md5 def get_mask(): file = open("random.txt","w") for i in range(104): file.write…
To1in 的BUU刷题记录4 To1in 的BUU刷题记录——4 9.强网杯2019 Copperstudy nc连上去第0层是爆sha256,我自己写的比较丑,就不贴了。 第1层 [+]Generating challenge 1 [+]n=13112061820685643239663831166928327119579425830632458568…
To1in 的BUU刷题记录——3 6.[UTCTF2020]Curveball My friend Shamir was trying to share the flag with me and some of the other problem writers, but he wanted to make sure it didn't get inte…
To1in 的BUU刷题记录2 To1in 的BUU刷题记录——2 4.[XNUCA2018]baby_crypto The 26 letters a, b, c, ..., y, z correspond to the integers 0, 1, 2, ..., 25 len(key_a) = m len(key_k) = n c[i] = (p[i]…
To1in 的BUU刷题记录——1 1.[NCTF2019]childRSA 这道题的题面很“普通”,就是常规的RSA生成算法,给的p、q位数很大,按道理来说n很难分解,不过我们把n放到factordb.com里面分解,网站数据库里已经有了这个数的分解结果,于是就按照正常的RSA decrypt流程走一遍就完事了。 但是,如果我们去查阅一下官方的wp(In…