Skip to content
https://pornbox.com

Infrastructure

· 17 checks — DNS, redirects, IPv6, crawlability, URL variants, and domain intelligence rolled into one auditable list.
SCORE
83
GRADE
B
FIX
1
REVIEW
9
PASS
7
INFO
0
Probed from Madrid, Spain
200 OK
Checks
17
7 PASS 9 REVIEW 1 FIX
D
CDN & Delivery
Action
No CDN detected
FIX
No CDN detected
Warning::
No CDN detected
A CDN can significantly improve load times for users around the world by caching content at edge nodes closer to them.
No CDN detected

Consider using a CDN to improve global delivery speed and reduce origin load.

B
DNSSEC
Unsigned (DNSSEC not deployed)
REVIEW
Unsigned (DNSSEC not deployed)
Info::
DNSSEC is not deployed
The zone is not DNSSEC-signed. Users on validating resolvers (Cloudflare 1.1.1.1, Quad9 9.9.9.9, growing default in mobile resolvers) get no protection against DNS spoofing for this domain. Most registrars now offer DNSSEC at a single click; consider enabling it for sites where authenticity matters (banking, healthcare, government).
B
CAA Records
No CAA records (any CA may issue certificates)
REVIEW
No CAA records (any CA may issue certificates)
Info::
No CAA records published
Without CAA records, any publicly-trusted CA can issue certificates for this domain. Adding a CAA record (`yourdomain. IN CAA 0 issue "letsencrypt.org"`) restricts issuance to CAs you authorize. Required by CAB Forum baseline since 2017; the default of 'any CA' is widely supported but is the broader attack surface for issuance fraud.
C
Reverse DNS
Action
0/3 IPs match cert SAN
REVIEW
0/3 IPs match cert SAN
Info::
PTR lookup failed for 185.120.70.214: lookup 185.120.70.214: no such host
No reverse DNS record set for this IP. Common on bare cloud-VM IPs without provider-side PTR; not a security issue.
Info::
PTR lookup failed for 185.120.70.198: lookup 185.120.70.198: no such host
No reverse DNS record set for this IP. Common on bare cloud-VM IPs without provider-side PTR; not a security issue.
Info::
PTR lookup failed for 185.120.68.182: lookup 185.120.68.182: no such host
No reverse DNS record set for this IP. Common on bare cloud-VM IPs without provider-side PTR; not a security issue.
C
IPv6 Readiness
Action
No IPv6 support
REVIEW
No IPv6 support
Info::
No IPv6 (AAAA) records found
IPv6 support is increasingly important for global accessibility. About 40% of internet users have IPv6 connectivity.
No IPv6 Support
About 40% of internet users have IPv6. Consider adding AAAA records.

IPv6 support is increasingly important for global accessibility. About 40% of internet users have IPv6 connectivity.

Why this matters

No AAAA records — same impact as 'no IPv6 (AAAA) records'; IPv6-preferring clients pay extra latency falling back to IPv4.

Source: Google IPv6 stats

C
Crawlability
Action
robots.txt present, sitemap with 0 URLs
REVIEW
robots.txt present, sitemap with 0 URLs
Info::
robots.txt is present
Got: 3496 bytes
Info::
sitemap.xml is present
Warning::
sitemap.xml contains invalid XML
Search engines may not be able to parse the sitemap. Fix XML validation errors.
Warning::
sitemap.xml is empty — no URLs found
An empty sitemap provides no value. Add <url> entries for your pages.
Info::
robots.txt does not reference a sitemap
Add a 'Sitemap:' directive to robots.txt so search engines can discover your sitemap.

Search engines may not be able to parse the sitemap. Fix XML validation errors.

Why this matters

An unparseable sitemap is silently ignored by Google — the URLs it advertises are never queued for crawl.

Learn more

Google's sitemap parser is strict about XML validity. A single unescaped `&` or unclosed tag invalidates the whole file. Run your sitemap through a validator (Search Console's Sitemaps report flags it) and fix the offending entry. Most generators escape correctly; mistakes usually come from manually-written entries.

Source: sitemaps.org / Google Search Central

An empty sitemap provides no value. Add <url> entries for your pages.

Why this matters

An empty sitemap signals 'no content to index' to Google — actively harmful versus having no sitemap at all.

