# BeaverCheck Audit Report — https://news.ycombinator.com

**Date:** May 9, 2026  
**URL:** https://news.ycombinator.com  
**Overall Grade:** B (81/100)  
**Report:** https://beavercheck.com/results/39283171-4290-4b87-a269-931c781a0a0d

## Top Findings

1. **[CRITICAL]** 'unsafe-inline' found in script source — Security > Content Security Policy
2. **[CRITICAL]** 1 control(s) without accessible label — Accessibility > Form Accessibility
3. **[CRITICAL]** 1 image-in-link without alt text — Accessibility > Alt Text Quality
4. **[CRITICAL]** 3 image(s) missing alt attribute — Accessibility > Alt Text Quality
5. **[CRITICAL]** 30 link(s) with no accessible text — Accessibility > Link & Button Quality

---

## Lighthouse Scores

| Category | Score |
|----------|-------|
| Performance | 100 |
| Accessibility | 52 |
| Best Practices | 96 |
| SEO | 75 |

---

## Security

### Security Headers (C — 65/100)

*5 of 10 headers properly configured*

- **[WARNING]** HSTS is missing includeSubDomains — Without includeSubDomains, subdomains can still be accessed over HTTP.
- **[PASS]** X-Content-Type-Options is properly configured
- **[PASS]** X-Frame-Options is properly configured
- **[WARNING]** Referrer-Policy has a weak value
- **[WARNING]** Permissions-Policy header is missing — Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.
- **[PASS]** Content-Security-Policy is present
- **[WARNING]** Cross-Origin-Opener-Policy header is missing — COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.
- **[WARNING]** Cross-Origin-Embedder-Policy header is missing — COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.
- **[PASS]** X-Powered-By header is not present
- **[PASS]** Server header is present without version info
- **[INFO]** Domain is not in the Chrome HSTS preload list (status: unknown) — Submit your domain to hstspreload.org to close the trust-on-first-use gap. Requires a preload-ready HSTS header (max-age=31536000+, includeSubDomains, preload).

### Content Security Policy (C — 65/100)

*5 of 10 CSP checks passed*

- **[INFO]** Raw CSP policy
- **[PASS]** default-src directive is set
- **[CRITICAL]** 'unsafe-inline' found in script source — 'unsafe-inline' allows inline <script> tags, defeating CSP against XSS. Remove it and use nonces or hashes instead.
- **[PASS]** No 'unsafe-eval' in script source
- **[PASS]** No wildcard in script source
- **[PASS]** object-src falls back to default-src
- **[WARNING]** base-uri directive is missing — Without base-uri, attackers can inject a <base> tag to hijack relative URLs. Set it to 'self' or 'none'.
- **[PASS]** frame-ancestors directive is set
- **[WARNING]** form-action directive is missing — form-action restricts where forms can submit data, preventing form hijacking.
- **[INFO]** upgrade-insecure-requests is not set — This directive upgrades HTTP resources to HTTPS automatically, preventing mixed content.

### TLS & Certificates (A+ — 100/100)

*TLS 1.2, 7 checks passed*

- **[PASS]** TLS 1.2 is used
- **[INFO]** TLS 1.3 is not negotiated — TLS 1.3 offers improved performance and security. Consider enabling it.
- **[PASS]** Strong cipher suite is used
- **[INFO]** HTTP/2 is not negotiated — HTTP/2 provides multiplexing and header compression for better performance.
- **[INFO]** OCSP stapling not enabled — Without stapling, the browser performs a separate OCSP roundtrip on first connection -- adding latency and leaking the visited host to the CA. Enable OCSP stapling on your TLS server.
- **[PASS]** Certificate is valid (expires in 35 days)
- **[PASS]** Certificate chain has 2 certificates
- **[PASS]** Certificate uses modern signature algorithm
- **[PASS]** Certificate covers 1 domain(s)
- **[PASS]** Certificate is issued by a trusted CA

### Cookie Security (A+ — 100/100)

*No cookies set — no cookie security risks*

- **[PASS]** No cookies set — no cookie security risks

### Cookie Hygiene (A+ — 100/100)

*No cookies set -- cookie-hygiene check is N/A*

- **[PASS]** No cookies set

### WAF / Bot Protection (B — 75/100)

*No WAF detected via response headers*

- **[INFO]** No WAF detected — Response headers don't match any known WAF or bot-management product. Sites exposed to abuse (login, signup, payment) typically benefit from a WAF such as Cloudflare, Akamai, AWS WAF, or Imperva.

### security.txt (C — 60/100)

*No security.txt file found*

- **[INFO]** No security.txt file found — security.txt (RFC 9116) provides a standardized way for security researchers to report vulnerabilities. Create one at /.well-known/security.txt with at least a Contact field.

