I want to create own wordlist, with the following options:
crunch 4 4 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789`~!@#$%^&*()_+-=[]{}\|'";:/?.>,</ -o out.txt
but the result output getting this error: bash: !@#: event not found
I want to create own wordlist, with the following options:
crunch 4 4 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789`~!@#$%^&*()_+-=[]{}\|'";:/?.>,</ -o out.txt
but the result output getting this error: bash: !@#: event not found
You have to properly escape and quote special characters.
command 'abc....}\|'\''".../'
^^ - preserve literal single quote by escaping it
^ ^ ^ ^ - put other stuff in single quotes
Research "shell quoting" for more info.