-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 0.11.1 okta * Update siteapp/authentication/OIDCAuthentication.py * Dynamically set Internet schme (http or https) for swagger interface * Bulk update a component's statements across all systems #1797 * Added support for multiple overlays and compliance catalogs Load default SSP AppSource and Webhooks * Add SAST and secrets detection to linting * Sync requirements.in with latest version * 1-Add CMMCv2 catalog/baselines * 1-Update python libraries for urllib3 * 2-Add --extra-index-url to requirements.txt * 3-Change python index to pypi.org/simple * 4-Bump pyopenssl==23.2.0 * 5-downgrade to Django 18 * 6-Controls/models.py auto_prefetch.Model.Meta * 7-Bump Django version to 3.2.19 * 8-Point index-url to pypi * 1-Add CMMCv2 catalog/baselines * 2-Updated python libraries * 3-GovReady updae python requirements * Delete q-files/vendors/laurasia directory --------- Co-authored-by: Schaad, Mark A <[email protected]> Co-authored-by: Muhlenkamp, Brian F <[email protected]> Co-authored-by: Drake, Xavier <[email protected]> Co-authored-by: Greg Elin <[email protected]>
- Loading branch information
1 parent
b408ae5
commit 9851f5e
Showing
39 changed files
with
147,014 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# see http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
insert_final_newline = false | ||
indent_style = space | ||
indent_size = 4 | ||
charset = utf-8 | ||
|
||
[*.{tf,tfvars,tpl}] | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
|
||
[*.sh] | ||
indent_style = unset | ||
trim_trailing_whitespace = unset | ||
insert_final_newline = unset | ||
indent_size = 2 | ||
charset = utf-8 | ||
|
||
[*.py] | ||
charset = utf-8 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
indent_size = 2 | ||
charset = utf-8 | ||
|
||
[*.{yml,ansible-lint,yamllint}] | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
|
||
[Makefile] | ||
indent_style = tab | ||
indent_size = 1 | ||
|
||
[*.ps1] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.snyk] | ||
indent_size = 2 | ||
charset = utf-8 | ||
|
||
[/**] | ||
indent_size = unset | ||
insert_final_newline = unset | ||
indent_size = unset | ||
indent_style = unset | ||
insert_final_newline = unset | ||
trim_trailing_whitespace = unset | ||
|
||
[q-files/**] | ||
indent_size = unset | ||
insert_final_newline = unset | ||
indent_size = unset | ||
indent_style = unset | ||
insert_final_newline = unset | ||
trim_trailing_whitespace = unset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,4 +128,4 @@ frontend/static/ | |
environment.okta.json | ||
|
||
# branding | ||
*_branding | ||
*_branding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
--- | ||
variables: | ||
PYTHONIOENCODING: "utf-8" | ||
LDRNET_CERT: $LDRNET_CERT | ||
UMBRELLA_CERT: $UMBRELLA_CERT | ||
|
||
default: | ||
tags: | ||
- docker | ||
|
||
include: | ||
- template: Jobs/SAST-IaC.gitlab-ci.yml | ||
- template: Jobs/SAST.gitlab-ci.yml | ||
- template: Jobs/Secret-Detection.gitlab-ci.yml | ||
|
||
stages: | ||
- lint | ||
- test | ||
|
||
lint-terraform: | ||
stage: lint | ||
image: | ||
name: hashicorp/terraform:latest | ||
entrypoint: [""] | ||
environment: | ||
name: "Terraform Lint Check" | ||
script: | ||
- terraform fmt -check=true -diff=true -recursive | ||
when: always | ||
only: | ||
- pushes | ||
- merge_requests | ||
tags: | ||
- docker | ||
|
||
lint-editorconfig: | ||
stage: lint | ||
image: moskey71/eclint-lint:v1 | ||
script: | ||
- make -f /Makefile eclint/lint | ||
when: always | ||
only: | ||
- pushes | ||
- merge_requests | ||
tags: | ||
- docker | ||
|
||
secret_detection: | ||
tags: | ||
- docker | ||
|
||
iac-sast: | ||
tags: | ||
- docker | ||
|
||
kics-iac-sast: | ||
tags: | ||
- docker | ||
|
||
sast: | ||
tags: | ||
- docker | ||
|
||
bandit-sast: | ||
tags: | ||
- docker | ||
|
||
brakeman-sast: | ||
tags: | ||
- docker | ||
|
||
eslint-sast: | ||
tags: | ||
- docker | ||
|
||
flawfinder-sast: | ||
tags: | ||
- docker | ||
|
||
kubesec-sast: | ||
tags: | ||
- docker | ||
|
||
gosec-sast: | ||
tags: | ||
- docker | ||
|
||
mobsf-android-sast: | ||
tags: | ||
- docker | ||
|
||
mobsf-ios-sast: | ||
tags: | ||
- docker | ||
|
||
nodejs-scan-sast: | ||
tags: | ||
- docker | ||
|
||
phpcs-security-audit-sast: | ||
tags: | ||
- docker | ||
|
||
pmd-apex-sast: | ||
tags: | ||
- docker | ||
|
||
security-code-scan-sast: | ||
tags: | ||
- docker | ||
|
||
semgrep-sast: | ||
tags: | ||
- docker | ||
|
||
sobelow-sast: | ||
tags: | ||
- docker | ||
|
||
spotbugs-sast: | ||
tags: | ||
- docker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
extends: default | ||
rules: | ||
document-end: disable | ||
document-start: disable | ||
comments: | ||
min-spaces-from-content: 1 | ||
line-length: | ||
level: warning | ||
max: 500 | ||
|
||
yaml-files: | ||
- '*.yaml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.