get_submission_dns
Retrieve DNS queries associated with a specific malware analysis submission to analyze network activity and identify potential threats.
Instructions
Get all DNS queries 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:514-522 (handler)The handler function implementing the 'get_submission_dns' MCP tool. It fetches DNS queries for a submission by its UUID using the ThreatZone API client.@app.tool async def get_submission_dns(uuid: str) -> Dict[str, Any]: """ Get all DNS queries for a specific submission. Args: uuid: Submission UUID """ return await get_client().get(f"/public-api/get/submission/{uuid}/dns")