poll_interactsh_session
Retrieve and decrypt security testing interactions for analysis. Filter captured DNS/HTTP data by method, path, query, protocol, or text content to identify specific callback responses.
Instructions
Retrieves and decrypts interactions for a session. Optional filters let you match HTTP method, path, query, protocol, or free text.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
correlation_id | Yes | ||
method | No | ||
path_contains | No | ||
protocol | No | ||
query_contains | No | ||
text_contains | No |
Input Schema (JSON Schema)
{
"properties": {
"correlation_id": {
"type": "string"
},
"method": {
"type": "string"
},
"path_contains": {
"type": "string"
},
"protocol": {
"type": "string"
},
"query_contains": {
"type": "string"
},
"text_contains": {
"type": "string"
}
},
"required": [
"correlation_id"
],
"type": "object"
}