get_conversations
Capture network traffic via a specified interface and analyze TCP/UDP conversations for LLM processing. Configure duration to extract real-time statistics for threat hunting, diagnostics, or anomaly detection.
Instructions
Capture live traffic and provide TCP/UDP conversation statistics for LLM analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | Capture duration in seconds | |
interface | No | Network interface to capture from (e.g., eth0, en0) | en0 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"duration": {
"default": 5,
"description": "Capture duration in seconds",
"type": "number"
},
"interface": {
"default": "en0",
"description": "Network interface to capture from (e.g., eth0, en0)",
"type": "string"
}
},
"type": "object"
}