RsaCtfTool — Casser RSA en CTF
★★★★★
Attaques automatiques RSA
git clone https://github.com/RsaCtfTool/RsaCtfTool
# Avec une clé publique PEM
python3 RsaCtfTool.py --publickey key.pub --uncipherfile cipher.bin
# Avec n, e, c directement
python3 RsaCtfTool.py -n 12345 -e 65537 --uncipher 98765
# Tester toutes les attaques connues
python3 RsaCtfTool.py -n N -e E --uncipher C --attack all
# Attaques disponibles :
# factordb, small_e, wiener, hastad, common_factors, fermat...