2024-03-06 02:40:34 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Elasticsearch Recon Ingestion Scripts (ERIS) - Developed by Acidvegas (https://git.acid.vegas/eris)
|
|
|
|
# ingest_massdns.py
|
|
|
|
|
|
|
|
import time
|
|
|
|
|
|
|
|
default_index = 'ptr-records'
|
|
|
|
|
|
|
|
def construct_map() -> dict:
|
|
|
|
'''Construct the Elasticsearch index mapping for MassDNS records'''
|
|
|
|
|
|
|
|
keyword_mapping = { 'type': 'text', 'fields': { 'keyword': { 'type': 'keyword', 'ignore_above': 256 } } }
|
|
|
|
|
|
|
|
mapping = {
|
|
|
|
'mappings': {
|
|
|
|
'properties': {
|
|
|
|
'ip': { 'type': 'ip' },
|
|
|
|
'name': { 'type': 'keyword' },
|
|
|
|
'record': keyword_mapping,
|
|
|
|
'seen': { 'type': 'date' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mapping
|
|
|
|
|
|
|
|
|
2024-03-06 03:19:11 +00:00
|
|
|
def process_file(file_path: str):
|
2024-03-06 02:40:34 +00:00
|
|
|
'''
|
|
|
|
Read and process Massdns records from the log file.
|
|
|
|
|
|
|
|
:param file_path: Path to the Massdns log file
|
|
|
|
'''
|
|
|
|
|
2024-03-06 03:19:11 +00:00
|
|
|
with open(file_path, 'r') as file:
|
|
|
|
for line in file:
|
2024-03-06 02:40:34 +00:00
|
|
|
line = line.strip()
|
|
|
|
|
|
|
|
if not line:
|
|
|
|
continue
|
|
|
|
|
|
|
|
parts = line.split()
|
|
|
|
|
|
|
|
if len(parts) < 3:
|
|
|
|
raise ValueError(f'Invalid PTR record: {line}')
|
|
|
|
|
|
|
|
name, record_type, data = parts[0].rstrip('.'), parts[1], ' '.join(parts[2:]).rstrip('.')
|
|
|
|
|
|
|
|
if record_type != 'PTR':
|
|
|
|
continue
|
|
|
|
|
|
|
|
#if record_type == 'CNAME':
|
|
|
|
# if data.endswith('.in-addr.arpa'):
|
|
|
|
# continue
|
|
|
|
|
|
|
|
# Let's not index the PTR record if it's the same as the in-addr.arpa domain
|
|
|
|
if data == name:
|
|
|
|
continue
|
|
|
|
|
|
|
|
ip = '.'.join(name.replace('.in-addr.arpa', '').split('.')[::-1])
|
|
|
|
|
|
|
|
struct = {
|
|
|
|
'ip': ip,
|
|
|
|
'record': data,
|
|
|
|
'seen': time.strftime('%Y-%m-%dT%H:%M:%SZ', time.gmtime())
|
|
|
|
}
|
|
|
|
|
2024-03-06 03:19:11 +00:00
|
|
|
yield struct
|
2024-03-06 02:40:34 +00:00
|
|
|
|
|
|
|
return None # EOF
|
|
|
|
|
|
|
|
|
|
|
|
'''
|
|
|
|
Example PTR record:
|
|
|
|
0.6.229.47.in-addr.arpa. PTR 047-229-006-000.res.spectrum.com.
|
|
|
|
0.6.228.75.in-addr.arpa. PTR 0.sub-75-228-6.myvzw.com.
|
|
|
|
0.6.207.73.in-addr.arpa. PTR c-73-207-6-0.hsd1.ga.comcast.net.
|
|
|
|
0.6.212.173.in-addr.arpa. PTR 173-212-6-0.cpe.surry.net.
|
|
|
|
0.6.201.133.in-addr.arpa. PTR flh2-133-201-6-0.tky.mesh.ad.jp.
|
|
|
|
|
|
|
|
Will be indexed as:
|
|
|
|
{
|
|
|
|
"ip": "47.229.6.0",
|
|
|
|
"record": "047-229-006-000.res.spectrum.com.",
|
|
|
|
"seen": "2021-06-30T18:31:00Z"
|
|
|
|
}
|
|
|
|
'''
|