create_finding
Generate and manage findings in DefectDojo by specifying title, test ID, severity, and description to streamline vulnerability tracking and resolution.
Instructions
Create a new finding
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cvssv3 | No | ||
cwe | No | ||
description | Yes | ||
impact | No | ||
mitigation | No | ||
severity | Yes | ||
steps_to_reproduce | No | ||
test_id | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cvssv3": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cvssv3"
},
"cwe": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Cwe"
},
"description": {
"title": "Description",
"type": "string"
},
"impact": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Impact"
},
"mitigation": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Mitigation"
},
"severity": {
"title": "Severity",
"type": "string"
},
"steps_to_reproduce": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Steps To Reproduce"
},
"test_id": {
"title": "Test Id",
"type": "integer"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"test_id",
"severity",
"description"
],
"title": "create_findingArguments",
"type": "object"
}