-
Notifications
You must be signed in to change notification settings - Fork 30
Home
PortSwiggerWiener edited this page Nov 27, 2023
·
1 revision
Welcome to the bambdas wiki!
-
What are Bambdas? See this blog post or watch this video for an introduction.
-
Where can I find the relevant documentation? Here is the documentation for the Proxy HTTP filter.
-
Are Bambdas coming to other areas of Burp? Definitely!
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);