项目作者: arkiix

项目描述 :
⚡ Fast and easy RSA tool ⚡
高级语言: Python
项目地址: git://github.com/arkiix/ToasterRSACTFTool.git
创建时间: 2021-07-19T16:12:38Z
项目社区:https://github.com/arkiix/ToasterRSACTFTool

开源协议:

下载


ToasterRSATool

Tool to work with the RSA encryption algorithm encrypts, decrypts, recovers the private key by exploiting attacks.

Usage

usage: ToasterRSATool.py [-h] [-n N] [-p P] [-q Q] [-e E] [-d D] [-c C] [-n2 N2] [—key KEY] [—encrypt ENCRYPT]

Argument Description
-h, —help show this help message and exit
-n N Module n
-p P Factor p
-q Q Factor q
-e E Public exponent
-d D Private exponent
-c C Cipher text
-n2 N2 Second n
—key KEY Path to the key
—encrypt ENCRYPT Encrypt message

Attack/Decrypt RSA

To attack or decrypt RSA provide it with all data you have. In case you provide it with insufficient data for decrypting, the tool will attack.

Encrypt RSA

To encrypt a message use —encrypt “message”. Keys are generated and displayed in the console and saved automatically in /keys. To use your own encryption key - add

  1. --key path_to_key

Encryption using generated keys

  1. python3 ToasterRSATool.py --encrypt "Your message"

Encryption with your key

  1. python3 ToasterRSATool.py --key pub.pem --encrypt "Your message"

Decrypt message

  1. python3 ToasterRSATool.py --key private.pem -c 1234567890
  2. python3 ToasterRSATool.py -n 1234567890 -c 1234567890 -d 1234567890

Examples of starting an attack

  1. python3 ToasterRSATool.py -n 1234567890 -e 65537 -c 1234567890
  2. python3 ToasterRSATool.py --key public.pem -e 65537 -c 1234567890
  3. python3 ToasterRSATool.py -n 1234567890 -e 65537 -c 1234567890 -n2 1234567890
  4. python3 ToasterRSATool.py -n 1234567890 -e 65537 -c 1234567890 -p 1234567890
  5. python3 ToasterRSATool.py -n 1234567890 -e 65537 -c 1234567890 -q 1234567890

Installation

Requirements

  • pycryptodome
  • factordb-pycli
  • gmpy2
  • owiener

Ubuntu and Kali specific Instructions

  1. git clone https://github.com/arkiix/ToasterRSACTFTool
  2. cd ToasterRSACTFTool
  3. pip3 install -r requirements.txt
  4. python3 ToasterRSATool.py

MacOS-specific Instructions

If you fail to install it with the help of this command:

  1. pip3 install -r requirements.txt

Try the following one:

  1. easy_install `cat requirements.txt`