- Encoders
- Encryptor
- Obfuscators
- Packer
Encoders
- Base64
- Hex
Encryptor
- polymorphic encrypter using the cryptography module
Obfuscators
- ranenc: This is a polymorphic ceaser cicher
- strcla: This is a polymorphic string builder
Packer
- Gzip
./jackInTheBox.py -e base64 -o ranenc -p -i infile.py -f outfile.py
./jackInTheBox.py -E -e hex -p -i infile.py -f outfile.py
./jackInTheBox.py -o strcla -i infile.py -f outfile.py
./jackInTheBox.py -r -i infile.py -f outfile.py
More examples here.
- Python 3.7+
- cryptography
Michael Provenzano @MikeyPPPPPPPP