Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
5b49913b
Commit
5b49913b
authored
Mar 13, 2020
by
Seth Berger
Committed by
Achilleas Pipinellis
Mar 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added quickstart to application security docs
parent
24250d31
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
doc/user/application_security/index.md
doc/user/application_security/index.md
+29
-0
No files found.
doc/user/application_security/index.md
View file @
5b49913b
...
...
@@ -13,6 +13,35 @@ information provided, you can immediately begin risk analysis and remediation.
For an overview of application security with GitLab, see
[
Security Deep Dive
](
https://www.youtube.com/watch?v=k4vEJnGYy84
)
.
## Quick start
Get started quickly with Dependency Scanning, License Scanning, and Static Application Security
Testing (SAST) by adding the following to your
`.gitlab-ci.yml`
:
```
yaml
include
:
-
template
:
Dependency-Scanning.gitlab-ci.yml
-
template
:
License-Scanning.gitlab-ci.yml
-
template
:
SAST.gitlab-ci.yml
```
To add Dynamic Application Security Testing (DAST) scanning, add the following to your
`.gitlab-ci.yml`
and replace
`https://staging.example.com`
with a staging server's web address:
```
yaml
include
:
-
template
:
DAST.gitlab-ci.yml
variables
:
DAST_WEBSITE
:
https://staging.example.com
```
To ensure the DAST scanner runs
*after*
deploying the application to the staging server, review the
[
DAST full documentation
](
dast/index.md
)
.
To add Container Scanning, follow the steps listed in the
[
Container Scanning documentation
](
container_scanning/index.md#requirements
)
.
To further configure any of the other scanners, refer to each scanner's documentation.
## Security scanning tools
GitLab uses the following tools to scan and report known vulnerabilities found in your project.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment