-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Gitlab CI tests * Improve URI credentials detection * Update severity * Update tests * Update config * Update severity * Remove semgrep telemetry * Bump version * Trim deps * Update AWS Account ID rule * Update README * Lazy-load parsers * Update README * Lazy-load parsers * Update README * Update RELEASE NOTES
- Loading branch information
Showing
23 changed files
with
216 additions
and
148 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
variables: | ||
USERNAME: admin | ||
PASSWORD: HardcodedAdminPassword01 | ||
APIKEY: 23d968ff-10b9-4e6f-a33a-hardcoded02 | ||
|
||
compliant: | ||
stage: test | ||
script: | ||
- curl https://$USERNAME:[email protected] | ||
- curl https://git.hosting-name.com/?APIKEY=$APIKEY | ||
|
||
noncompliant: | ||
stage: test | ||
script: | ||
- curl https://admin:[email protected] | ||
- curl https://git.hosting-name.com/?APIKEY=23d968ff-10b9-4e6f-a33a-hardcoded04 |
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
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 |
---|---|---|
|
@@ -15,6 +15,6 @@ http { | |
server { | ||
set $apikey 23d968ff-10b9-4e6f-a33a-hardcoded01; | ||
proxy_set_header x-apikey 23d968ff-10b9-4e6f-a33a-hardcoded02; | ||
proxy_set_header x-url https://admin:[email protected]; | ||
proxy_set_header x-url https://admin:23d968ff-10b9-4e6f-a33a-[email protected]; | ||
} | ||
} |
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.