### Cross-Origin Tab Safety (A+ — 100/100)

*No new-tab links found -- no tabnabbing surface*

- **[PASS]** No new-tab links present

### CSP Inline-Style Readiness (C — 75/100)

*37 inline style attribute(s) detected*

- **[WARNING]** 37 inline style attribute(s) detected — Each `style=""` attribute forces `style-src 'unsafe-inline'` in any Content-Security-Policy, which negates most of CSP's XSS-mitigation value. 37 inline style(s) is moderate. Affected element types include: table, td, img, tr. Move styles to a stylesheet; use CSS custom properties for runtime-dynamic values; or adopt a nonce/hash CSP policy. Most teams take the stylesheet path because it's also a maintainability win.

### Trusted Types (XSS Sink Hardening) (B — 95/100)

*Trusted Types not enabled*

- **[INFO]** Trusted Types not enabled — Trusted Types (CSP3) is a Chrome 83+ defense that requires DOM-XSS sinks (innerHTML, document.write, eval, ...) to receive a typed-and-sanitized value rather than a raw string. Adding `Content-Security-Policy: require-trusted-types-for 'script'; trusted-types default` neutralizes most DOM-XSS even when a payload reaches a sink. Adoption is currently ~0.1% of pages so this is informational; a roll-out usually starts in report-only mode.

### Source Map Exposure (A+ — 100/100)

*No source maps accessible (probed 1 candidate URL(s))*

- **[PASS]** No source maps accessible across 1 probed candidate(s)

### HTML Version Disclosure (A+ — 100/100)

*No software-version disclosures in HTML*

- **[PASS]** No software-version disclosures in HTML

### Open Redirect Surface (B — 80/100)

*60 link(s) carry redirect-shaped query parameter(s)*

- **[INFO]** 60 link(s) carry redirect-shaped query parameter(s) — Heuristic flag -- whether each endpoint actually permits an arbitrary redirect target depends on server-side validation. Audit the listed paths' redirect-target handling: the endpoint should either (a) restrict to a relative path, (b) restrict to an allowlisted host set, or (c) sign the target. Open redirects power phishing flows (the attacker's URL begins with your trusted domain) and bypass some SSRF-mitigation cookie scoping. Common parameter names flagged: redirect, redirect_uri, redirect_url, redirecturl, return, returnto, return_to, returnurl, return_url, next, nexturl, next_url, continue, goto, dest, destination, forward, target.

### Subdomain Inventory Exposure (A+ — 100/100)

*No risky subdomain names in certificate SANs*

- **[PASS]** No risky subdomain names in certificate SANs

---

## Advanced Security

### Subresource Integrity (A+ — 100/100)

*No external resources*

- **[PASS]** No external resources to protect

### JS Library Vulnerabilities (A+ — 100/100)

*No known vulnerabilities*

- **[PASS]** No known JavaScript library vulnerabilities detected

### Information Leakage (A+ — 100/100)

*No exposures*

- **[INFO]** No security.txt found — Consider adding a security.txt at /.well-known/security.txt.
- **[PASS]** No sensitive files exposed

### Email Security (F — 0/100)

*no DMARC, no SPF*

- **[WARNING]** No DMARC record found — Without DMARC, email receivers have no policy for handling authentication failures. Add a TXT record at _dmarc.<domain> starting with v=DMARC1.
- **[WARNING]** No SPF record found — Without SPF (Sender Policy Framework), receivers can't tell which servers are authorized to send mail for your domain. Add a TXT record at the apex starting with v=spf1, ending in -all.
- **[INFO]** No DKIM detected via common selectors — DKIM signs outbound mail to prove origin. We probed common selectors (default, google, selector1, etc.) without finding a record. If you use a non-standard selector, this is a false negative.
- **[INFO]** MTA-STS not configured — MTA-STS forces inbound mail to use TLS, preventing downgrade attacks. Requires both a TXT record at _mta-sts.<domain> and a policy file at https://mta-sts.<domain>/.well-known/mta-sts.txt.
- **[INFO]** TLS-RPT not configured — TLS-RPT (RFC 8460) lets MTAs report TLS-handshake failures, so you can detect and fix MTA-STS misconfigurations. Add a TXT record at _smtp._tls.<domain>.
- **[INFO]** BIMI not configured — BIMI (Brand Indicators for Message Identification) lets supporting clients (Gmail, Apple Mail, Yahoo) display your verified logo next to your messages. Optional but raises trust signals. Requires DMARC at p=quarantine or p=reject to be honored.

### API Surface (A+ — 100/100)

*No API specs or GraphQL introspection found (probed 11 candidate path(s))*

- **[PASS]** No API specs or GraphQL introspection found (probed 11 path(s))

### Permissions-Policy (D — 40/100)

*No header set*

