Skip to content
PortSwiggerWiener edited this page Nov 27, 2023 · 1 revision

Welcome to the bambdas wiki!

FAQ

  1. What are Bambdas? See this blog post or watch this video for an introduction.

  2. Where can I find the relevant documentation? Here is the documentation for the Proxy HTTP filter.

  3. Are Bambdas coming to other areas of Burp? Definitely!

Useful Bambdas code snippets

Tthere are a few tricks you might want to utilize to help you get even more value from the functionality.

  • If you're using something a lot, and want to save yourself some time, you can assign it to a variable. For example:

var request = requestResponse.request();

  • If you want to check if a parameter exists, and if it's value is present, you can request it by name and check it for null instead:

var cookie = request.parameter("foo", HttpParameterType.COOKIE);

Clone this wiki locally