diff --git a/static/sitemap.xml b/static/sitemap.xml
deleted file mode 100644
index d13f630..0000000
--- a/static/sitemap.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- https://infrascan.soldevelo.com/
- weekly
- 1.0
-
-
diff --git a/templates/report.html b/templates/report.html
new file mode 100644
index 0000000..f54f2f3
--- /dev/null
+++ b/templates/report.html
@@ -0,0 +1,654 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
InfraScan Report for {{ metadata.repository_name }}
+
+ {% if google_tag_id %}
+
+
+
+ {% endif %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Scan GitHub Repo
+ Recent Scans
+ Release Notes
+ Local & CI/CD
+
+
+
+
+
+
+
+
+
Loading scan history...
+
+
+
📭
+
No scans recorded yet.
+
Run your first scan on the Scan GitHub Repo tab!
+
+
+
+
+
+
+
+
+
+
+
+ PDF Export : Reports can now be exported as a print-ready PDF directly from the browser — ideal for sharing with compliance and security teams.
+
+
+
+
+
+ Kubernetes Manifest Scanning : Added support for scanning Kubernetes
+ manifest files.
+ CI/CD Integration Examples : Added examples for GitHub Actions and
+ GitLab CI/CD.
+
+
+
+
+
+ Beautiful Colored CLI Summary : Integrated rich terminal formatting and
+ colors for findings directly in CI/CD logs.
+ Grading Overview : Real-time A-F grades for cost and security displayed
+ directly in logs.
+ CI/CD Optimization : Added display limits to prevent log flooding and
+ ensured text summary is always visible.
+ Improved Report Reliability : Enhanced standalone HTML generation using
+ robust regex injection.
+
+
+
+
+
+ Added option to scan in CI/CD using InfraScan CLI
+
+
+
+
+
+ Added **Private Mode** toggle: scans can now be performed without appearing in the
+ public "Recent Scans" history
+ Implemented **Pagination** for "Recent Scans" (5 scans per page) for improved navigation
+ and history management
+ Enhanced privacy controls: private scans are still accessible via their unique share
+ links
+ Optimized recent scans loading performance with frontend data slicing
+
+
+
+
+
+ Enhanced "One-Pager" dashboard with dynamic container expansion (up to 1400px)
+ Two-column optimized layout: side-by-side Cost and Security findings
+ Branding refresh: Integrated SolDevelo logo and detailed service value propositions
+ Intelligent UX: Automatic feedback request triggered by report engagement (scroll-based)
+
+ Added "Scroll to Top" functionality for easier navigation of long reports
+ Improved result persistence when switching between application tabs
+ User-friendly terminology: rebranded technical terms to "Cost" and "Security" focus
+ Fixed feedback modal accessibility and closing logic
+
+
+
+
+
+ Advanced dual-engine analysis: Real-time pattern matching and deep security inspection
+
+ Comprehensive rule set covering cost, security, and compliance best practices
+ Multi-tier scanning: Rapid assessment or deep infrastructure audit
+ Enterprise features: Budget tracking, spot instance optimization, and S3 lifecycle
+ management
+ Intelligent repository analysis with automated risk grouping
+ Professional dashboard with severity-based prioritization
+ Optimized for modern AWS and Terraform architectures
+
+
+
+
+
+
+
+
+
Official CLI
+
🚀 Local & CI/CD Usage
+
Experience the full power of InfraScan on your terms. Audit private infrastructure securely,
+ integrate into your DevOps pipelines, and generate professional reports locally.
+
+
+
+
+
+
🏠 Run Locally with Docker
+
Perfect for private projects. Your code stays on your machine, scanned by a
+ self-contained environment.
+
+
+
+
docker run --rm -v $(pwd):/scan soldevelo/infrascan:latest
+
+
💡 Mounts your current directory to /scan and provides
+ immediate CLI feedback.
+
+
+
+
+ {% raw %}
+
🤖 GitHub Actions
+
Stop vulnerabilities before they reach production. Seamlessly integrate InfraScan as a
+ gatekeeper in your PRs.
+
+
+
+
steps:
+ - uses: actions/checkout@v4
+ - name: Run InfraScan Audit
+ run: |
+ docker run --rm \
+ -v ${{ github.workspace }} :/scan \
+ soldevelo/infrascan:v1.0.5 \
+ --fail-on high_critical
+
+ {% endraw %}
+
+
+
+
+
📊 Professional HTML Reports
+
Generate beautiful, shareable HTML audit reports directly from the command line.
+
+
+
+
docker run --rm -v $(pwd):/scan soldevelo/infrascan \
+ --format html --out /scan/audit.html
+
+
+
+
+
+
+
+
+
+
+
+
+
Analyzing Infrastructure
+
Connecting to repository...
+
+
+
+
+
+ ⏳
+ Repository Clone
+
+
+ ⏳
+ Scanner Initialization
+
+
+ ⏳
+ IaC Cost & Security Audit
+
+
+ ⏳
+ Container Vulnerability Scan
+
+
+ ⏳
+ Finalizing Report
+
+
+
+
+
+
+
+
+
+
+
Need help implementing these fixes?
+
Hire our experts at SolDevelo .
+ Mention 'InfraScan' for a free initial consultation.
+
+
+
+
Share this link with your team:
+
+
+ Copy
+
+
+
+
+
+ InfraScan Report for {{ metadata.repository_name }}
+ Repository: {{ metadata.repository_url }}
+ Scan Date: {{ metadata.scan_timestamp }}
+ Overall Grade: {{ grade_report.overall.letter }} ({{ grade_report.overall.percentage }}%)
+ Total Issues: {{ summary.total }}
+
+ Cost Optimization
+ Grade: {{ grade_report.cost.letter }}
+
+ {% for finding in data.results or [] if finding.scanner == 'regex' %}
+ {{ finding.rule_id }}: {{ finding.resource }} in {{ finding.file }}
+ {% endfor %}
+
+
+ IaC Security
+ Grade: {{ grade_report.security.letter }}
+
+ {% for finding in data.results or [] if finding.scanner == 'checkov' %}
+ {{ finding.rule_id }}: {{ finding.resource }} in {{ finding.file }}
+ {% endfor %}
+
+
+ Container Security
+ Grade: {{ grade_report.container.letter }}
+
+ {% for finding in data.results or [] if finding.scanner in ['docker-scout', 'grype'] %}
+ {{ finding.rule_id }}: {{ finding.resource }}
+ {% endfor %}
+
+
+ Recommendations
+
+ {% for rec in data.analysis or [] %}
+ {{ rec }}
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+ InfraScan v1.0.6 © 2026 SolDevelo. Advanced Infrastructure Auditor.
+ This tool is Open Source –
+ contributions are welcome!
+
+
+
+ Made with ♥ by
+
+ .
+
+
+ Designed & Built by the SolDevelo Cloud
+ Engineering Team
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Would you like to subscribe to our newsletter?
+
+
+
+
+
+
+
+
+
Help us shape the future of InfraScan.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file