Added more comments and thoughts

This commit is contained in:
Dionysus 2024-03-23 15:31:15 -04:00
parent 20ee3fcb0f
commit c6204be8e1
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 2 additions and 1 deletions

View File

@ -85,7 +85,7 @@ async def process_data(file_path: str):
# Skip comments but detect AXFR transfers to change the source)
if line.startswith(';'):
if 'DiG' in line and 'AXFR' in line:
if 'DiG' in line and 'AXFR' in line: # Do we need to worry about case sensitivity? How can we store the nameserver aswell?
source = 'axfr'
continue
@ -201,4 +201,5 @@ Input:
Notes:
How do we want to handle hashed NSEC3 records? Do we ignest them as they are, or crack the NSEC3 hashes first and ingest?
Can an AXFR transfer return data out of order? If so, how do we handle that?
'''