hi@hectortoral.com

1 min read

Commands

CommandDescription
curl http:/SERVER_IP:PORT/cURL GET request
curl -s http:/SERVER_IP:PORT/ -X POSTcURL POST request
curl -s http:/SERVER_IP:PORT/ -X POST -d "param1=sample"cURL POST request with data
echo hackthebox | base64base64 encode
echo ENCODED_B64 | base64 -dbase64 decode
echo hackthebox | xxd -phex encode
echo ENCODED_HEX | xxd -p -rhex decode
echo hackthebox | tr 'A-Za-z' 'N-ZA-Mn-za-m'rot13 encode
echo ENCODED_ROT13 | tr 'A-Za-z' 'N-ZA-Mn-za-m'rot13 decode

Deobfuscation Websites

Website
JS Console
Prettier
Beautifier
JSNice

Misc

CommandDescription
ctrl+uShow HTML source code in Firefox