</>
Template Preview
Block-based
Generic Section Template
Reusable section layout used across all report sections. Yellow annotations indicate template blocks.
Section 1
Executive Summary
Comprehensive security posture overview across four cloud providers with 3,463 total findings analyzed.
This section provides an executive-level understanding of the assessment results and key risk indicators.
{% block section_header %}
1.1 Purpose & Objectives
{% block subsection_content %}
This Risk and Operational Assessment Report (ROAR) was commissioned by 3HUE Cybersecurity to provide a comprehensive evaluation of the organization's cloud security posture across all operational environments. The assessment covers Amazon Web Services (AWS), Microsoft Azure, Kubernetes (AKS), and GitHub as a code repository and CI/CD platform.
The primary objective is to identify, classify, and prioritize security vulnerabilities and misconfigurations that could expose the organization to material risk. The assessment was conducted using AiVRIC Vision, an enterprise security platform built on Prowler's open-source scanning engine.
Key Insight: The organization demonstrates a 72.4% overall pass rate across 3,463 security checks, with critical gaps concentrated in identity management (AWS root account) and supply chain security (GitHub).
{% block callout %}
1.2 Key Metrics
{% block stat_cards %}
Severity Distribution Chart
In the PDF, this area contains a pre-rendered matplotlib PNG chart.
<img src="data:image/png;base64,{{ chart_severity_donut }}" alt="Severity Distribution">
{% block chart_area %}
1.3 Provider Breakdown
{% block table_area %}
| Provider |
Total Findings |
Critical |
High |
Medium |
Low |
Passed |
Pass Rate |
| AWS |
525 |
3 |
34 |
185 |
57 |
303 |
57.7% |
| Azure |
205 |
0 |
110 |
32 |
0 |
63 |
30.7% |
| Kubernetes |
2,431 |
0 |
306 |
0 |
0 |
2,125 |
87.4% |
| GitHub |
184 |
13 |
154 |
0 |
0 |
17 |
9.2% |
| TOTAL |
3,463 |
16 |
604 |
217 |
57 |
2,508 |
72.4% |
The table above presents the aggregate findings across all assessed providers. AWS demonstrates the broadest attack surface with findings distributed across all severity levels. Azure shows a concentration of high-severity issues primarily related to encryption and network controls. Kubernetes, while having the highest volume of total findings, achieves the strongest pass rate at 87.4%. GitHub represents the most critical risk area with a 9.2% pass rate, driven by absent branch protection and secret scanning across all repositories.
Provider Comparison Bar Chart
Stacked bar chart showing pass/fail distribution per provider.
<img src="data:image/png;base64,{{ chart_provider_comparison }}" alt="Provider Comparison">
| Block Name |
Purpose |
Required |
Default Content |
{% block section_header %} |
Section number, title, and description |
Yes |
None |
{% block subsection_content %} |
Text paragraphs for subsection body |
Yes |
None |
{% block stat_cards %} |
Row of 3-4 stat metric cards |
No |
Empty (not rendered) |
{% block chart_area %} |
Pre-rendered chart image placeholder |
No |
Empty (not rendered) |
{% block table_area %} |
Data table with headers and rows |
No |
Empty (not rendered) |
{% block callout %} |
Highlighted insight/warning box |
No |
Empty (not rendered) |
CSS Page Break Rules
/* Each section starts on a new page */
.report-section {
page-break-before: always;
}
/* Keep subsection heading with its first paragraph */
.pdf-subsection-title {
page-break-after: avoid;
}
/* Prevent stat cards from splitting across pages */
.pdf-stat-row {
page-break-inside: avoid;
}
/* Keep chart with its caption */
.pdf-chart-wrapper {
page-break-inside: avoid;
}
/* Allow tables to break, but keep rows together */
.pdf-table tr {
page-break-inside: avoid;
}
/* Repeat table header on each page */
.pdf-table thead {
display: table-header-group;
}