hi@hectortoral.com

1 min read

Fuzz

CommandDescription
wfuzz -z file,/path/to/wordlist.txt -u http://127.0.0.1:80/site/FUZZFuzz using a wordlist
wfuzz -z file,/path/to/user.txt -z file,/path/to/pass.txt http://127.0.0.1/login.php -d "user=FUZZ&pass=FUZ2Z"Fuzz using POST method and two wordlists
wfuzz -H Foo:FUZZFuzz header
-X GET , -X POSTChoose method

Grep

CommandDescription
grep '[[:classname:]]' file.txtFind strings that contain a given class. Classes are: [[:graph:]], [[:lower:]], [[:print:]], [[:punct:]], [[:space:]], [[:upper:]], and [[:xdigit:]]
grep -x '.\{123\}'Find strings with length of 123

Misc

CommandDescription
echo -n academy | xxd -pConvert hex to ASCII
echo -n 61636164656d79 | xxd -r -pConvert ASCII to hex