Skip to content
https://manuelferrara.com

Infrastructure

· 17 checks — DNS, redirects, IPv6, crawlability, URL variants, and domain intelligence rolled into one auditable list.
SCORE
80
GRADE
B
FIX
1
REVIEW
9
PASS
7
INFO
0
Probed from Madrid, Spain
302 Found
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/1 IPs match cert SAN
REVIEW
0/1 IPs match cert SAN
Info::
PTR lookup failed for 216.18.168.47: lookup 216.18.168.47: 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
Multi-Resolver DNS Speed
Action
Mean 101ms across 3 resolvers (spread 274ms)
REVIEW
Mean 101ms across 3 resolvers (spread 274ms)
Info::
Quad9: 0ms
Got: 0ms via 9.9.9.9:53
Info::
Google: 31ms
Got: 31ms via 8.8.8.8:53
Info::
Cloudflare: 274ms
Got: 274ms via 1.1.1.1:53
Info::
High latency spread between resolvers: 274ms (min 0ms / max 274ms)
Wide gap between the fastest and slowest public resolver suggests a geographic anycast issue or an authoritative-server cache problem. Users in different regions will see materially different DNS times.
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: 5182 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 5182 B Sitemaps referenced 0 User-agents Blocking No — crawling allowed
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ManuelFerrara.com - Age Verification</title>
    <link rel="stylesheet" href="styles.css">
    <style>
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            box-sizing: border-box;
        }
        .header {
            width: 100%;
            max-width: 100%;
            height: auto;
        }
        .container {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 75%;
            max-width: 1200px;
            text-align: left;
            position: absolute;
            bottom: 25%;
            left: 50%;
            transform: translateX(-50%);
        }
        .footer-container {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            width: 75%;
            max-width: 1200px;
            text-align: center;
            margin-bottom: 5px;
        }
        .footer-container a {
            color: #000;
            text-decoration: underline;
            margin: 0 5px;
        }
        .footer-container a:hover {
            text-decoration: underline;
        }
        h1 {
            font-size: 24px;
            color: #000;
            text-align: center;
        }
        p {
            font-size: 16px;
            margin: 10px 0;
        }
        .cta-button {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 16px;
            color: #fff;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .cta-button:hover {
            opacity: 0.9;
        }
        .cta-button.verify-age {
            background-color: #28a745;
        }
        .cta-button.current-members {
            background-color: #fd7e14;
        }
        .button-group {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .container {
                position: relative;
                margin-top: 10px;
                width: 95%;
            }
            body {
                overflow-x: hidden;
            }
        }
        @media (min-width: 769px) {
            .container {
                position: absolute;
                bottom: 25%;
                left: 50%;
                transform: translateX(-50%);
            }
        }
    </style>
	
	    <script>
        document.addEventListener("DOMContentLoaded", function () {
            const yearSpan = document.getElementById("current-year");
            yearSpan.textContent = new Date().getFullYear();
        });
    </script>
	
</head>
<body>
    <img src="pg_mf_header.jpg" alt="Header" class="header">
    <div class="container">
        <h1>Age Verification Required</h1>
        <p>Welcome to <strong>ManuelFerrara.com</strong>!</p>
        <p>You’ve been redirected here because your location requires age verification to access adult content on our site.</p>
        <p>To comply with local regulations and ensure a safe browsing experience, we must confirm that you are at least 18 years old (or the age of majority in your jurisdiction).</p>
        <p><strong>What Happens Next?</strong></p>
        <ul>
            <li>You will be prompted to complete a quick and secure age verification process.</li>
            <li>Once verified, you’ll have unrestricted access to all content on <strong>ManuelFerrara.com</strong>.</li>
        </ul>
        <p>We appreciate your understanding and cooperation in helping us comply with local laws.</p>
        <div class="button-group">
            <a href="https://enter.manuelferrara.com/signup/signup.php?nats=MC4wLjcuMTYuMC4wLjAuMC4w&step=2" class="cta-button verify-age">Verify Age</a>
            <a href="https://www.manuelferrara.com/verifymyage/" class="cta-button current-members">Current Members</a>
        </div>
    </div>
    <div class="footer-container">
        For billing inquiries, customer support or to cancel your membership, please visit: 
        <a href="#">Support</a> | <a href="#">Contact Us</a> | <a href="#">Terms</a> | <a href="#">Privacy Policy</a> | <a href="#">Report Content</a> | <a href="#">Webmasters</a>
		<br>
		<a href="https://www.manuelferrara.com/2257.html">18 U.S.C. 2257 Record-Keeping Requirements Compliance Statement</a>
		<br>
		Copyright © 2006 - <span id="current-year">2025</span> ManuelFerrara.com, All Rights Reserved
    </div>
</body>
</html>
sitemap.xml 200 OK
Type URL Set URLs 0 entries Valid XML No
B
TLS Certificate Expiry & Recommendations
176 days until leaf cert expires — 3 issues to address
REVIEW

Certificate validity

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

Recommended actions

  • 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
1 A records, 43 ms lookup
PASS
1 A records, 43 ms lookup
Info::
Resolves to 1 IPv4 address(es)
Got: 216.18.168.47
Info::
Single A record — no DNS redundancy
Multiple A records provide failover if one server goes down.
Info::
No IPv6 (AAAA) records
Info::
2 nameserver(s) configured
Got: ns1.reflected.net, ns0.reflected.net
Info::
1 mail exchanger(s) configured
Info::
No SPF record found in TXT records
SPF helps prevent email spoofing. Add a TXT record starting with 'v=spf1'.
Info::
DNS resolution time: 43 ms
Got: 43 ms
A216.18.168.47
AAAA
CNAME
NSns1.reflected.net, ns0.reflected.net
MX
10 mail.manuelferrara.com
TXT
CAALookup not available with standard resolver
Resolved in 43 ms

