-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug: ENV variable SE_VNC_PASSWORD contains sensitive data
Signed-off-by: Viet Nguyen Duc <nguyenducviet4496@gmail.com>
Showing
6 changed files
with
71 additions
and
16 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,53 @@ | ||
name: Scan Dockerfile vulnerabilities | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**/Dockerfile' | ||
pull_request: | ||
paths: | ||
- '**/Dockerfile' | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
build-and-scan: | ||
name: Scan Dockerfile vulnerabilities | ||
permissions: write-all | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set severity for PRs | ||
if: github.event_name == 'pull_request' || github.event_name == 'push' | ||
run: | | ||
echo "SEVERITY=HIGH,CRITICAL" >> $GITHUB_ENV | ||
echo "EXIT_CODE=1" >> $GITHUB_ENV | ||
- name: Set severity for others | ||
if: github.event_name != 'pull_request' && github.event_name != 'push' | ||
run: | | ||
echo "SEVERITY=LOW,MEDIUM,HIGH,CRITICAL" >> $GITHUB_ENV | ||
echo "EXIT_CODE=0" >> $GITHUB_ENV | ||
- name: Scan source code | ||
uses: aquasecurity/trivy-action@master | ||
with: | ||
scan-type: 'fs' | ||
scan-ref: '.' | ||
format: 'sarif' | ||
output: 'source-results.sarif' | ||
scanners: 'vuln,secret,misconfig' | ||
skip-dirs: 'tests,Video' | ||
exit-code: '${{ env.EXIT_CODE }}' | ||
severity: '${{ env.SEVERITY }}' | ||
limit-severities-for-sarif: true | ||
- name: Upload source scan results to annotations | ||
if: always() | ||
uses: Ayrx/sarif_to_github_annotations@master | ||
with: | ||
sarif_file: 'source-results.sarif' | ||
- name: Upload source scan results to GitHub Security tab | ||
if: github.event_name != 'pull_request' | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: 'source-results.sarif' | ||
category: source-results |
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
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
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
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
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