Burp Suite Tips and Tricks
Last updated
Was this helpful?
Last updated
Was this helpful?
- Match and Replace
- Additonal
How was i able to access a disabled/hidden feature with the help of burpsuite match and replace feature
- Find Refernces
Favourite Plugins -
Burp Hacks -
-If you see piece of junk information in the Request/Response body, don't forget gonna Proxy > Options tab and "Unpack gzip/deflate in Resp/Req" (by default they aren't marked).
Favourite plugins -
- Burp Collaborator
- Favourite Extensions
- Extension
Burp Extensions -
Just released my first plugin. If you use multiple browsers through burp, check this out:
Automating Web Apps Input fuzzing via Macros
Blog post: Turbo Intruder: Embracing the billion-request attack
Need to import multiple URL;s in to burp suite -
cat yahoourls.txt| parallel -j 10 curl --proxy -sk > /dev/null
·One liner to import whole list of subdomains into Burp suite for automated scanning! cat <file-name> | parallel -j 200 curl -L -o /dev/null {} -x 127.0.0.1:8080 -k -s