- **[WARNING]** No Permissions-Policy header — Consider adding a Permissions-Policy header to restrict browser feature access from embedded content.

### CORS Configuration (B — 80/100)

*No CORS headers*

- **[PASS]** No CORS headers present — secure default

---

## Performance

### Page Weight Budget (A+ — 100/100)

*11 KB transferred, 7 requests*

- **[PASS]** Page weighs 47 KB (11 KB transferred)
- **[PASS]** 7 HTTP requests
- **[INFO]** Estimated 0.00 g CO2 per page load

### Third-Party Impact (A+ — 100/100)

*No third-party resources*

- **[PASS]** No third-party resources detected

### Text Compression (A+ — 100/100)

*All text resources are compressed*

- **[PASS]** All text resources are compressed

### Image Optimization (A — 85/100)

*3 images, 0 KB saveable*

- **[PASS]** All images are well-optimized

### JS Execution Cost (B — 80/100)

*501ms total JS execution*

- **[WARNING]** https://news.ycombinator.com/: 273ms CPU time
- **[INFO]** Unattributable: 228ms CPU time
- **[INFO]** Third-party scripts: 228ms (46% of total)

### Font Loading (A+ — 100/100)

*No web fonts (system fonts)*

- **[PASS]** No web fonts loaded — system fonts are fastest

### JS Bundles (A+ — 100/100)

*1 scripts, 0 KB unused*


### Resource Caching (A+ — 100/100)

*All resources properly cached*

- **[PASS]** No caching issues found

### Critical Rendering Path (A+ — 100/100)

*No render-blocking resources*

- **[PASS]** No render-blocking resources detected

### Resource Hints (A+ — 100/100)

*No optimization needed*

- **[PASS]** No resource hint issues

### HTTP/3 (QUIC) (B — 75/100)

*HTTP/3 not advertised*

- **[INFO]** HTTP/3 (QUIC) is not advertised — HTTP/3 isn't advertised via Alt-Svc and the worker didn't negotiate h3. HTTP/3 reduces handshake latency (1-RTT instead of 2-3 RTTs) and is more resilient on lossy connections. Most modern CDNs (Cloudflare, Fastly, AWS CloudFront, Google Cloud CDN) support HTTP/3 with a single config switch -- consider enabling for mobile-heavy workloads.

### Compression Algorithm (C — 70/100)

*Main response served uncompressed*

- **[INFO]** Main HTML response has no Content-Encoding (uncompressed) — The main HTML document is served without compression. The Text Compression section above lists the broader picture; for the main response specifically, even gzip would shave ~70-80% off most text payloads.

### LCP Image Preload (A+ — 100/100)

*LCP preload audit not available*

- **[PASS]** LCP image preload audit not available for this scan

### Main HTML Cache-Control (A+ — 100/100)

*Main HTML max-age=0 (≤ 5min) is appropriate*

- **[PASS]** Main HTML max-age=0 (≤ 5min) is appropriate

### Server-Timing Observability (B — 85/100)

*No Server-Timing header found*

- **[INFO]** No Server-Timing header found — Server-Timing exposes backend timing breakdowns to browser DevTools (e.g., `db: 45ms; render: 120ms; cache: 2ms`). Useful for diagnosing slow pages without backend log access. Most modern frameworks (Next.js, Cloudflare Workers, Fastly) emit it automatically; absence on a managed platform usually means telemetry headers are stripped at the edge.

### Page Weight Inventory (A+ — 100/100)

*7 resources · 11 KB · 0 KB savings available*

- **[PASS]** Within 1MB page-weight target

### Render-Blocking Resources (A+ — 100/100)

*No render-blocking resources detected*

- **[PASS]** No render-blocking resources detected in <head>

### Third-Party Resources (A+ — 100/100)

*No third-party resources detected*


### JavaScript Blocking (A — 94/100)

*1 JS blocking issue(s) detected*

- **[WARNING]** 1 render-blocking <script src> tag(s) without async/defer — Each `<script src=...>` without `async`, `defer`, or `type="module"` blocks HTML parsing while the browser fetches and executes it. The block lasts the entire round-trip + execution time -- on slow networks this translates directly into LCP delay. Add `defer` (executes after parse, in source order) for scripts that interact with the DOM, or `async` (executes whenever ready) for analytics / independent scripts. Module scripts (`type="module"`) are deferred by default.

---

## Content Quality

### Links (F — 40/100)

*199 links checked, 81 healthy, 118 broken*

