File: README.txt

package info (click to toggle)
sqlmap 1.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,652 kB
  • sloc: python: 51,128; xml: 13,698; ansic: 989; sh: 299; makefile: 62; sql: 61; perl: 30; cpp: 27; asm: 7
file content (22 lines) | stat: -rw-r--r-- 732 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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_