spiderfoot_scan_logs
Retrieve scan execution logs for a SpiderFoot OSINT reconnaissance scan to monitor progress and review detailed activity records.
Instructions
Fetch/poll scan logs for a given scan ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
limit | No | ||
reverse | No | ||
rowId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"limit": {
"type": "number"
},
"reverse": {
"enum": [
"0",
"1"
],
"type": "string"
},
"rowId": {
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}