create_scan
Initiate a new scan on Intruder.IO, specifying target addresses and tags to assess network security vulnerabilities systematically.
Instructions
Create a new scan.
Args:
target_addresses: List of target addresses to scan
tag_names: List of tag names to scan targets with these tags
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tag_names | No | ||
target_addresses | No |
Input Schema (JSON Schema)
{
"properties": {
"tag_names": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tag Names"
},
"target_addresses": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Target Addresses"
}
},
"title": "create_scanArguments",
"type": "object"
}