get_submission_udp
Retrieve UDP requests and packets for a specific malware analysis submission to analyze network traffic patterns and identify malicious communication.
Instructions
Get all UDP 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:547-555 (handler)The handler function for the 'get_submission_udp' tool. It retrieves UDP requests and packets for a given submission UUID by calling the ThreatZone API endpoint `/public-api/get/submission/{uuid}/udp`. Registered via @app.tool decorator.@app.tool async def get_submission_udp(uuid: str) -> Dict[str, Any]: """ Get all UDP requests and packets for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/udp")