The Burp Suite User Forum was discontinued on the 1st November 2024.

Burp Suite User Forum

For support requests, go to the Support Center. To discuss with other Burp users, head to our Discord page.

SUPPORT CENTER DISCORD

How do I use GraphQL to mark an issue as a false positive

William | Last updated: Dec 01, 2020 07:47PM UTC

I have found a a few issues that are reported that I want to flag as false positives. How do I do this using GraphQL? Thanks

Ben, PortSwigger Agent | Last updated: Dec 02, 2020 09:41AM UTC

Hi, You should be able to do this by constructing a query based on the information in the following page: https://portswigger.net/burp/extensibility/enterprise/graphql-api/update_false_positive.html The example given on the above page uses the following query: mutation UpdateFalsePositive($input: UpdateFalsePositiveInput!) { update_false_positive(input: $input) { successful } } Using these values as example inputs: { "input": { "scan_id": "18", "serial_number": "8788117787987606528", "is_false_positive": true, "propagation_mode": "issue_type_only" } }

William | Last updated: Dec 02, 2020 02:10PM UTC