- **[CRITICAL]** 81 of 199 links are healthy
- **[CRITICAL]** Broken link: https://news.ycombinator.com/ask — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/jobs — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/submit — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/login?goto=news — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48071262&how=up&goto... — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=gowers.wordpress.com — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=_alternator_ — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48071262&goto=news — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48067119&how=up&goto... — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=reclaimthenet.org — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=anonymousiam — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48067119&goto=news — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48071940&how=up&goto... — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=twitter.com/trq212 — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48071940&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48051951&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=moq.dev — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48051951&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48046436&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=martinfowler.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48046436&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48037517&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=quantamagazine.org — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=Tomte — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48037517&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48066524&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=jefftk.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=speckx — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48066524&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48061884&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=bbc.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=defrost — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48061884&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48072190&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=cyberinsider.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=muse900 — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48072190&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48065511&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=lachlan.nz — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=mufeedvh — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48065511&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48037760&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=wiisfi.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=homebrewer — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48037760&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48058197&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=cnbc.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=christhecaribou — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48058197&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48065360&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=webdesignmuseum.org — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=willmeyers — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48065360&goto=news — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48067734&how=up&goto... — Found in <a href>. Returns HTTP 429.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=ze3tar.github.io — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=MrBruh — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48067734&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48061566&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=meshtastic.org — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=ColinWright — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48061566&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48040306&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=mceglowski.substac... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=zdw — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/item?id=48040306 — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48040306&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48065254&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=sigops.org — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=mad — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48065254&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48040470&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=colorado.edu — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=geox — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48040470&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48066592&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=anthropic.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48066592&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48038322&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=portalvr.io — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=gfodor — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48038322&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48032014&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=worksinprogress.co — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=akkartik — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48032014&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48064312&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=btxx.org — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=xngbuilds — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48064312&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48057901&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=mojolang.org — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=sbt567 — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48057901&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48037655&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=yosefk.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48037655&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48071496&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=techrights.org — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=esaym — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48071496&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=mux.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48068732&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48068254&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=0xkrt26.github.io — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48068254&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48061938&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=war.gov — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=david-gpu — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48061938&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48069192&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=pcmag.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=tcp_handshaker — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48069192&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/vote?id=48049014&how=up&goto... — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/from?site=asteriskmag.com — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/user?id=kqr — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/hide?id=48049014&goto=news — Found in <a href>. Returns HTTP 403.
- **[CRITICAL]** Broken link: https://news.ycombinator.com/lists — Found in <a href>. Returns HTTP 403.

### Mixed Content (A+ — 100/100)

*No mixed content detected — all resources use HTTPS.*

- **[PASS]** No mixed content detected — all resources use HTTPS

### Open Graph (F — 0/100)

*No Open Graph tags found — social sharing previews will be generic.*

- **[WARNING]** No Open Graph meta tags found — Without og:title, og:description, and og:image, social media platforms will generate a generic preview when your page is shared.

### Structured Data (C — 40/100)

*No structured data (JSON-LD) found.*

- **[INFO]** No structured data (JSON-LD) found — Adding structured data helps search engines understand your content and can enable rich results.

### Image Optimization (D — 65/100)

*3 issues found across 3 images*

- **[INFO]** 2 below-fold images missing loading="lazy" — Lazy loading defers below-fold images, reducing initial page weight.
- **[WARNING]** All 2 images use legacy formats (JPEG/PNG/GIF) — WebP offers 25-35% smaller files than JPEG. Use <picture> with <source type="image/webp"> for modern format support.
- **[WARNING]** 3 images missing alt text — Alt text is essential for screen readers and SEO. Every meaningful image needs descriptive alt text.

### Autoplay Media (A+ — 100/100)

*No autoplay media on the page*

- **[PASS]** No autoplay media on the page

---

## Infrastructure

### DNS Records (A — 85/100)

*1 A records, 10 ms lookup*

- **[PASS]** Resolves to 1 IPv4 address(es)
- **[INFO]** Single A record — no DNS redundancy — Multiple A records provide failover if one server goes down.
- **[PASS]** Has 1 IPv6 (AAAA) record(s)
- **[INFO]** No NS records found
- **[INFO]** No MX records — email not configured via DNS
- **[INFO]** No SPF record found in TXT records — SPF helps prevent email spoofing. Add a TXT record starting with 'v=spf1'.
- **[PASS]** DNS resolution time: 10 ms

### Subdomain Takeover (A+ — 100/100)

*No subdomain takeover risk detected*

- **[PASS]** No CNAME record present

### DNSSEC (B — 80/100)

*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).

### CAA Records (B — 80/100)

*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.

### Reverse DNS (A — 90/100)

*1/2 IPs match cert SAN*

- **[PASS]** PTR for 209.216.230.207 matches certificate SAN: news.ycombinator.com
- **[INFO]** PTR lookup failed for 2606:7100:1:67::26: lookup 2606:7100:1:67::26: 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.

### Multi-Resolver DNS Speed (A+ — 100/100)

*Mean 4ms across 3 resolvers (spread 9ms)*

