URL Decoding Strings

Without Burp

Starting with a URL encoded parameter.

Strip the percent signs and use hex dumper to finish url decoding.

cat myurlstring | tr -d "%" | xxd -r -p

Last updated

Was this helpful?