跳转至

ez_rsa:

下载附件:

image-20230506225531196

用编写python代码,因为RSA可逆 :

p = 1325465431

q = 152317153

e = 65537

n = p*q

L = (p-1)*(q-1)

d = pow(e,-1,L)

print(d)

解出D=43476042047970113

再经过md5加密得到flag

评论