Enrichment

{% if enrichment.whois %}

WHOIS

{% for k, v in enrichment.whois.items() %} {% endfor %}
Field Value
{{ k.replace('_', ' ').title() }} {{ v }}
{% 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() %} {% endfor %}
{{ key.replace('_', ' ').title() }} {{ val }}
{% 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