baoSOC/config.py
2024-06-21 17:13:51 +02:00

20 lines
381 B
Python

#!/usr/bin/venv python
# -*- coding: utf-8 -*-
VT_ATTRIBUTES_MAPPING = {
'asn': 'str',
'as_owner': 'int',
'continent': 'str',
'country': 'str',
'last_analysis_date': 'date',
'regional_internet_registry': 'str',
'network': 'str',
'ip': 'str'
}
DNS_QUERIES_TYPE = {
'A': 'address',
'MX': ['exchange', 'preference'],
'TXT': 'strings',
}