Burp Suite User Forum

Create new post

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

Thanks, I'll give it a try.

You must be an existing, logged-in customer to reply to a thread. Please email us for additional support.