get_submission_network_threats
Retrieve network threats detected for a specific malware submission to analyze attack vectors and security risks.
Instructions
Get all network threats 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:558-567 (handler)The handler function for the 'get_submission_network_threats' tool. It is registered via the @app.tool decorator and fetches network threats data from the ThreatZone API for a given submission UUID.@app.tool async def get_submission_network_threats(uuid: str) -> Dict[str, Any]: """ Get all network threats for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/threats")