Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.3 KB

File metadata and controls

43 lines (32 loc) · 1.3 KB

Introduction

This folder contains utility/helper scripts to best leverage the cryptographic algorithms project.

Analyse Folder for Crypto

The crypto_detect.py is a Python script that loads the definitions folder into memory and uses it to scan ghe specified target folder for evidence of cryptography.

Requirements

Python 3.7 or higher.

The dependencies can be found in the requirements.txt file.

To install dependencies, run:

pip3 install -r requirements.txt

Usage

To run the Crypto Detect, please call it from the CLI using:

python3 crypto_detect.py --help

To process the current . folder in its entirety, please use the following command:

python3 crypto_detect.py -c <your-custom-definitions\> .

From the root of the project, simply run:

python3 crypto_detect.py <src-folder>

The definitions are loaded by default, and the <src-folder> is whatever you want to analyse.

To run in quiet mode, simply add --quiet.