generated from codacy/codacy-public-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: scan secrets only for changed files (#35)
- Loading branch information
Showing
6 changed files
with
232 additions
and
68 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,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module name="root"> | ||
<module name="secret" /> | ||
<module name="vulnerability" /> | ||
</module> |
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,10 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<checkstyle version="1.5"> | ||
<file name="aws-config.txt"> | ||
<error source="secret" line="1" message="Possible hardcoded secret: AWS Secret Access Key" severity="error" /> | ||
<error source="secret" line="2" message="Possible hardcoded secret: AWS Access Key ID" severity="error" /> | ||
</file> | ||
<file name="dart/pubspec.lock"> | ||
<error source="vulnerability" line="20" message="Insecure dependency [email protected] (CVE-2021-31402: dio vulnerable to CRLF injection with HTTP method string) (update to 5.0.0)" severity="error" /> | ||
</file> | ||
</checkstyle> |
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,4 @@ | ||
'AWS_secret_KEY'="12ASD34qwe56CXZ78tyH10Tna543VBokN85RHCas" | ||
AWS_ACCESS_KEY_ID=AKIA0123456789ABCDEF | ||
"aws_account_ID":'1234-5678-9123' | ||
AWS_example=AKIAIOSFODNN7EXAMPLE% |
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,85 @@ | ||
# Generated by pub | ||
# See https://dart.dev/tools/pub/glossary#lockfile | ||
packages: | ||
async: | ||
dependency: transitive | ||
description: | ||
name: async | ||
sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "2.11.0" | ||
collection: | ||
dependency: transitive | ||
description: | ||
name: collection | ||
sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.18.0" | ||
dio: | ||
dependency: "direct main" | ||
description: | ||
name: http | ||
sha256: "5895291c13fa8a3bd82e76d5627f69e0d85ca6a30dcac95c4ea19a5d555879c2" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "4.0.0" | ||
http_parser: | ||
dependency: transitive | ||
description: | ||
name: http_parser | ||
sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "4.0.2" | ||
meta: | ||
dependency: transitive | ||
description: | ||
name: meta | ||
sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.11.0" | ||
path: | ||
dependency: transitive | ||
description: | ||
name: path | ||
sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.8.3" | ||
source_span: | ||
dependency: transitive | ||
description: | ||
name: source_span | ||
sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.10.0" | ||
string_scanner: | ||
dependency: transitive | ||
description: | ||
name: string_scanner | ||
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.2.0" | ||
term_glyph: | ||
dependency: transitive | ||
description: | ||
name: term_glyph | ||
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.2.1" | ||
typed_data: | ||
dependency: transitive | ||
description: | ||
name: typed_data | ||
sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.3.2" | ||
sdks: | ||
dart: ">=3.1.0 <4.0.0" |
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