-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathAbout.cshtml
More file actions
71 lines (65 loc) · 3.22 KB
/
About.cshtml
File metadata and controls
71 lines (65 loc) · 3.22 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@page
@model AboutModel
@{
ViewData["Title"] = "About GitHub Advanced Security";
}
<div class="container">
<h1>@ViewData["Title"]</h1>
<hr />
<div class="row">
<div class="col-md-8">
<h2>What is GitHub Advanced Security (GHAS)?</h2>
<p>
GitHub Advanced Security (GHAS) is a suite of security features that help you identify and fix vulnerabilities in your code.
It provides tools to improve your security posture and protect your software development lifecycle.
</p>
<h3>Key Features of GHAS:</h3>
<ul>
<li>
<strong>Code Scanning:</strong> Automatically identify vulnerabilities in your code using CodeQL, the semantic code analysis engine.
</li>
<li>
<strong>Secret Scanning:</strong> Detect secrets and credentials committed to your repositories.
</li>
<li>
<strong>Dependency Review:</strong> Get insights about dependency changes and their security impact when reviewing pull requests.
</li>
<li>
<strong>Dependabot:</strong> Receive automatic alerts and pull requests to update vulnerable dependencies.
</li>
<li>
<strong>Security Overview:</strong> Get a comprehensive view of your security alerts across repositories and organizations.
</li>
</ul>
<h3>Benefits</h3>
<p>
With GitHub Advanced Security, teams can:
</p>
<ul>
<li>Find security vulnerabilities before they reach production</li>
<li>Shift security left in the development lifecycle</li>
<li>Meet compliance requirements with built-in reports</li>
<li>Automate security checks in CI/CD pipelines</li>
<li>Reduce the risk of data breaches and security incidents</li>
</ul>
<p>
Learn more about GHAS at <a href="https://github.com/features/security" target="_blank">GitHub's security features page</a>.
</p>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-header bg-primary text-white">
<h4 class="mb-0">GHAS Resources</h4>
</div>
<div class="card-body">
<ul class="list-unstyled">
<li><a href="https://docs.github.com/en/code-security" target="_blank">GitHub Code Security Documentation</a></li>
<li><a href="https://docs.github.com/en/code-security/code-scanning" target="_blank">Code Scanning Documentation</a></li>
<li><a href="https://docs.github.com/en/code-security/secret-scanning" target="_blank">Secret Scanning Documentation</a></li>
<li><a href="https://docs.github.com/en/code-security/dependabot" target="_blank">Dependabot Documentation</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>