get_submission_http
Retrieve HTTP requests and network packets associated with a specific malware analysis submission to analyze communication patterns and network behavior.
Instructions
Get all HTTP requests and packets for a specific submission.
Args: uuid: Submission UUID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes |
Implementation Reference
- src/threatzone_mcp/server.py:525-533 (handler)Handler function decorated with @app.tool, which registers and implements the 'get_submission_http' MCP tool. It fetches HTTP requests/packets for a given submission UUID from the ThreatZone API using the API client.@app.tool async def get_submission_http(uuid: str) -> Dict[str, Any]: """ Get all HTTP requests and packets for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/http")