katana_crawl
Crawl websites for security reconnaissance using advanced spidering with JavaScript execution and form extraction to identify potential vulnerabilities.
Instructions
Execute Katana for next-generation crawling and spidering with enhanced logging.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
additional_args | No | ||
depth | No | ||
form_extraction | No | ||
js_crawl | No | ||
output_format | No | json | |
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"additional_args": {
"default": "",
"title": "Additional Args",
"type": "string"
},
"depth": {
"default": 3,
"title": "Depth",
"type": "integer"
},
"form_extraction": {
"default": true,
"title": "Form Extraction",
"type": "boolean"
},
"js_crawl": {
"default": true,
"title": "Js Crawl",
"type": "boolean"
},
"output_format": {
"default": "json",
"title": "Output Format",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}