diff --git a/docs/parsers/dig.md b/docs/parsers/dig.md index a421e747..0b6ec4c8 100644 --- a/docs/parsers/dig.md +++ b/docs/parsers/dig.md @@ -353,6 +353,15 @@ Returns: "answer_num": integer, "authority_num": integer, "additional_num": integer, + "axfr": [ + { + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string + } + ], "question": { "name": string, "class": string, @@ -380,6 +389,7 @@ Returns: "server": string, "when": string, "rcvd": integer + "size": string } ] diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index b0b39871..d54d6dc8 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -361,6 +361,15 @@ def process(proc_data): "answer_num": integer, "authority_num": integer, "additional_num": integer, + "axfr": [ + { + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string + } + ], "question": { "name": string, "class": string, @@ -388,6 +397,7 @@ def process(proc_data): "server": string, "when": string, "rcvd": integer + "size": string } ] """