From 68e47d41ce3f60caaa8969433506d716e8744c9e Mon Sep 17 00:00:00 2001 From: ps-porpoise <152162390+ps-porpoise@users.noreply.github.com> Date: Thu, 30 Nov 2023 13:23:17 +0000 Subject: [PATCH 1/2] Remove unintentional mention from PR template. --- .github/pull_request_template.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 4ccf99b..bede83f 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,6 +1,5 @@ ### Bambda Contributions -* [ ] Bambda has a valid [header](https://github.com/PortSwigger/bambdas/blob/73077e7ff3f6fac9db7dc95c0a00bd842b6bb64c/Proxy/HTTP/FilterOnCookieValue.bambda#L1-L5), featuring an @author annotation and suitable description -* [ ] Bambda is in the correct directory +* [ ] Bambda has a valid [header](https://github.com/PortSwigger/bambdas/blob/73077e7ff3f6fac9db7dc95c0a00bd842b6bb64c/Proxy/HTTP/FilterOnCookieValue.bambda#L1-L5), featuring an `@author` annotation and suitable description * [ ] Bambda compiles and executes as expected * [ ] Only .bambda files have been added or modified (README.md files are automatically updated / generated after PR merge) From bda46392eb0628e5d44e683cdd3bd3b2712389d4 Mon Sep 17 00:00:00 2001 From: ps-porpoise <152162390+ps-porpoise@users.noreply.github.com> Date: Thu, 30 Nov 2023 13:24:01 +0000 Subject: [PATCH 2/2] Remove masked link from Bambda & change javadoc formatting. --- Proxy/HTTP/FilterOnSpecificHighlightColor.bambda | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Proxy/HTTP/FilterOnSpecificHighlightColor.bambda b/Proxy/HTTP/FilterOnSpecificHighlightColor.bambda index 6f6a4c8..14ea1e7 100644 --- a/Proxy/HTTP/FilterOnSpecificHighlightColor.bambda +++ b/Proxy/HTTP/FilterOnSpecificHighlightColor.bambda @@ -1,12 +1,8 @@ /** * Filters requests/responses for specific highlight colors * - * @author [Nick Coblentz](https://github.com/ncoblentz) + * @author Nick Coblentz (https://github.com/ncoblentz) * - - **/ - -/* * You can currently filter requests/responses that are highlighted, but you can't ask Burp to show you requests/responses highlighted with a particular color only. If you use a specific color to categorize requests/responses for role-based authorization testing, todo lists, or identifying a particular browser tab/window then its helpful to be able to see only those requests/resposnse you are interested in. The following Bambda snippet lets you choose the color(s) you want to see. The available colors are: * Options: * - HighlightColor.BLUE; @@ -19,6 +15,6 @@ * - HighlightColor.PINK; * - HighlightColor.RED; * - HighlightColor.YELLOW; - */ + **/ return requestResponse.annotations().highlightColor().equals(HighlightColor.CYAN); \ No newline at end of file