AXFR detection in zone file input, to determine if the data is form ICANN or an AXFR against a dns (for source tracking)

This commit is contained in:
Dionysus 2024-03-23 14:42:51 -04:00
parent a53541c328
commit 6983b8ebec
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 10 additions and 2 deletions

View File

@ -63,6 +63,9 @@ async def process_data(file_path: str):
# Initialize the cache
last = None
# Default source for the records
source = 'czds'
# Determine the zone name from the file path (e.g., /path/to/zones/com.eu.txt -> com.eu zone)
zone = '.'.join(file_path.split('/')[-1].split('.')[:-1])
@ -76,9 +79,14 @@ async def process_data(file_path: str):
break
# Skip empty lines and comments
if not line or line.startswith(';'):
if not line:
continue
if line.startswith(';'):
if 'DiG' in line and 'AXFR' in line: # Zone transfer from an AXFR request
source = 'axfr'
continue
# Split the line into its parts
parts = line.split()
@ -135,7 +143,7 @@ async def process_data(file_path: str):
'domain' : domain,
'zone' : zone,
'records' : {record_type: [{'data': data, 'ttl': ttl}]},
'source' : 'czds',
'source' : source,
'seen' : time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime()) # Zone files do not contain a timestamp, so we use the current time
},
'doc_as_upsert' : True # This will create the document if it does not exist