{% extends "layout/base.twig" %} {% set title = 'WHOIS Debug Tool' %} {% set pageTitle = 'WHOIS Debug Tool' %} {% set pageDescription = 'Test and debug WHOIS data extraction' %} {% set pageIcon = 'fas fa-search' %} {% block content %} {% if domain is empty %}

Enter a domain name without http:// or www.

What is this tool?

This debug tool shows you the raw WHOIS data for any domain and how our system parses it. Use it to troubleshoot issues with domain information extraction.

{% else %}
Check Another Domain

Domain

{{ domain }}

WHOIS Server

{{ server }}

TLD

{{ tld }}

Extracted Data (What We Save)

Domain {{ info.domain ?? 'N/A' }}
Registrar {{ info.registrar ?? 'N/A' }}
Expiration Date {{ info.expiration_date ?? 'N/A' }}
Creation Date {{ info.creation_date ?? 'N/A' }}
Updated Date {{ info.updated_date ?? 'N/A' }}
Registrar URL {{ info.registrar_url ?? 'N/A' }}
Abuse Email {{ info.abuse_email ?? 'N/A' }}
Nameservers
{% if info.nameservers is not empty %} {% for ns in info.nameservers %}
{{ ns }}
{% endfor %} {% else %} N/A {% endif %}

All Key-Value Pairs

{% for item in parsedData %} {% if item.value is not empty %} {% endif %} {% endfor %}
Key Value
{{ item.key }} {{ item.value }}

Raw WHOIS Response

{{ response }}
{% endif %} {% endblock %}