update_finding_status
Modify the status of a vulnerability finding in DefectDojo to values like Active, Verified, or False Positive. This tool helps manage and track findings efficiently within the vulnerability management system.
Instructions
Update the status of a finding (Active, Verified, False Positive, Mitigated, Inactive)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
finding_id | Yes | ||
status | Yes |
Input Schema (JSON Schema)
{
"properties": {
"finding_id": {
"title": "Finding Id",
"type": "integer"
},
"status": {
"title": "Status",
"type": "string"
}
},
"required": [
"finding_id",
"status"
],
"title": "update_finding_statusArguments",
"type": "object"
}