-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsecurity-report.html
More file actions
39 lines (39 loc) · 1.68 KB
/
security-report.html
File metadata and controls
39 lines (39 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Security Report</title>
<style>
body { font-family: Arial, sans-serif; margin: 2rem; background: #f5f5f5; }
.container { max-width: 1200px; margin: 0 auto; background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
h1 { color: #333; border-bottom: 3px solid #f44336; padding-bottom: 1rem; }
.info { background: #e3f2fd; padding: 1rem; border-left: 4px solid #2196f3; margin: 1rem 0; }
.security { background: #fce4ec; padding: 1rem; border-left: 4px solid #e91e63; margin: 1rem 0; }
ul { line-height: 1.8; }
</style>
</head>
<body>
<div class="container">
<h1>🔒 Security Report</h1>
<div class="info">
<p><strong>Scan Type:</strong> OWASP ZAP Baseline</p>
<p><strong>Generated:</strong> $(date)</p>
<p><strong>Version:</strong> v1.0.2</p>
</div>
<div class="security">
<h2>Security Scan Status</h2>
<p>Security scanning is performed as part of the main deployment workflow.</p>
<p>This static HTML/CSS website implements:</p>
<ul>
<li>Content Security Policy (CSP) headers</li>
<li>HTTPS enforcement</li>
<li>Security headers (X-Frame-Options, X-Content-Type-Options)</li>
<li>Regular dependency updates</li>
<li>OpenSSF Scorecard monitoring</li>
</ul>
</div>
<p>See main workflow for latest security scan results.</p>
</div>
</body>
</html>