Domain Diagnostics
FunctionalPublic domain data only. Not connected to customer account or CRM records.
Enter with or without https:// — all tools strip and re-apply the scheme as needed.
DNS Records
Live · Google DoHFetches real-time DNS records via dns.google/resolve (Google DNS-over-HTTPS). Results are live — no caching, no placeholder data.
SSL Certificate
Live · TLS handshakePerforms a real TLS handshake via a server-side proxy and reads the certificate directly. Shows issuer, expiry, SANs, and protocol — no third-party API, no polling delay.
Force-HTTPS Redirect Generator
Client-sideSelect the hosting type that matches the customer's server. Code updates instantly from the domain above.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(www\.)?example.com$ [NC]
RewriteRule ^(.*)$ https://example.com/$1 [L,R=301]
</IfModule><configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to https for example.com" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
<add input="{HTTP_HOST}" pattern="^(www.)?example.com$" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://example.com/{R:0}" redirectType="Permanent" />
</rule>
<rule name="Main Rule for example.com">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<add input="{HTTP_HOST}" pattern="^(www.)?example.com$" ignoreCase="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:0}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>define( 'WP_HOME', 'https://example.com' );
define( 'WP_SITEURL', 'https://example.com' );
define( 'FORCE_SSL_ADMIN', true );Paste into the customer's file on their server — this generates the code only, it does not edit any files.
CMS / Tech Detection
HTML + DNSAttempts to fetch the site's real HTML via a public CORS proxy to fingerprint the platform, then cross-checks DNS TXT/NS records. Only reports what is actually found — no guessing. If the proxy is blocked, falls back to DNS signals only.
Website Snapshot Preview
Live in-hubEnter a domain above to load a live screenshot.
Hosting / IP Info
Live · ipwho.isResolves the domain's A record, then queries ipwho.is (CORS-enabled) for hosting org, ASN, and country. Falls back to raw IP + external lookup if the enrichment call fails.
External Tools
Opens new tabPre-filled with the domain above at click time.
Full page SSL scan with mixed content detection
Blacklist status, malware, and security headers
Full certificate chain, protocol, and cipher grading
Opens pre-filled in new tab — no inline fetching (avoids browser lag)