File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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)
132132ShellcodeTester is a tool to assembly, compile and test ASM shellcode.
133133https://github.com/helviojunior/shellcodetester
134134
@@ -142,6 +142,7 @@ General Setting:
142142Custom 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: \x 00\x 0a, default: \0 x00)
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
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments