Skip to content

Commit 238e8a7

Browse files
committed
Adjust help
1 parent db8ba9e commit 238e8a7

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ pip3 install --upgrade shellcodetester
128128
```bash
129129
$ shellcodetester -h
130130

131-
ShellcodeTester v0.2.2 by Helvio Junior (M4v3r1ck)
131+
ShellcodeTester v0.X.X by Helvio Junior (M4v3r1ck)
132132
ShellcodeTester is a tool to assembly, compile and test ASM shellcode.
133133
https://github.com/helviojunior/shellcodetester
134134

@@ -142,6 +142,7 @@ General Setting:
142142
Custom Settings:
143143
--break-point Set software breakpoint (INT3) before shellcode (default: false)
144144
--bad-chars [bad char list] List of bad chars to highlight (ex: \x00\x0a, default: \0x00)
145+
--remove Remove bad chars from final binary executable (EXE, ELF and Mach-O). (default: false)
145146
--cave-size [size] Code cave size (default: 1024)
146147
--fill-with-nop Fill entire page with NOP (default: false)
147148
--list List all supported output format

shellcodetester/args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _add_custom_args(self, custom):
7474
action='store_true',
7575
default=False,
7676
dest='remove',
77-
help=Color.s('Remove bad chars from final shellcode. (default: {G}false{W})'))
77+
help=Color.s('Remove bad chars from final binary executable (EXE, ELF and Mach-O). (default: {G}false{W})'))
7878

7979
custom.add_argument('--cave-size',
8080
action='store',

0 commit comments

Comments
 (0)