This folder contains utility/helper scripts to best leverage the cryptographic algorithms project.
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.
Python 3.7 or higher.
The dependencies can be found in the requirements.txt file.
To install dependencies, run:
pip3 install -r requirements.txt
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
.