search_traffic
Search captured HTTP traffic by keyword, domain, method, or status code to find specific requests.
Instructions
Search captured traffic by keyword, domain, HTTP method, or status code.
PREREQUISITE: Proxy must be running and have captured traffic.
Use this instead of get_traffic_summary when you need to find specific requests. All filters are optional and can be combined (AND logic).
Examples:
search_traffic(query="password") — find flows containing "password" in URL or body
search_traffic(domain="api.target.com", method="POST") — find all POSTs to the API
search_traffic(status_code=401) — find unauthorized responses
Args: query: Keyword to search in URL, request body, and response body domain: Filter by exact domain (e.g. "api.target.com") method: Filter by HTTP method: "GET", "POST", "PUT", "DELETE", etc. status_code: Filter by exact response status code (e.g. 200, 401, 500) limit: Maximum results to return (default 50)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| domain | No | ||
| method | No | ||
| status_code | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |