masscan_high_speed
Perform high-speed port scanning on target networks to identify open ports and services for security assessments and vulnerability discovery.
Instructions
Execute Masscan for high-speed port scanning.
Args: target: Target IP address or CIDR range ports: Port range to scan rate: Packet transmission rate banners: Enable banner grabbing exclude_file: File containing IPs to exclude include_file: File containing IPs to include output_format: Output format (list, xml, json) additional_args: Additional Masscan arguments
Returns: High-speed scan results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
additional_args | No | ||
banners | No | ||
exclude_file | No | ||
include_file | No | ||
output_format | No | list | |
ports | No | 1-65535 | |
rate | No | ||
target | Yes |
Input Schema (JSON Schema)
{
"properties": {
"additional_args": {
"default": "",
"title": "Additional Args",
"type": "string"
},
"banners": {
"default": false,
"title": "Banners",
"type": "boolean"
},
"exclude_file": {
"default": "",
"title": "Exclude File",
"type": "string"
},
"include_file": {
"default": "",
"title": "Include File",
"type": "string"
},
"output_format": {
"default": "list",
"title": "Output Format",
"type": "string"
},
"ports": {
"default": "1-65535",
"title": "Ports",
"type": "string"
},
"rate": {
"default": 1000,
"title": "Rate",
"type": "integer"
},
"target": {
"title": "Target",
"type": "string"
}
},
"required": [
"target"
],
"type": "object"
}