-
-
Notifications
You must be signed in to change notification settings - Fork 18
Home
Alex Kollar edited this page Oct 12, 2022
·
9 revisions
Cryptex started out in November 2021 with one developer Alex "cythes" Kollar as an attempt to be less of a script kiddy.
It has since became so much more. In April of 2022 the official cryptex Development Team formed. Consisting of members
of two security groups with one common goal. To make Cryptex the Metasploit of cryptography. Since then A few great dev's
nave come and gone from the project but Cryptex persists. If you want to know more about the previous developers go check
out our credits page. Cryptex has evolved so much in just the little time it has existed. Going from a Hodge-podge of tools
and scripts to being a fully functional professional grade tool. As of the Pumpkin Patch 00 release the core dev team has taken a step back and completely refactored the tool to work with object oriented Programming. As well as making it easier to implement new Ciphers
and tools into the program it self.
$ python main.py --help
usage: main.py [-h] [-e] [-d] [-t TEXT]
[-k KEY] [-ex EXCLUDE]
[-o OUTPUT] [-i INPUT]
[-iw IMAGEWIDTH] [-m]
[-lang] [-src SRC_LANG]
[-dest DEST_LANG]
[-len LENGTH]
[cipher]
positional arguments:
cipher The cipher name
optional arguments:
-h, --help show this help
message and exit
-e, --encode Encode mode
-d, --decode Decode mode
-t TEXT, --text TEXT
The input text
-k KEY, --key KEY The key
-ex EXCLUDE, --exclude EXCLUDE
The exclude list
-o OUTPUT, --output OUTPUT
output file
-i INPUT, --input INPUT
input file
-iw IMAGEWIDTH, --imageWidth IMAGEWIDTH
image width
-m, --monocromatic monocromatic
-lang show languages
-src SRC_LANG source language
-dest DEST_LANG destination language
-len LENGTH length
$ python main.py cc
### Modes
-d / --decode ---- decode
-e / --encode ---- encode
### Input
-t / --text ------ input text
-k / --key ------- shift key
-ex / --exclude -- exclude list
### Examples
python main.py cc -e -t "hello" -k 10
python main.py cc -d -t "hello" -k 10
python main.py cc -e -t "hello" -k 10 -ex '123456789'
python main.py cc -d -t "hello" -k 10 -ex '123456789'
Please select a mode
Try --help or -h for more information
If you face any problems while using the application, please open an issue here
Contributions, feedback, and bug reports are welcome! Feel free to check out our issues page to find out what you could do! but before contrubuting make sure to check out CONTRIBUTING.md.