2.需要python库:gmpy2,pycrypto,pypcapfile 3.将脚本和bob_alice_encrypted.pcap放在一起,然后运行脚本 image fromCrypto.PublicKeyimportRSAimportgmpy2# Alice's public encryption parametersn1=long(1696206139052948924304948333474767)e=long(65537)# Bob'sn2=long(3104649130901425335933838103517383)# Yes! We can factor...
下载附件得到Handicraft_RSA文件,用notepad打开,得到如下信息(加密算法,公钥,密文) 将PUBLIC KEY保存为1.pem,使用RsaCtfTool转化为n,e形式 在线分解分解n得到p,q 解密脚本: 代码语言:javascript 复制 import base64 import gmpy2 from Crypto.Util.number import * from Crypto.PublicKey import RSA n=21702007965967...