Learn more

Google compares URLs in the sitemap against URLs it has crawled. An empty sitemap on a site with thousands of pages signals abandonment. Either populate it correctly (most CMSes auto-generate) or delete the file and let Google crawl normally.

Source: Google Search Central / sitemaps.org

Add a 'Sitemap:' directive to robots.txt so search engines can discover your sitemap.

Why this matters

robots.txt omits Sitemap: directive — crawlers must fetch /sitemap.xml by convention; reliable but missing the explicit hint.

Source: sitemaps.org

robots.txt 200 OK
Size 3496 B Sitemaps referenced 0 User-agents Blocking No — crawling allowed
<!DOCTYPE html><html><head><meta name="google-site-verification" content="4ck7cD3_ni8Pkyz8ao9GRCqOpF5UYKFibJrXTNKho70"><script>var browserPinError = 'BROWSER_PIN_ERROR';
var maxReloadTimes = 4;
function reload() {
  document.location.reload(true);
}

function onError(e) {
  var reloadedTimes = getKey(browserPinError) || 1;
  if (reloadedTimes <= maxReloadTimes) {
    var reloadAfterMs = Math.pow(2, reloadedTimes) * 1000;
    setTimeout(function() {
      setKey(browserPinError, ++reloadedTimes, 60000);
      reload();
    }, reloadAfterMs);
  } else {
    cookieErrorMessage();
  }
}

function onLoad() {
  if (!true || navigator.cookieEnabled) {
    check();
    setTimeout(reload, 15000);
  } else {
    cookieErrorMessage();
  }
}

function check() {
  if (/JDIALOG3/.test(document.cookie)) {
    removeKey(browserPinError);
    reload();
  } else {
    setTimeout(check, 100);
  }
}

function cookieErrorMessage() {
  document.addEventListener('DOMContentLoaded', function () {
    errorMessage('Cookies Required', 'Cookies are not enabled on your browser.\n' +
      'Please enable cookies in your browser preferences and refresh this page.');
  });
}

function errorMessage(title, text) {
    var box = document.querySelector(".cookie-error-box"),
        titleBox = document.querySelector(".cookie-error-box__title"),
        textBox = document.querySelector(".cookie-error-box__body"),
        loadingImg = document.querySelector(".loading");
        
    titleBox.textContent = title;
    textBox.textContent = text;
    loadingImg.style.display = 'none';
    box.style.display = 'block';
}

function setKey(key, value, ttl) {
  try {
    var now = new Date()
    
    // `item` is an object which contains the original value
    // as well as the time when it's supposed to expire
    var item = {
      value: value,
      expiry: now.getTime() + ttl,
    }
    localStorage.setItem(key, JSON.stringify(item))
  } catch (e) {}
}

function getKey(key) {
  try {
    var itemStr = localStorage.getItem(key)
    // if the item doesn't exist, return null
    if (!itemStr) {
      return null
    }
    var item = JSON.parse(itemStr)
    var now = new Date()
    // compare the expiry time of the item with the current time
    if (now.getTime() > item.expiry) {
      // If the item is expired, delete the item from storage
      // and return null
      localStorage.removeItem(key)
      return null
    }
    return item.value
  } catch (e) {
    return null;
  }
}

function removeKey(key) {
  try {
    localStorage.removeItem(key);
  } catch (e) {}
}</script><script type="text/javascript" src="https://account.analvids.com/jdialog/box/1.js" onload="onLoad()" onerror="onError()"></script><style>body {
  background: #fff;
  font-family: Helvetica, Arial, sans-serif;
}

.loading {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -160px;
  margin-top: -152px;
  width: 320px;
  height: auto;
}

.cookie-error-box {
  display: none;
  width: 50%;
  margin: auto;
  padding: 15px;
  text-align: center;
  background-color: #ffebe8;
  border: 1px solid #dd3c10;
  font-size: 14px;
}

