Skip to content

Commit

Permalink
clean up the java comments to address how BambdaChecker generates REA…
Browse files Browse the repository at this point in the history
…DME.md
  • Loading branch information
ncoblentz committed Nov 29, 2023
1 parent caec624 commit 84ee60f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Proxy/HTTP/FilterOnSpecificHighlightColor.bambda
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
/**
* 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;
* - HighlightColor.CYAN;
* - HighlightColor.GRAY;
Expand All @@ -14,6 +19,6 @@
* - HighlightColor.PINK;
* - HighlightColor.RED;
* - HighlightColor.YELLOW;
**/
*/

return requestResponse.annotations().highlightColor().equals(HighlightColor.CYAN);

0 comments on commit 84ee60f

Please sign in to comment.