nuclei_scan
Scan web applications and networks for security vulnerabilities using customizable templates and severity filters to identify potential threats during authorized penetration testing.
Instructions
Run Nuclei vulnerability scanner
Input Schema
Name | Required | Description | Default |
---|---|---|---|
severity | No | Minimum severity level | |
target | Yes | Target URL or IP | |
templates | No | Specific templates to run |
Input Schema (JSON Schema)
{
"properties": {
"severity": {
"description": "Minimum severity level",
"enum": [
"info",
"low",
"medium",
"high",
"critical"
],
"type": "string"
},
"target": {
"description": "Target URL or IP",
"type": "string"
},
"templates": {
"description": "Specific templates to run",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"target"
],
"type": "object"
}