WebAuthn (Web Authentication) — W3C standard (2019) for passwordless authentication. Users register an "authenticator" (TouchID, Windows Hello, Yubikey security key) → log in via biometrics. Passkeys — the Apple/Google/Microsoft synonym with synced keys across devices. Replaces passwords and SMS OTP. Phishing-resistant: the key only works for a specific origin.
Below: details, example, related terms, FAQ.
navigator.credentials.create({
publicKey: {
challenge: randomBytes,
rp: { name: "example.com" },
user: { id, name, displayName },
pubKeyCredParams: [{ alg: -7, type: "public-key" }]
}
});The tool checks HTTP security headers, SSL/TLS configuration, server info leaks, and protection against common attacks (XSS, clickjacking, MIME sniffing). A grade fromA to F shows overall security level.
Checking Content-Security-Policy, HSTS, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, and more.
TLS version, certificate expiry, chain of trust, HSTS support.
Finding exposed server versions, debug modes, open configs, and directories.
Detailed report explaining each issue with specific steps to fix it.
HTTP header audit
config verification
CSP & HSTS setup
compliance checks
Strict-Transport-Security.Server: Apache/2.4.52 helps attackers find exploits. Hide the version.DENY or SAMEORIGIN.nosniff, browsers may misinterpret file types (MIME sniffing).Content-Security-Policy-Report-Only, monitor violations, then enforce.Server, X-Powered-By, X-AspNet-Version from responses.Security check history and HTTP security header monitoring.
Sign up freePasskeys = marketing name for WebAuthn with cross-device sync. Technically the same thing.
No — WebAuthn works on standard HTTPS sites. Only JS API + backend validation needed.
Gradually. Gmail, Apple, GitHub already support it. 2026: ~15% of active users use passkeys.