adv_unmark_false_positive
Remove false positive markings from findings in .adversary.json files to ensure accurate security insights during software development.
Instructions
Remove false positive marking from a finding in the .adversary.json file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
finding_uuid | Yes | UUID of the finding to unmark | |
path | No | Path to directory containing .adversary.json or direct path to .adversary.json file | . |
Input Schema (JSON Schema)
{
"properties": {
"finding_uuid": {
"description": "UUID of the finding to unmark",
"type": "string"
},
"path": {
"default": ".",
"description": "Path to directory containing .adversary.json or direct path to .adversary.json file",
"type": "string"
}
},
"required": [
"finding_uuid"
],
"type": "object"
}