Multiple A records provide failover if one server goes down.

Why this matters

Single A record means a single point of failure — if that IP goes down, your site is unreachable until DNS TTL expires.

Learn more

Add multiple A records for round-robin failover, or use a managed DNS provider with health-checked failover (Route 53, Cloudflare, NS1). Short TTL (60-300s) lets clients recover faster on outages.

Source: SRE practice / DNS architecture

SPF helps prevent email spoofing. Add a TXT record starting with 'v=spf1'.

Why this matters

Without SPF, receiving servers can't validate sending IPs — your domain is easier to spoof in phishing.

Learn more

SPF complements DMARC. Both should be published. SPF records list authorized sending IPs (e.g., `v=spf1 include:_spf.google.com ~all` for Google Workspace). After publishing, verify in Google Postmaster Tools or mxtoolbox.

Source: RFC 7208 (SPF)

A+
Subdomain Takeover
No subdomain takeover risk detected
PASS
No subdomain takeover risk detected
Info::
No CNAME record present
A
Redirect Chain
1 redirect(s), 376 ms total
PASS
1 redirect(s), 376 ms total
Info::
Single redirect
Got: https://manuelferrara.com → https://www.manuelferrara.com/trial_pg/ (302)
Info::
WWW normalization redirect
Info::
Uses 302 (temporary) redirect
If permanent, use 301 instead.
Got: https://manuelferrara.com

https://manuelferrara.com

79 ms · HTTP/1.1

302

https://www.manuelferrara.com/trial_pg/

298 ms · HTTP/1.1 FINAL

#URLStatusTimeProtocolServer
1https://manuelferrara.com30279 msHTTP/1.1
2https://www.manuelferrara.com/trial_pg/200298 msHTTP/1.1Apache/2.4.66 (Debian)

See the visual redirect chain in the HTTP Probe tab →

If permanent, use 301 instead.

Why this matters

302 (Found) is for genuinely temporary redirects — if this redirect is permanent, switch to 301 to preserve SEO equity.

Learn more

Search engines treat 302 as temporary, keeping the original URL indexed and not transferring full link equity to the destination. Use 301 (Moved Permanently) for permanent redirects (HTTP→HTTPS, www-vs-non-www, URL restructures).

Source: Google Search Central

A+
URL Variants
www/non-www, trailing slash, HTTP→HTTPS
PASS
www/non-www, trailing slash, HTTP→HTTPS
Info::
www/non-www redirect configured correctly (preferred: non-www)
Info::
HTTP correctly 301-redirects to HTTPS

www / non-www

302https://www.manuelferrara.com/
200https://manuelferrara.com/

Preferred variant: non-www

HTTP → HTTPS

301http://manuelferrara.com/ https://manuelferrara.com/

Consistent

A+
Domain Intelligence
manuelferrara.com — via Register.com - Network Solutions, LLC, 23 years, 6 months old, hosted on REFLECTED - Reflected Networks, Inc., US
PASS
manuelferrara.com — via Register.com - Network Solutions, LLC, 23 years, 6 months old, hosted on REFLECTED - Reflected Networks, Inc., US
Info::
Domain registered until Apr 25, 2027 (9 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: Register.com - Network Solutions, LLC
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: REFLECTED - Reflected Networks, Inc., US
Got: AS29789
Domain expiry

284 days

April 25, 2027

SSL certificate

176 days

Issued by Sectigo Limited

Domain age

23 years, 6 months

Registered April 25, 2003

DNSSEC

Not enabled

Protects against DNS spoofing

Hosting

REFLECTED - Reflected Networks, Inc., US

ASN AS29789

216.18.168.47

Registrar

Register.com - Network Solutions, LLC

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 Register.com - Network Solutions, LLC
Created April 25, 2003 (23 years, 6 months ago)
Expires April 25, 2027 (9 months)
Last Updated March 26, 2026
Name Servers ns0.reflected.net, ns1.reflected.net
DNSSEC Not enabled
Hosting
IP Address 216.18.168.47
ASN AS29789 (REFLECTED - Reflected Networks, Inc., US)
Provider REFLECTED - Reflected Networks, Inc., US
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 118 ms — DNS, TCP, TLS, TTFB, content transfer breakdown
PASS
DNS Lookup DNS Lookup — time to resolve the domain name to an IP address.
40 ms
TCP Connect TCP Connect — time to establish a TCP connection to the server.
25 ms
TLS Handshake TLS Handshake — time to complete the HTTPS encryption handshake.
28 ms
Time to First Byte Time to First Byte — how long the server takes to respond with the first byte of data.
118 ms
Total Time Total request time from DNS lookup through full response.
118 ms

Connection waterfall

DNS Lookup 40 ms TCP Connect 25 ms TLS Handshake 28 ms Server Processing 26 ms Content Transfer 0 ms
A+
Health Check Endpoint
Health endpoint at https://manuelferrara.com/health (HTTP 200)
PASS
Health endpoint at https://manuelferrara.com/health (HTTP 200)
Info::
Public health endpoint at https://manuelferrara.com/health
Got: https://manuelferrara.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