Enrichment
{% if enrichment.whois %}
WHOIS
| Field |
Value |
{% for k, v in enrichment.whois.items() %}
| {{ k.replace('_', ' ').title() }} |
{{ v }} |
{% endfor %}
{% endif %}
{% if enrichment.raw_whois %}
Raw WHOIS
{{ enrichment.raw_whois }}
{% endif %}
{% if enrichment.geoip %}
GeoIP
{% for ip, info in enrichment.geoip.items() %}
{{ ip }} -
{% if info.country %} {{ info.country }} {% endif %} -
{% if info.isp %} {{ info.isp }} {% endif %}
{% for key, val in info.items() %}
| {{ key.replace('_', ' ').title() }} |
{{ val }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if not enrichment.whois and not enrichment.raw_whois and not enrichment.geoip and not enrichment.bec_words %}
No enrichment data available.
{% endif %}
Back to top