- **[PASS]** Quad9: 2ms
- **[PASS]** Cloudflare: 1ms
- **[PASS]** Google: 10ms

### Redirect Chain (A+ — 100/100)

*No redirects — direct access*

- **[PASS]** No redirects — direct access

### IPv6 Readiness (A+ — 100/100)

*IPv6 reachable (148 ms)*

- **[PASS]** IPv6 is configured and reachable at 2606:7100:1:67::26

### Crawlability (B — 80/100)

*robots.txt present, no sitemap*

- **[PASS]** robots.txt is present
- **[INFO]** No sitemap.xml found — A sitemap helps search engines discover and index your pages more efficiently.
- **[INFO]** robots.txt does not reference a sitemap — Add a 'Sitemap:' directive to robots.txt so search engines can discover your sitemap.

### URL Variants (A+ — 100/100)

*www/non-www, trailing slash, HTTP→HTTPS*

- **[PASS]** HTTP correctly 301-redirects to HTTPS

### Domain Intelligence (A+ — 100/100)

*ycombinator.com — via Gandi SAS, 21 years, 5 months old, hosted on AWS*

- **[PASS]** Domain registered until Mar 20, 2027 (10 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.
- **[PASS]** Registrar: Gandi SAS
- **[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.
- **[PASS]** Hosting: AWS

---

## Compliance

### WCAG Compliance (A+ — 100/100)

*No testable criteria*


### Cookie Consent & Privacy (A — 85/100)

*No consent signals detected*

- **[WARNING]** No privacy policy link detected — A privacy policy page is recommended for transparency and may be legally required.
- **[PASS]** Terms of service link found
- **[INFO]** No cookie consent banner detected
- **[INFO]** This is an automated check, not legal advice — BeaverCheck detects technical indicators of consent management. This does not constitute a legal compliance assessment. Consult a privacy professional for GDPR/CCPA compliance.

### Consent UX Depth (A+ — 100/100)

*No consent-UX depth issues detected*

- **[PASS]** No consent-UX depth issues detected

### Language & i18n (A — 90/100)

*Lang attribute present*

- **[PASS]** <html lang> attribute is present
- **[PASS]** <html lang> value is valid
- **[INFO]** No Content-Language HTTP header
- **[INFO]** Language signals are inconsistent — The <html lang> attribute and Content-Language header should agree.

### Hreflang Configuration (A+ — 100/100)

*No hreflang tags on this page*

- **[PASS]** No hreflang tags found (single-language site)

### Readability & Typography (A+ — 100/100)

*Font sizes and tap targets checked*


### Viewport Configuration (A+ — 100/100)

*Viewport properly configured*

- **[PASS]** Viewport meta tag is present
- **[PASS]** width=device-width is set
- **[PASS]** User zooming is allowed

### Accessibility Statement (B — 70/100)

*No accessibility statement detected*

- **[WARNING]** No accessibility statement detected — Sites are increasingly expected to publish an accessibility statement. Required by EU Web Accessibility Directive 2016/2102 for public-sector bodies; recommended best practice elsewhere. Common URLs: /accessibility, /accessibility-statement, /a11y.

### GDPR Article 13 Disclosures (F — 25/100)

*0 / 8 Art. 13 categories matched in homepage body*

- **[WARNING]** GDPR Article 13 disclosure coverage: 0 / 8 categories — Scanned the homepage body text for GDPR Article 13 disclosures. Matched 0 of 8 categories: . Missing: Data Protection Officer contact (where applicable), Data retention period, Data subject rights (access, erasure, rectification, etc.), Identity / contact details of the data controller, International data transfers, Legal basis for processing, Recipients of personal data, Right to lodge a complaint with a supervisory authority. Note: this scan does not fetch the privacy policy sub-page; if Article 13 disclosures live there, they are not visible to this check.

### Third-Party Trackers (A+ — 100/100)

*No third-party trackers detected*

- **[PASS]** No third-party trackers detected

### Tracking Pixel Inventory (A+ — 100/100)

*No tracking pixels detected*

- **[PASS]** No tracking pixels detected

### Browser Fingerprinting (A+ — 100/100)

*No browser-fingerprinting libraries detected*

- **[PASS]** No browser-fingerprinting libraries detected

### Cross-Site Cookies (SameSite=None) (A+ — 100/100)

*No cookies on the page*

- **[PASS]** No cookies set on the page response

### Beacon Tracking (sendBeacon) (A+ — 100/100)

*No navigator.sendBeacon usage detected in inline scripts*

- **[PASS]** No navigator.sendBeacon usage detected in inline scripts

---

## Legal

### Legal Page Ecosystem (F — 30/100)

*1 of 7 expected legal pages detected*

- **[WARNING]** Privacy Policy not detected — No link matching common Privacy Policy URL patterns or link text was found. Most websites are expected to have a Privacy Policy, especially those collecting user data.
- **[PASS]** Terms of Service detected — Found at https://www.ycombinator.com/legal/, linked from footer.
- **[INFO]** Cookie Policy not detected — No link matching common Cookie Policy URL patterns or link text was found. Most websites are expected to have a Cookie Policy, especially those collecting user data.
- **[INFO]** Accessibility Statement not detected — No link matching common Accessibility Statement URL patterns or link text was found. Most websites are expected to have a Accessibility Statement, especially those collecting user data.
- **[INFO]** DMCA / Copyright Notice not detected — No link matching common DMCA / Copyright Notice URL patterns or link text was found. Most websites are expected to have a DMCA / Copyright Notice, especially those collecting user data.
- **[INFO]** Refund / Returns Policy not detected — No link matching common Refund / Returns Policy URL patterns or link text was found. Most websites are expected to have a Refund / Returns Policy, especially those collecting user data.
- **[INFO]** Acceptable Use Policy not detected — No link matching common Acceptable Use Policy URL patterns or link text was found. Most websites are expected to have a Acceptable Use Policy, especially those collecting user data.

### Copyright Notice (C — 55/100)

*No copyright notice detected*

- **[INFO]** No copyright notice detected — No copyright notice detected in the page content. While not legally required in most jurisdictions (copyright exists automatically), a notice is standard practice and signals site ownership.

### Regulatory Indicators

*0 regulatory indicator(s) detected*

- **[INFO]** This is a technical scan, not a legal assessment — BeaverCheck detects technical indicators that may suggest regulatory relevance. This is not a compliance audit and should not be relied upon for legal decisions. Consult qualified legal counsel for compliance assessments.
- **[INFO]** No specific regulatory indicators detected — No strong signals for GDPR, CCPA, ADA, PCI, HIPAA, or COPPA were found. This does not mean these regulations don't apply — it means we didn't detect common technical indicators.

### Third-Party Data Sharing

*0 third-party service(s) detected*

- **[INFO]** Data inventory for transparency purposes — This inventory identifies third-party services that receive data from your site visitors. Under regulations like GDPR (Article 30), maintaining records of data processing activities is commonly considered a best practice. This automated scan provides a starting point — it may not capture all data flows.
- **[INFO]** No recognized third-party data-sharing services detected — This page does not appear to load external tracking, analytics, or advertising scripts.

### Compliance Badges (C — 55/100)

*0 compliance badge(s) detected*

- **[INFO]** No compliance badges detected — No recognized compliance certification badges or seals were found. This is common — many sites do not display compliance badges.

---

## Availability

### CDN & Delivery (D — 50/100)

*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.

### HTTP Caching (B — 70/100)

*private; max-age=0*

- **[PASS]** Cache-Control header is set
- **[INFO]** No ETag or Last-Modified header — Conditional requests (304 Not Modified) are not possible without validators.

### Operational Status Page (B — 80/100)

*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.

### Transport Security (A — 90/100)

*HTTP/3, HSTS, and TLS version analysis*

- **[INFO]** HTTP/3 (QUIC) not advertised — HTTP/3 eliminates head-of-line blocking. If your CDN supports it, consider enabling it.
- **[PASS]** HSTS enabled (base policy)
- **[INFO]** HSTS missing includeSubDomains — Without includeSubDomains, HSTS only protects the exact domain.

### Health Check Endpoint (B — 80/100)

*No conventional health endpoint found*

- **[INFO]** No conventional health endpoint found — Health endpoints (/health, /healthz, /status, /ping, /api/health) let uptime monitors, load balancers, and orchestration systems (Kubernetes, ECS, Fly.io) verify the service is alive. Marketing sites and small services often skip them legitimately; flagged as Info, not a failure. Probe results: /api/health: 404, /health: 404, /healthz: 404, /ping: 404, /status: 404.

### CDN Cache Observability (B — 85/100)

*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.

---

## Accessibility

### Landmark Structure (D — 40/100)

*No landmarks*

- **[CRITICAL]** No <main> landmark found — Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
- **[WARNING]** No <nav> landmark found
- **[INFO]** No banner (header) landmark
- **[INFO]** No contentinfo (footer) landmark
- **[WARNING]** Skip navigation link is missing (WCAG 2.4.1) — Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.

### Heading Hierarchy (B — 80/100)

*No headings*

- **[WARNING]** No headings found — Headings (H1-H6) create the document outline for screen reader navigation.

### Alt Text Quality (C — 55/100)

*3 of 3 images have issues*

- **[CRITICAL]** 3 image(s) missing alt attribute — Images without alt text are invisible to screen readers.
- **[CRITICAL]** 1 image-in-link without alt text — An image inside a link with no alt creates an empty link.

### Form Accessibility (A — 85/100)

*1 of 1 controls have issues*

- **[CRITICAL]** 1 control(s) without accessible label — Form controls need a <label>, aria-label, or aria-labelledby for screen readers.

### Link & Button Quality (C — 65/100)

*31 issue(s) across 226 links and 0 buttons*

- **[CRITICAL]** 30 link(s) with no accessible text — Links without text are announced as raw URLs by screen readers.
- **[WARNING]** 1 link(s) with generic text — Generic link text like 'click here' doesn't describe the destination.
- **[PASS]** 195 link(s) with descriptive text

### Form Input Types (A+ — 100/100)

*1 form control(s) checked, no type mismatches*

- **[PASS]** No input-type mismatches detected

### Form Input Quality (A+ — 100/100)

*1 form control(s) checked, no input-semantic issues*

- **[PASS]** All form input semantics look correct

### Mobile Keyboard & Autofill (A+ — 100/100)

*No autofill-eligible form controls*

- **[PASS]** No autofill-eligible form controls (no name/email/tel/address fields)

### Document Language (A+ — 100/100)

*Lang attribute set to "en"*

- **[PASS]** <html lang="en"> is set and valid

### Tabindex Anti-Patterns (A+ — 100/100)

*No explicit tabindex attributes found*

- **[PASS]** No explicit tabindex attributes found

### Iframe Accessibility (A+ — 100/100)

*No iframes on this page*

- **[PASS]** No iframes on this page

### Tap Target Adequacy (B — 90/100)

*1 tap target(s) too small or too close together*

- **[INFO]** 1 tap target(s) too small or too close to neighbors — WCAG 2.5.5 (Level AAA) requires interactive targets to be at least 44x44 CSS pixels; WCAG 2.5.8 (Level AA, added in 2.2) requires 24x24 minimum. Failing targets cause mis-taps for users with motor impairments, large fingers, or shaky hands -- and are a major bounce-rate driver on mobile commerce flows. Lighthouse measures rendered rects + adjacent-element spacing; the failing list is in the Lighthouse 'tap-targets' audit detail panel.

### Mobile-Readable Font Sizes (D — 60/100)

*24% of visible text renders at >= 12 CSS px (214 below threshold)*

- **[WARNING]** 214 text node(s) render below 12 CSS pixels on mobile — Mobile browsers default the root font-size to 16 px; text below ~ 12 px (75% of root) is hard to read without zooming. WCAG 1.4.4 (Resize Text) requires the page to support 200% zoom without loss of functionality -- which most layouts handle, but small base text still costs readability and conversion. Audit which selectors set sizes below 12 px (often footers, fine print, table cells) and bump them to 14-16 px or use rem units that scale with user preferences. Examples: <span> 10.7px ("gowers.wordpress.com"); <span> 9.3px ("188 points"); <span> 9.3px ("by"); <a> 9.3px ("_alternator_"); <a> 9.3px ("3 hours ago").

---

## UX

### 404 Error Page (F — 30/100)

*HTTP 404, bare page*

- **[PASS]** Correct 404 status code returned
- **[WARNING]** Bare server default 404 page — The 404 page has no custom styling. Users hitting a broken link see a generic error with no way to navigate back. Add a custom 404 page with your site navigation and a search bar.

### Favicon & Branding (F — 30/100)

*2 icon(s) detected*

- **[PASS]** favicon.ico present at site root
- **[PASS]** HTML icon links detected
- **[INFO]** No apple-touch-icon detected — iOS devices use this when users add your site to their home screen. Add <link rel='apple-touch-icon' sizes='180x180' href='/apple-touch-icon.png'>.

### Web Manifest (D — 40/100)

*Not found*

- **[INFO]** No web manifest found — No manifest at standard paths (/manifest.json, /site.webmanifest). A manifest is optional but enables PWA features like home screen installation and standalone display.

### PWA Depth (A+ — 100/100)

*No PWA depth issues detected*

- **[PASS]** No PWA depth issues detected

### Dark Mode Support (D — 40/100)

*No dark mode signals*

- **[INFO]** No dark mode signals detected — Consider adding CSS with @media (prefers-color-scheme: dark) and <meta name='color-scheme' content='light dark'>.
- **[INFO]** Detection limited to meta tags and inline styles — External CSS files may contain prefers-color-scheme rules not visible to this scan.

### Print Stylesheet (D — 40/100)

*No print styles*

- **[INFO]** No print-specific styles detected — When users print this page, they get the screen layout including navigation and non-essential elements. Add @media print rules to hide navigation and optimize layout for paper.

### Navigation UX (F — 0/100)

*No navigation patterns*

- **[INFO]** No breadcrumbs, search, or skip link detected — These navigation aids help users orient themselves and find content efficiently, especially on large sites.

---

## SEO

### Canonical URL (B — 80/100)

*Minor issues*

- **[WARNING]** No canonical tag found — Search engines will determine the canonical URL themselves, which may cause duplicate content issues.

### Meta Tags (B — 75/100)

*Title: 11 chars*

- **[PASS]** Page title is set
- **[WARNING]** Title is only 11 characters — consider expanding
- **[WARNING]** No meta description tag found — Without a meta description, Google auto-generates a snippet from page content -- usually less click-attractive than a hand-written summary. Add `<meta name="description" content="...">` with a 70-160 char summary.

### Content Depth (B — 80/100)

*727 words, Fairly Easy*

- **[PASS]** Page has 727 words of content
- **[INFO]** Reading level: Fairly Easy (grade 5)

### Internal Links (A — 85/100)

*193 internal, 33 external*

- **[PASS]** 193 internal links (85%)
- **[PASS]** 86% of links use descriptive anchor text
- **[INFO]** Page has 226 links — consider reducing
- **[INFO]** 193 internal / 33 external links
- **[WARNING]** 1 internal links have no anchor text

### Image SEO (B — 75/100)

*3 images, 0 descriptive filenames*

- **[WARNING]** 100% of images have non-descriptive filenames — Search engines use filenames as a signal. Rename to descriptive names like 'team-photo.jpg'.
- **[INFO]** 3 image(s) missing alt text — see Accessibility tab

### Hreflang

*0 hreflang tags*


### Hreflang URL Quality (A+ — 100/100)

*No hreflang tags on the page*

- **[PASS]** No hreflang tags on the page

### Sitemap Freshness (C — 75/100)

*No sitemap.xml found*

- **[INFO]** No sitemap.xml found — Sitemaps help search engines discover and prioritize URLs. Not strictly required for small sites where every page is linked from the homepage, but recommended once a site grows beyond a few dozen URLs.

### Sitemap × Robots Consistency (C — 75/100)

*Sitemap or robots.txt missing -- consistency check skipped*

- **[INFO]** Cross-check skipped (sitemap or robots.txt absent)

### Sitemap Hygiene (A+ — 100/100)

*No sitemap to evaluate -- depth check is N/A*

- **[PASS]** No sitemap fetched -- depth check skipped

---

## Sustainability

### CO2 Per Page Load (A+ — 100/100)

*0.00g CO2 per view*

- **[PASS]** 0.00g CO2 per page view — This page transfers 0.0 MB, producing an estimated 0.00g of CO2 per visit using the Sustainable Web Design model (v4). Breakdown: data center 0.00g, network 0.00g, end-user device 0.00g.
- **[INFO]** At 10,000 monthly views: 0.4 kg CO2/year — With 10,000 page views per month, this page would generate approximately 0.4 kg of CO2 annually — equivalent to charging 46 smartphones.

### Green Hosting (D — 50/100)

*Unknown*

- **[INFO]** Hosting provider could not be identified — Without knowing the provider, we cannot determine their energy sourcing. Check with your hosting provider about their renewable energy commitments.
- **[INFO]** Green hosting status based on known provider commitments — Green hosting detection uses a curated database of provider renewable energy commitments. This is not a real-time verification. For authoritative checks, visit thegreenwebfoundation.org.

### Repeat Visit Weight (C — 60/100)

*46% cached*

- **[WARNING]** Only 46% reduction on repeat visits — Returning visitors still download 6 KB — only 46% less than the first visit (11 KB). 1 resources lack proper caching headers. See the Performance tab's HTTP Caching section for specific recommendations.
- **[INFO]** Repeat visit: 0.00g CO2 (first visit: 0.00g)

### Carbon Budget (A+ — 100/100)

*10th percentile*

- **[PASS]** 0.00g CO2 — below the sustainability target of 0.50g — Cleaner than an estimated 90% of websites analyzed. This page meets the Web Sustainability Guidelines target.
- **[INFO]** Estimated 10th percentile — Compared to: top 10% = 0.20g, target = 0.50g, median = 0.60g per page view.

### Transfer Efficiency (A+ — 100/100)

*100% efficient*

- **[PASS]** Transfer efficiency: 100% — Only 0 KB of potential savings identified. Your page is well-optimized for size.

### Web Font Weight Variants (B — 90/100)

*No detectable Google Fonts weights*

- **[INFO]** No detectable Google Fonts weights — The analyzer detects font weights via Google Fonts URL parameters (~70% of font-using sites). Self-hosted fonts and non-Google CDN fonts aren't visible to URL-based detection. If you self-host fonts, manually audit how many @font-face weights you ship -- 2-3 weights per family is typically enough; 5+ is usually unused payload.

---

---

*Generated by [BeaverCheck](https://beavercheck.com) — https://beavercheck.com/results/39283171-4290-4b87-a269-931c781a0a0d*
