get_submission_http
Retrieve HTTP requests and network packets from a malware analysis submission to examine communication patterns and identify malicious activity.
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-534 (handler)Handler function decorated with @app.tool, implementing the get_submission_http tool by fetching HTTP data from the ThreatZone API for a given submission UUID.@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")