Read the blog post @ https://iwantmore.pizza/posts/x0rro.html
$ npm install -g x0rro
$ x0rro COMMAND
running command...
$ x0rro (-v|--version|version)
x0rro/1.0.3 linux-x64 node-v13.7.0
$ x0rro --help [COMMAND]
USAGE
$ x0rro COMMAND
...
Encrypt binary using code cave technique
USAGE
$ x0rro cave FILE
OPTIONS
-h, --help show CLI help
-s, --sections=sections [default: __text] sections to xor separated by comma
-x, --xor=xor [default: 0xf] xor key to use in hexadecimal
EXAMPLES
$ x0rro cave -x 0xf -s __text,__data myfile
$ x0rro cave -x 0xf -s aogf[0x140004000-0x140004290] test.exe
See code: src/commands/cave.ts
display help for x0rro
USAGE
$ x0rro help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help
Encrypt binary with an interactive wizard
USAGE
$ x0rro interactive FILE
OPTIONS
-h, --help show CLI help
EXAMPLE
$ x0rro interactive myfile
See code: src/commands/interactive.ts
Encrypt binary using a new executable section
USAGE
$ x0rro section FILE
OPTIONS
-h, --help show CLI help
-s, --sections=sections [default: __text] sections to xor separated by comma
-x, --xor=xor [default: 0xf] xor key to use in hexadecimal
EXAMPLES
$ x0rro section -x 0xf -s __text,__data myfile
$ x0rro section -x 0xf -s aogf[0x140004000-0x140004290] test.exe
See code: src/commands/section.ts