Skip to main content
F
Foglift
Sample Deep Scan Report

This Is What You Get for $9 $4.50

Real Deep Scan report for a sample website. Every issue revealed, with copy-paste code fixes, severity ratings, and an AI-generated action plan.

68
Overall Score
75
SEO
55
GEO
72
Performance
40
Security
80
Accessibility

AI Action PlanDeep Scan only

Priority 1 — Security headers (30 min): Add CSP, X-Frame-Options, HSTS, and X-Content-Type-Options headers. This will jump your Security score from 40 to ~85. Use the nginx snippets below — most are one-liners.

Priority 2 — Structured data for AI (20 min): Add Organization and FAQPage JSON-LD schema. This is the fastest way to appear in ChatGPT and Perplexity answers. Your GEO score will increase by ~25 points.

Priority 3 — Image optimization (15 min): Fix 3 missing alt texts and preload the hero image. This helps both accessibility and performance scores.

Priority 4 — Meta description (5 min): Add a compelling meta description to improve search CTR by 5-10%.

Estimated total fix time: ~70 minutes. Expected score improvement: 68 → 88 (+20 points).

All 8 Issues — With Code FixesDeep Scan only

Missing Content-Security-Policy headercriticalSecurity

Your site does not send a Content-Security-Policy (CSP) header. This leaves it vulnerable to XSS attacks and data injection.

nginxCopy-paste fix
# Add to your nginx config:
add_header Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:;" always;

CSP tells browsers which resources are allowed to load, blocking malicious scripts.

No structured data for AI enginescriticalGEO

No JSON-LD structured data detected. AI search engines rely on structured data to understand and cite your business.

htmlCopy-paste fix
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Acme Corp",
  "url": "https://acme.com",
  "description": "Leading provider of...",
  "sameAs": ["https://twitter.com/acme"]
}
</script>

JSON-LD gives AI models structured facts about your business so they can accurately cite you in answers.

Missing X-Frame-Options headerwarningSecurity

Without X-Frame-Options, your site can be embedded in iframes on malicious sites (clickjacking).

nginxCopy-paste fix
add_header X-Frame-Options "SAMEORIGIN" always;

Prevents your pages from being loaded inside frames on other domains.

No FAQ section detectedwarningGEO

FAQ pages with FAQPage schema are among the most-cited content in AI search. Your site is missing this.

htmlCopy-paste fix
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [{
    "@type": "Question",
    "name": "What does your company do?",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": "We provide..."
    }
  }]
}
</script>

FAQPage schema makes your Q&A content machine-readable — one of the top signals for AI citation.

Images missing alt textwarningAccessibility

3 of 8 images are missing alt attributes. Screen readers cannot describe these to visually impaired users.

htmlCopy-paste fix
<!-- Before -->
<img src="hero.jpg">

<!-- After -->
<img src="hero.jpg" alt="Team collaborating on project dashboard">

Alt text makes images accessible and gives search engines more context about your page content.

No meta descriptionwarningSEO

The page is missing a meta description. Search engines will generate one automatically, but it may not be ideal.

htmlCopy-paste fix
<meta name="description" content="Acme Corp helps businesses scale with AI-powered automation. Free trial, no credit card required.">

A compelling meta description improves click-through rates from search results by 5-10%.

Slow Largest Contentful Paint (3.2s)warningPerformance

LCP measures when the largest content element becomes visible. Your 3.2s is above the 2.5s threshold for Good.

htmlCopy-paste fix
<!-- Preload the hero image -->
<link rel="preload" as="image" href="/hero.webp" fetchpriority="high">

<!-- Use next-gen format -->
<picture>
  <source srcset="/hero.avif" type="image/avif">
  <source srcset="/hero.webp" type="image/webp">
  <img src="/hero.jpg" alt="Hero" loading="eager">
</picture>

Preloading and using modern image formats can cut LCP by 40-60%.

Missing Strict-Transport-Security headerinfoSecurity

HSTS forces browsers to use HTTPS, preventing protocol downgrade attacks.

nginxCopy-paste fix
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;

Once set, browsers will always use HTTPS for your domain, even if the user types http://.

Also Included in Every Deep Scan

Branded PDF Report

Download and share with clients or stakeholders. Professional layout with scores, issues, and fixes.

AI-Generated Action Plan

Prioritized fix recommendations with time estimates. Know exactly what to fix first for maximum impact.

Copy-Paste Code Fixes

Every issue comes with ready-to-use code snippets in your framework. No guessing — just paste and deploy.

Score History

Track your progress over time. Re-scan and see your score improve as you fix issues.

Get Your Deep Scan Now

Scan your website and unlock the full report with all issues, code fixes, and AI action plan.

Scan Your Website — $9 $4.50

One-time payment. Instant delivery. 100% money-back guarantee.