sqlmap/extra/cloak
2019-03-28 15:14:16 +01:00
..
__init__.py Update regarding #2940 (PEP 394) 2019-03-21 14:00:09 +01:00
cloak.py Some more drei stuff 2019-03-28 15:14:16 +01:00
README.txt added new cloaking functionality for shell scripts 2010-01-27 13:56:26 +00:00

To use cloak.py you need to pass it the original file,
and optionally the output file name.

Example:

$ python ./cloak.py -i backdoor.asp -o backdoor.asp_

This will create an encrypted and compressed binary file backdoor.asp_.

Such file can then be converted to its original form by using the -d
functionality of the cloak.py program:

$ python ./cloak.py -d -i backdoor.asp_ -o backdoor.asp

If you skip the output file name, general rule is that the compressed
file names are suffixed with the character '_', while the original is
get by skipping the last character. So, that means that the upper
examples can also be written in the following form:

$ python ./cloak.py -i backdoor.asp

$ python ./cloak.py -d -i backdoor.asp_