mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 19:35:24 +02:00
RsaCtfTool.py: add page (#16078)
* rsactftool.py: add page * Update rsactftool.py.md
This commit is contained in:
parent
edc2641570
commit
dcc8b5fcea
1 changed files with 32 additions and 0 deletions
32
pages/common/rsactftool.py.md
Normal file
32
pages/common/rsactftool.py.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# RsaCtfTool
|
||||
|
||||
> RSA attack tool for CTF challenges - recover private keys from weak public keys and/or decrypt data.
|
||||
> More information: <https://github.com/RsaCtfTool/RsaCtfTool>.
|
||||
|
||||
- Recover a private key from a public key file:
|
||||
|
||||
`RsaCtfTool.py --publickey {{path/to/key.pub}} --private`
|
||||
|
||||
- Decrypt a file using a public key:
|
||||
|
||||
`RsaCtfTool.py --publickey {{path/to/key.pub}} --decryptfile {{path/to/ciphered_file}}`
|
||||
|
||||
- Decrypt a specific ciphertext string:
|
||||
|
||||
`RsaCtfTool.py --publickey {{path/to/key.pub}} --decrypt "{{ciphertext}}"`
|
||||
|
||||
- Dump RSA key components (e.g., modulus, exponent) from a key file:
|
||||
|
||||
`RsaCtfTool.py --dumpkey --key {{path/to/key.pub}}`
|
||||
|
||||
- Run a specific attack (e.g., Fermat factorization) to recover the private key:
|
||||
|
||||
`RsaCtfTool.py --publickey {{path/to/key.pub}} --private --attack fermat`
|
||||
|
||||
- Generate a public key from modulus (n) and exponent (e):
|
||||
|
||||
`RsaCtfTool.py --createpub -n {{modulus}} -e {{exponent}}`
|
||||
|
||||
- Attempt all available attacks to recover the private key:
|
||||
|
||||
`RsaCtfTool.py --publickey {{path/to/key.pub}} --private --attack all`
|
Loading…
Add table
Reference in a new issue