analyze_dns_packets
Analyze DNS traffic in PCAP files to extract structured insights about domain queries, responses, and network behavior from local or remote packet captures.
Instructions
Analyze DNS packets from a PCAP file and return comprehensive analysis results.
Args: pcap_file: Path to local PCAP file or HTTP URL to remote PCAP file
Returns: A structured dictionary containing DNS packet analysis results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pcap_file | Yes |
Input Schema (JSON Schema)
{
"properties": {
"pcap_file": {
"title": "Pcap File",
"type": "string"
}
},
"required": [
"pcap_file"
],
"type": "object"
}