摘要:
题目 flag = open("flag", "r").read().strip() assert len(flag) == 32 def str2num(s): return int(s.encode('hex'), 16) def bbencode(n): a = 0 for i in bin( 阅读全文
摘要:
此题为Dual RSA 是找到一对ed符合两个余数 assert int(pow(pow(0xdeadbeef, e, n1), d)) == 0xdeadbeef assert int(pow(pow(0xdeadbeef, e, n2), d)) == 0xdeadbeef 下面是引用的exp 阅读全文
摘要:
起因发现我原来装在kali下的Sage无法安装包和编译 观察报错发现不能用root用户去编译Sage 于是我就做了一个专用Sage的ubantu 在Ubantu中安装非常顺利,只需要额外安装m4即可 然后在当前用户的.bashrc文件中export一下sage export PATH=$SAGE_R 阅读全文