项目作者: malladisiddu

项目描述 :
Basic decryption tool
高级语言: Python
项目地址: git://github.com/malladisiddu/ZCrypt.git
创建时间: 2020-07-17T16:26:50Z
项目社区:https://github.com/malladisiddu/ZCrypt

开源协议:GNU General Public License v3.0

下载



  1. ███████╗ ██████╗██████╗ ██╗ ██╗██████╗ ████████╗
  2. ╚══███╔╝██╔════╝██╔══██╗╚██╗ ██╔╝██╔══██╗╚══██╔══╝
  3. ███╔╝ ██║ ██████╔╝ ╚████╔╝ ██████╔╝ ██║
  4. ███╔╝ ██║ ██╔══██╗ ╚██╔╝ ██╔═══╝ ██║
  5. ███████╗╚██████╗██║ ██║ ██║ ██║ ██║
  6. ╚══════╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝
  7. +++++++++++++++++++++++++++++++++++++++++++++++
  8. ****<<Created by: Siddartha Malladi>>**********

ZCrypt

Basic decryption tool

Author’s Note

ZCrypt is a basic decryption tool for all CTF enthusiasts especially for Crypto-analysts which covers XOR and RSA techniques.

Features

RSA Attacks

  • (c,n,e)
  • (c,p,q,e)
  • (c,n,e,{p or q})
  • (c,n,d)
  • (c1,c2,c3,n1,n2,n3) [Hasted Broadcast Attack]
  • (c,e) [Small Exponent(“e”) Attack]
  • (c,p,q,dp,dq) [Chinese Remainder Theorem]
  • (c,n,e) [Fermat Factorization]

    XOR

  • Single Byte XOR
  • Repeating Key XOR

Many updates are going to release in future.

Installation

  1. git clone https://github.com/malladisiddu/ZCrypt.git

Requirements

  1. cd ZCrypt
  2. apt install libgmp-dev libmpfr-dev libmpc-dev
  3. pip3 install -r requirements.txt

Usage

  1. python3 ZCrypt.py

Future Updates

  • Currently working on its GUI
  • Planning to add common attacks in AES for different modes
    • Currently working on script for CBC BitFlipping Attack