Tags: and q's p's
Rating:
https://www.youtube.com/watch?v=17SYQieisMA&t=606s
"almond force" RSA python script:
plug your n into http://factordb.com/ to find p and q
```
c = 964354128913912393938480857590969826308054462950561875638492039363373779803642185
n = 1584586296183412107468474423529992275940096154074798537916936609523894209759157543
e = 65537
p = 2434792384523484381583634042478415057961
q = 650809615742055581459820253356987396346063
t = (p - 1) * (q - 1)
d = pow(e, -1, t)
p = pow(c, d, n)
'''print(p)'''
print(bytearray.fromhex(hex(p)[2:]).decode('ascii'))
```