None of this requires access. That is the point, and it is also the uncomfortable part: an attacker gets exactly the same view, for free, without asking.
Transport
Does a visitor get a warning before they get your page?
What is read
HTTPS connection, HTTP to HTTPS redirect, HSTS max-age, HSTS on subdomains, mixed content, response time, HTTP status.
Why it matters
A certificate that expired at 3am is the most public failure a small site has. Mixed content is the quieter one: a page served over HTTPS pulling one script over HTTP is a page an attacker on the same network can rewrite.
Security headers
Which free browser protections are switched on?
What is read
HSTS, Content-Security-Policy, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy, Cross-Origin-Opener-Policy, Cross-Origin-Resource-Policy, X-XSS-Protection.
Why it matters
These cost nothing and are set in one place. They do not fix a vulnerable application, but several of them turn a bug into a non-event: X-Frame-Options stops your login page being framed inside somebody else's, and a Content-Security-Policy limits what an injected script can reach.
Exposed files
Is anything reachable that was never meant to be?
What is read
.env files, .git folders, database backups, CI configuration, debug pages.
Why it matters
This is the category that turns into an incident fastest, because there is nothing to exploit — the file is just there. A .env holds live credentials. An exposed .git folder can be reassembled into your whole source tree, including whatever was committed before somebody thought better of it.
Disclosed software
What does the site tell the world it is running?
What is read
Framework and CMS fingerprints, server version headers, generator meta tags, published asset paths.
Why it matters
Nobody scans the internet by hand. Attackers match disclosed versions against published vulnerabilities, at scale, within days of a release. Whatever your site announces is the search term someone else is using.
Cookies and sessions
Is the session cookie protected?
What is read
Secure, HttpOnly and SameSite flags on the cookies the site sets.
Why it matters
A session cookie without HttpOnly can be read by any script that gets onto the page. Without Secure it can be sent over plain HTTP. These are one-line changes in almost every framework and they are missing more often than not.
DNS and reputation
Is anything about the name itself broken?
What is read
Nameservers, nameserver redundancy, IP blacklist (DNSBL) listings.
Why it matters
One nameserver is a single point of failure for both the website and the mail. A DNSBL listing is the reason your mail suddenly lands in spam, and you will not find it by looking at your own inbox.
Attack surface
What else is on this domain?
What is read
Subdomains found in public Certificate Transparency logs.
Why it matters
The forgotten staging site is the classic way in. Because publicly trusted certificates must be logged, a subdomain that got a certificate is a matter of public record — which means an attacker already has this list.