.cookie-error-box__title {
  font-weight: bold;
}</style></head><body><img src="/images/loading.gif" class="loading"><div class="cookie-error-box"><div class="cookie-error-box__title">Cookies Required</div><div class="cookie-error-box__body">Cookies are not enabled on your browser.
Please enable cookies in your browser preferences and refresh this page.</div></div></body></html>
sitemap.xml 200 OK
Type URL Set URLs 0 entries Valid XML No
B
URL Variants
www/non-www, trailing slash, HTTP→HTTPS
REVIEW
www/non-www, trailing slash, HTTP→HTTPS
Critical::
Both www and non-www versions serve content
Got: Both variants return 200 Expected: One variant 301-redirects to the other
Info::
HTTP correctly 301-redirects to HTTPS

www / non-www

200https://www.pornbox.com/
200https://pornbox.com/

Inconsistent — duplicate content risk

HTTP → HTTPS

301http://pornbox.com/ https://pornbox.com/

Consistent

B
TLS Certificate Expiry & Recommendations
36 days until leaf cert expires — 4 issues to address
REVIEW

Certificate validity

36
days left
0d 30d 60d 90d+

Recommended actions

  • Prefer TLS 1.3 — TLS 1.2 is acceptable but TLS 1.3 removes RSA key exchange and improves latency
  • Enable HSTS: Strict-Transport-Security: max-age=31536000; includeSubDomains
  • Enable DNSSEC on your domain for DNS spoofing protection
  • Enable OCSP stapling on your TLS server to remove a CA roundtrip and protect user privacy
B
CDN Cache Observability
No CDN cache-status headers in the response
REVIEW
No CDN cache-status headers in the response
Info::
No CDN cache-status headers in the response
Without an X-Cache / CF-Cache-Status / X-Vercel-Cache / Age header, you can't tell from outside whether a request hit the cache or went to origin. Operationally important: enables debugging stale-content reports and verifying cache rules. Most managed CDN platforms emit at least one of these by default; absence often means the platform's diagnostic headers are stripped at an upstream proxy.
B
Operational Status Page
No status page link detected
REVIEW
No status page link detected
Info::
No operational status page link detected
Status pages communicate planned maintenance and incidents to users -- a hallmark of operationally-mature services. Most SaaS teams publish one via Atlassian Statuspage, Instatus, BetterUptime, or a self-hosted Cachet. Smaller sites legitimately don't need one; flagged as Info, not a failure.
A+
DNS Records
3 A records, 36 ms lookup
PASS
3 A records, 36 ms lookup
Info::
Resolves to 3 IPv4 address(es)
Got: 185.120.70.214, 185.120.70.198, 185.120.68.182
Info::
No IPv6 (AAAA) records
Info::
2 nameserver(s) configured
Got: emerie.ns.cloudflare.com, otto.ns.cloudflare.com
Info::
2 mail exchanger(s) configured
Info::
SPF record present in TXT
Info::
DNS resolution time: 36 ms
Got: 36 ms
A185.120.70.214, 185.120.70.198, 185.120.68.182
AAAA
CNAME
NSemerie.ns.cloudflare.com, otto.ns.cloudflare.com
MX
100 mx-1.cloudevelops.com
200 mx-2.cloudevelops.com
TXT
27d60svgfxg6pcjvf9p6nfshmq58416g
SPF v=spf1 a mx include:mail.zendesk.com ip4:185.120.68.0/22 -all
CAALookup not available with standard resolver
Resolved in 36 ms
A+
Subdomain Takeover
No subdomain takeover risk detected
PASS
No subdomain takeover risk detected
Info::
No CNAME record present
A+
Multi-Resolver DNS Speed
Mean 37ms across 3 resolvers (spread 37ms)
PASS
Mean 37ms across 3 resolvers (spread 37ms)
Info::
Cloudflare: 21ms
Got: 21ms via 1.1.1.1:53
Info::
Google: 34ms
Got: 34ms via 8.8.8.8:53
Info::
Quad9: 58ms
Got: 58ms via 9.9.9.9:53
A+
Redirect Chain
No redirects — direct access
PASS
No redirects — direct access
Info::
No redirects — direct access
Got: https://pornbox.com

https://pornbox.com

173 ms · HTTP/1.1 FINAL

