Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/extra/cloak/README.txt
2992 views
1
To use cloak.py you need to pass it the original file,
2
and optionally the output file name.
3
4
Example:
5
6
$ python ./cloak.py -i backdoor.asp -o backdoor.asp_
7
8
This will create an encrypted and compressed binary file backdoor.asp_.
9
10
Such file can then be converted to its original form by using the -d
11
functionality of the cloak.py program:
12
13
$ python ./cloak.py -d -i backdoor.asp_ -o backdoor.asp
14
15
If you skip the output file name, general rule is that the compressed
16
file names are suffixed with the character '_', while the original is
17
get by skipping the last character. So, that means that the upper
18
examples can also be written in the following form:
19
20
$ python ./cloak.py -i backdoor.asp
21
22
$ python ./cloak.py -d -i backdoor.asp_
23
24