spiderfoot_start_scan
Initiate a new OSINT reconnaissance scan against a specified target to gather intelligence and investigate digital footprints using SpiderFoot modules.
Instructions
Start a new scan against a target.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modulelist | No | ||
scanname | Yes | ||
scantarget | Yes | ||
typelist | No | ||
usecase | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"modulelist": {
"type": "string"
},
"scanname": {
"minLength": 1,
"type": "string"
},
"scantarget": {
"minLength": 1,
"type": "string"
},
"typelist": {
"type": "string"
},
"usecase": {
"enum": [
"all",
"investigate",
"passive",
"footprint"
],
"type": "string"
}
},
"required": [
"scanname",
"scantarget"
],
"type": "object"
}