#URLStatusTimeProtocolServer
1https://pornbox.com200173 msHTTP/1.1nginx
A+
Domain Intelligence
pornbox.com — via Instra Corporation Pty Ltd., 22 years, 7 months old, hosted on cloudinfrastack - cloudinfrastack, s.r.o., CZ
PASS
pornbox.com — via Instra Corporation Pty Ltd., 22 years, 7 months old, hosted on cloudinfrastack - cloudinfrastack, s.r.o., CZ
Info::
Domain registered until Mar 29, 2027 (8 months remaining)
Info::
DNSSEC is not enabled
DNSSEC protects against DNS spoofing attacks. While not required, enabling DNSSEC adds an additional layer of security. Contact your DNS provider to enable it.
Info::
Registrar: Instra Corporation Pty Ltd.
Warning::
Registrar lock is NOT enabled
The domain can be transferred without an unlock step. Enable registrar lock (clientTransferProhibited) in your registrar's control panel to protect against unauthorized or accidental transfers.
Info::
Hosting: cloudinfrastack - cloudinfrastack, s.r.o., CZ
Got: AS8646
Domain expiry

260 days

March 29, 2027

SSL certificate

36 days

Issued by Let's Encrypt

Domain age

22 years, 7 months

Registered March 29, 2004

DNSSEC

Not enabled

Protects against DNS spoofing

Hosting

cloudinfrastack - cloudinfrastack, s.r.o., CZ

ASN AS8646

185.120.70.198

Registrar

Instra Corporation Pty Ltd.

Unlocked 2 NS records
Expiry timeline
Today
+1 year
Domain expiry SSL expiry Danger zone (≤30 days)
Recommended actions
  • Enable DNSSEC to protect visitors from DNS spoofing
  • Enable registrar lock (clientTransferProhibited) to block unauthorized domain transfers
Registrar Instra Corporation Pty Ltd.
Created March 29, 2004 (22 years, 7 months ago)
Expires March 29, 2027 (8 months)
Last Updated March 13, 2026
Name Servers emerie.ns.cloudflare.com, otto.ns.cloudflare.com
DNSSEC Not enabled
Hosting
IP Address 185.120.70.198
ASN AS8646 (cloudinfrastack - cloudinfrastack, s.r.o., CZ)
Provider cloudinfrastack - cloudinfrastack, s.r.o., CZ
Data source: rdap (0.5s)

DNSSEC protects against DNS spoofing attacks. While not required, enabling DNSSEC adds an additional layer of security. Contact your DNS provider to enable it.

Why this matters

Without DNSSEC, an attacker who can poison your DNS can hijack your domain — and SSL certs alone don't stop them.

Learn more

DNSSEC adds cryptographic signatures to DNS records, preventing forged responses from poisoning resolver caches. Without it, an attacker who controls the network path can redirect your domain to a malicious server before any HTTPS handshake happens. Most modern registrars (Cloudflare, Google Domains, Route 53) enable it with one toggle.

Source: ICANN / RFC 4033

The domain can be transferred without an unlock step. Enable registrar lock (clientTransferProhibited) in your registrar's control panel to protect against unauthorized or accidental transfers.

Why this matters

Without registrar lock, an attacker who phishes your registrar credentials can transfer the domain in minutes — total brand hijack.

Learn more

Registrar lock (clientTransferProhibited, clientUpdateProhibited, clientDeleteProhibited) requires extra verification before any transfer/update/delete. Every major registrar offers it free. Combined with 2FA on your registrar account, it's the strongest defense against domain hijacking.

Source: ICANN / domain-security best practice

A+
HTTP Probe Timing
Total 192 ms — DNS, TCP, TLS, TTFB, content transfer breakdown
PASS
DNS Lookup DNS Lookup — time to resolve the domain name to an IP address.
29 ms
TCP Connect TCP Connect — time to establish a TCP connection to the server.
35 ms
TLS Handshake TLS Handshake — time to complete the HTTPS encryption handshake.
82 ms
Time to First Byte Time to First Byte — how long the server takes to respond with the first byte of data.
192 ms
Total Time Total request time from DNS lookup through full response.
192 ms

Connection waterfall

DNS Lookup 29 ms TCP Connect 35 ms TLS Handshake 82 ms Server Processing 46 ms Content Transfer 0 ms
A+
Health Check Endpoint
Health endpoint at https://pornbox.com/health (HTTP 200)
PASS
Health endpoint at https://pornbox.com/health (HTTP 200)
Info::
Public health endpoint at https://pornbox.com/health
Got: https://pornbox.com/health
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback