A real A-Grade Playbook, shown in full — this is exactly what you get.
The exact $99 artifact, built by the same generator behind every paid one — here run on example.com so you can see the whole thing: each fix, the precise record to add, where to add it, and the safe order to apply it. Yours is built the same way, from your own domain’s findings.
We practice what we preach — defaults.exposed scores A+. Scan us and check.
Scan your domain →Get yours — $99 per domain
Defaults.Exposed
A-Grade Playbook · example.com
A-Grade Playbook

Your route to an A, one safe step at a time

example.com
D
Today · 65/100
A
Your target
21 of 34 checks already pass.
9 steps stand between you and an A. Each one below is ordered by risk — the safe, no-downside wins come first, and anything that can touch your mail flow comes last and clearly flagged.
Measured by the same engine that graded 275,666,275 domains in the Defaults.Exposed census · scanned 19 August 2026. Only 1% of .com domains reach an A — this is how you join them.
Every step ends with a one-click re-scan so you can watch your grade move — you are never left wondering whether it worked.
Defaults.Exposed
A-Grade Playbook · example.com
Step 1 of 9

Stop your site being framed (clickjacking)

No-risk change Does not affect mail
1The issue

A one-line instruction that tells browsers not to let other websites secretly load your site inside their own. Without it, a scammer can hide your real, logged-in pages behind a fake page and trick your customers into clicking things they never meant to — approving a payment, changing a password, granting access.

2What this means for your business

A fraudster can invisibly wrap your live website inside a fake one and steal money or account access from your logged-in customers — and to the customer it looks like your site did it. The fix is free and takes a developer about 15 minutes; leaving it off is a known gap that both criminals and cautious buyers can spot in seconds.

3What this means for your customers
  • A scammer hides your real login or payment screen behind a harmless-looking page and tricks a customer into 'confirming' a transfer or a setting change without realising it — the customer blames you, not the attacker.
  • Your logged-in account area gets loaded invisibly on top of a 'You've won — click to claim' page; the click actually approves a real change on the customer's account, and you field the angry support call.
4You're not alone

94.3% of .com domains have this exact gap. Only 5.7% have it in place.

You are fixing something most of your peers have not — and it is measured the same way for every one of them.

5Your current setting
What we found on example.com
No X-Frame-Options header or CSP frame-ancestors directive found.
xFrameOptions = not set
cspFrameAncestors = not set
6The fix

WhereYour web server / CDN response headers

Add exactly this
X-Frame-Options: SAMEORIGIN (its own header — if you'd rather use CSP, add frame-ancestors 'self' to the Content-Security-Policy step instead of setting a second CSP header)

If you need to undo itDelete the header. If your site is embedded elsewhere on purpose, list those origins instead of self.

7Done looks like
curl -sI https://example.com | grep -i x-frame-options
x-frame-options: SAMEORIGIN
8Verify it worked

Re-check — the frame/clickjacking check passes.

Re-scan example.com →

Runs the same engine that graded every domain in the census. Watch this check turn green.

Defaults.Exposed
A-Grade Playbook · example.com
Step 2 of 9

Add the MIME-sniffing header

No-risk change Does not affect mail
1The issue

A one-line header that stops browsers from guessing what a file really is. Without it, a file someone uploads to your site — or a file on your own pages — can be mis-read by the browser and run as code, which is exactly how some attacks turn a harmless-looking upload into a way to steal your customers' sessions.

2What this means for your business

Missing this header is a clear, scannable sign that the basics aren't in place. On its own it rarely takes a site down, but combined with a file-upload form or user-generated content it opens a path for an attacker to run malicious code in your visitors' browsers — hijacking logged-in sessions, stealing card-entry or login details, and putting you on the wrong side of a data-breach conversation. It is one of the cheapest fixes in security: one line, free, about five minutes.

3What this means for your customers
  • Any page where customers or staff can upload files (avatars, documents, support attachments, listing photos) becomes a possible launch-pad for browser-side attacks.
  • An attacker can disguise malicious code as an image or text file and have the visitor's browser run it — stealing their logged-in session on your site.
4You're not alone

92.7% of .com domains have this exact gap. Only 7.3% have it in place.

You are fixing something most of your peers have not — and it is measured the same way for every one of them.

5Your current setting
What we found on example.com
No X-Content-Type-Options header found.
xContentTypeOptions = not set
expectedValue = nosniff
6The fix

WhereYour web server / CDN response headers (Cloudflare: Rules → Transform Rules → Modify Response Header)

Add exactly this
X-Content-Type-Options: nosniff

If you need to undo itDelete the header rule. Nothing depends on it.

7Done looks like
curl -sI https://example.com | grep -i x-content-type-options
x-content-type-options: nosniff
8Verify it worked

Re-check — the x-content-type-options check flips to pass.

Re-scan example.com →

Runs the same engine that graded every domain in the census. Watch this check turn green.

Defaults.Exposed
A-Grade Playbook · example.com
Step 3 of 9

Add a Referrer-Policy header

No-risk change Does not affect mail
1The issue

A Referrer-Policy is a one-line instruction your website hands to every visitor's browser, controlling how much of your web address travels with them when they click a link to another site. Without it, the full address of whatever page they were on — search terms, account numbers, reset links, internal page paths and all — is quietly handed to the next site they land on, including advertisers, analytics firms, and anywhere else a link points.

2What this means for your business

Every time a visitor clicks an outbound link, ad, or shared resource, their browser can hand the full address of your page to the destination — and if your addresses carry search queries, customer IDs, order numbers, or one-time links, you are leaking customer data to third parties you do not control. That is a data-protection problem regulators take seriously, a privacy promise quietly broken, and a graded gap a client's security team will flag during due diligence.

3What this means for your customers
  • A customer fills in a form or runs a search, then clicks an outbound link or ad — and the page address, complete with what they typed, is handed straight to an advertiser or analytics firm you never meant to share it with.
  • Password-reset and account-confirmation links sometimes carry a secret token in the web address; without this header, clicking any link on that page can pass the whole address — token included — to an outside site.
4You're not alone

97% of .com domains have this exact gap. Only 3% have it in place.

You are fixing something most of your peers have not — and it is measured the same way for every one of them.

5Your current setting
What we found on example.com
No Referrer-Policy header found — visitor URLs may leak to third parties.
referrerPolicy = not set
isPermissive = false
6The fix

WhereYour web server / CDN response headers

Add exactly this
Referrer-Policy: strict-origin-when-cross-origin

If you need to undo itDelete the header rule.

7Done looks like
curl -sI https://example.com | grep -i referrer-policy
referrer-policy: strict-origin-when-cross-origin
8Verify it worked

Re-check — referrer-policy passes.

Re-scan example.com →

Runs the same engine that graded every domain in the census. Watch this check turn green.

Defaults.Exposed
A-Grade Playbook · example.com
Step 4 of 9

Turn on HSTS (force HTTPS)

Low risk Does not affect mail
1The issue

HSTS is a one-line instruction your website gives every browser: 'always come back to me over the secure, encrypted connection — never the insecure one.' Without it, your padlock can be quietly stripped away on shared WiFi, and the very first visit to your site is exposed.

2What this means for your business

Having HTTPS (the padlock) is not the same as enforcing it. Without HSTS, an attacker on the same WiFi as your customer can silently downgrade the connection to plain, unencrypted HTTP — capturing logins, card details and form data while the customer sees nothing wrong. Your SSL certificate, which you may be paying for, is bypassed. The fix is free and takes about 15 minutes for whoever runs your site.

3What this means for your customers
  • Customers on cafe, hotel, airport or conference WiFi can have their connection to your site silently downgraded and their data read — with no warning on their screen.
  • You paid for HTTPS and have the padlock, but without HSTS attackers can simply route around it; the certificate gives a false sense of safety.
4You're not alone

80.9% of .com domains have this exact gap. Only 19.1% have it in place.

You are fixing something most of your peers have not — and it is measured the same way for every one of them.

5Your current setting
What we found on example.com
No Strict-Transport-Security header found.
hstsHeader = not set
6The fix

WhereYour web server / CDN response headers

Add exactly this
Strict-Transport-Security: max-age=31536000; includeSubDomains
Watch outOnly enable includeSubDomains once EVERY subdomain serves HTTPS — otherwise a plain-HTTP subdomain becomes unreachable. Start without it if unsure, add it later. Do NOT add `preload` until you are certain.

If you need to undo itLower max-age to 0 and wait out the old value before removing.

7Done looks like
curl -sI https://example.com | grep -i strict-transport
strict-transport-security: max-age=31536000; includeSubDomains
8Verify it worked

Re-check — hsts-header passes.

Re-scan example.com →

Runs the same engine that graded every domain in the census. Watch this check turn green.

Defaults.Exposed
A-Grade Playbook · example.com
Step 5 of 9

Lock down who can issue your certificates (CAA)

Low risk Does not affect mail
1The issue

A CAA record is a short instruction in your domain settings that names which certificate companies are allowed to issue the 'padlock' security certificate for your website. With it switched on, no other company can quietly create a valid certificate in your name.

2What this means for your business

Without a CAA record, almost any of the hundreds of certificate companies worldwide can issue a genuine, fully-trusted padlock certificate for your domain — letting a scammer stand up a flawless, fully 'secure'-looking clone of your site to harvest your customers' logins and card details, with nothing on screen to warn them.

3What this means for your customers
  • A scammer obtains a real certificate for a copy of your site, so it shows the green padlock and HTTPS — your customers see nothing wrong, type in their passwords and card numbers, and you only learn about it when the chargebacks and angry calls start.
  • Your customers get phished through a pixel-perfect look-alike of your login page; the fallout — refunds, support load, reputation damage — lands on your brand even though your real site was never touched.
4You're not alone

98.5% of .com domains have this exact gap. Only 1.5% have it in place.

You are fixing something most of your peers have not — and it is measured the same way for every one of them.

5Your current setting
What we found on example.com
No CAA records found — any Certificate Authority can issue certificates for this domain.
dnsQuery = dig CAA example.com
caaRecords = no CAA records found
6The fix

WhereYour DNS host — add CAA records on example.com

Add exactly this
example.com. CAA 0 issue "letsencrypt.org" example.com. CAA 0 issue "pki.goog" example.com. CAA 0 iodef "mailto:[email protected]"
Watch outList EVERY CA that legitimately issues for you — including the one your CDN rotates through. Omit one and your next cert renewal fails silently weeks from now. Check your current cert issuer before publishing.

If you need to undo itDelete the CAA records (prior state was "any CA may issue").

7Done looks like
dig CAA example.com +short
0 issue "letsencrypt.org"
0 issue "pki.goog"
0 iodef "mailto:[email protected]"
8Verify it worked

dig CAA example.com +short shows your records → re-check.

Re-scan example.com →

Runs the same engine that graded every domain in the census. Watch this check turn green.

Defaults.Exposed
A-Grade Playbook · example.com
Step 6 of 9

HTTP to HTTPS Redirect

Medium risk Does not affect mail
1The issue

HTTPS is the padlock in the browser bar — it encrypts everything that travels between your website and your customers so it can't be read or tampered with in transit. The forced-secure redirect makes sure visitors land on that encrypted version automatically, even when they type your address without 'https://'. Together they are the single most basic thing a website needs to be considered safe at all.

2What this means for your business

Without HTTPS, every password, card number and message a customer sends you crosses the internet as readable text, and Chrome, Edge, Safari and Firefox all stamp your site 'Not secure' for every visitor before they read a word. Without the redirect, even sites that have a certificate leave the very first visit unprotected. Both cost you trust, sales and search ranking — and both are free to fix in minutes.

3What this means for your customers
  • A first-time visitor sees a big 'Not secure' warning the moment your page loads. Most assume the site is fake, broken or unsafe and leave for a competitor — and you never even know the sale was lost.
  • A customer enters their card details or logs in over an unencrypted connection from a café, hotel or airport. Someone on the same WiFi reads it in plain text, and the fraudulent charges that follow get blamed on you.
4Your current setting
What we found on example.com
HTTP requests are not redirected to HTTPS.
redirectsToHttps = false
httpUrl = http://example.com/
httpsUrl = https://example.com/
5The fix

WhereAdd a redirect from HTTP to HTTPS: Nginx: server { listen 80; server_name example.com; return 301 https://$host$request_uri; } Apache (.htaccess): RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] Cloudflare: SSL/TLS > Edge Certificates > Always Use HTTPS = On IIS: Install URL Rewrite module and add HTTP to HTTPS redirect rule

6Verify it worked

Re-check http-to-https-redirect after applying the fix.

Re-scan example.com →

Runs the same engine that graded every domain in the census. Watch this check turn green.

Defaults.Exposed
A-Grade Playbook · example.com
Step 7 of 9

Publish a Content-Security-Policy

Medium risk Does not affect mail
1The issue

A Content Security Policy is a safety rule your website hands to every visitor's browser, telling it exactly which code is allowed to run. Without one, if anything malicious ever lands on a page — through a comment box, a hacked plugin, or a third-party script — the browser will run it freely, including code that quietly skims your customers' card numbers and passwords as they type, with the padlock still showing.

2What this means for your business

If your site is ever tampered with, malicious code can read your customers' payment-card and login details straight off your own checkout while everything looks completely normal — leaving you with chargebacks, fraud claims, a reportable data breach, and a check failure that larger clients' security teams use to stall or kill a deal.

3What this means for your customers
  • Hidden code slips into one of your pages and silently copies every card number and password your customers enter at checkout, sending it to an attacker while your site looks completely normal — you only find out when the fraud complaints arrive.
  • A scammer plants a fake 'pay here' form on your real website that captures payments into their own account; customers think they paid you, blame you when the goods never come, and demand their money back.
4You're not alone

96.2% of .com domains have this exact gap. Only 3.8% have it in place.

You are fixing something most of your peers have not — and it is measured the same way for every one of them.

5Your current setting
What we found on example.com
No Content-Security-Policy header found.
cspHeader = not set
6The fix

WhereYour web server / CDN response headers

Add exactly this
Content-Security-Policy: default-src 'self'; img-src 'self' data:; style-src 'self'; script-src 'self'; frame-ancestors 'self'
Watch outA strict CSP can break inline scripts/styles and third-party widgets. Deploy first as Content-Security-Policy-Report-Only, watch for violations for a few days, then enforce.

If you need to undo itSwitch back to -Report-Only, or remove the header.

7Done looks like
curl -sI https://example.com | grep -i content-security-policy
content-security-policy: default-src 'self'; ...; frame-ancestors 'self'
8Verify it worked

Re-check — csp-header passes (report-only still counts as present; tighten toward enforce).

Re-scan example.com →

Runs the same engine that graded every domain in the census. Watch this check turn green.

Defaults.Exposed
A-Grade Playbook · example.com
Step 8 of 9

DMARC Aggregate Reporting

Medium risk Does not affect mail
1The issue

DMARC is the one setting that actually tells the world's mail providers to BLOCK emails that fake your business's name. SPF and DKIM check the locks; DMARC decides what happens when a forgery fails the check — bin it, flag it, or wave it through. Set wrong, your domain is fully forgeable; set right, impersonation stops at the inbox.

2What this means for your business

Without DMARC enforcement, a criminal can send email that looks exactly like it came from your business — to your customers, staff and suppliers — and it lands in their inbox, not their spam. People get scammed in your name, and they blame you.

3What this means for your customers
  • A scammer emails your customer a real-looking invoice 'from your accounts team' with their own bank details. The customer pays it. You find out weeks later when they chase the goods they already paid for — and they hold you responsible.
  • A fake 'urgent payment' email goes to your own finance person, appearing to come from you, the owner. They wire the money before anyone thinks to double-check — and once it lands in a criminal's account, it's almost never recovered.
4You're not alone

89.8% of .com domains have this exact gap. Only 10.2% have it in place.

You are fixing something most of your peers have not — and it is measured the same way for every one of them.

5Your current setting
What we found on example.com
No rua= tag in DMARC record — no aggregate reports configured.
dnsQuery = dig TXT _dmarc.example.com
dmarcRecord = v=DMARC1;p=reject;sp=reject;adkim=s;aspf=s
ruaTag = not set
6The fix

WhereAdd a rua= tag to your existing DMARC record. Update the TXT record at _dmarc.example.com to include: rua=mailto:[email protected] Full record example: v=DMARC1; p=reject; rua=mailto:[email protected] Alternatively, use a free DMARC reporting service like dmarcian.com or postmarkapp.com/dmarc for easier report analysis.

7Verify it worked

Re-check dmarc-reporting after applying the fix.

Re-scan example.com →

Runs the same engine that graded every domain in the census. Watch this check turn green.

Defaults.Exposed
A-Grade Playbook · example.com
Step 9 of 9

Reverse DNS (PTR)

Medium risk Does not affect mail
1The issue

YOUR business emails are likely being silently REJECTED or sent to spam folders across the internet right now. Major email providers including Gmail, Microsoft 365, and Yahoo actively check reverse DNS on the SENDING mail server — and when it fails, your emails get flagged as suspicious. That means your invoices, proposals, and customer communications are disappearing into spam. You're losing deals and damaging relationships without even knowing it. Every email provider on the planet uses PTR records as a trust signal.

2Your current setting
What we found on example.com
Could not resolve MX host to an IP address.
primaryMx =
error = MX host has no A record
3The fix

WhereThe primary MX server () could not be resolved. This is likely a managed email provider issue — contact your email provider.

4Verify it worked

Re-check reverse-dns after applying the fix.

Re-scan example.com →

Runs the same engine that graded every domain in the census. Watch this check turn green.

  Defaults.Exposed · A-Grade Playbook for example.com · verify anytime at defaults.exposed