proxy_add_target
Add a new target domain for proxy monitoring, enabling traffic analysis with optional header and body capture, and control its active status for HTTP/HTTPS traffic.
Instructions
Add a new target domain for proxy monitoring
Input Schema
Name | Required | Description | Default |
---|---|---|---|
captureBody | No | Capture request/response body | |
captureHeaders | No | Capture request/response headers | |
description | No | Optional description of the target | |
domain | Yes | Domain to monitor (e.g., example.com) | |
enabled | No | Whether the target is active |
Input Schema (JSON Schema)
{
"properties": {
"captureBody": {
"default": false,
"description": "Capture request/response body",
"type": "boolean"
},
"captureHeaders": {
"default": true,
"description": "Capture request/response headers",
"type": "boolean"
},
"description": {
"description": "Optional description of the target",
"type": "string"
},
"domain": {
"description": "Domain to monitor (e.g., example.com)",
"type": "string"
},
"enabled": {
"default": true,
"description": "Whether the target is active",
"type": "boolean"
}
},
"required": [
"domain"
],
"type": "object"
}