Skip to content

Instantly share code, notes, and snippets.

@lanmaster53
Last active May 22, 2024 19:00
Show Gist options
  • Save lanmaster53/e0fe8d1ac22eba9822de0f008e3ac2af to your computer and use it in GitHub Desktop.
Save lanmaster53/e0fe8d1ac22eba9822de0f008e3ac2af to your computer and use it in GitHub Desktop.
Collection of Burp Suite Pro custom column snippets.

Display the Server header from the response:

String hv = requestResponse.response().headerValue("Server");
return hv != null ? hv : "";

Display the GraphQL operation from the request:

String pv = requestResponse.request().parameterValue("operationName", HttpParameterType.JSON);
return pv != null ? pv.split("\\{|\\(")[0] : "";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment