Skip to content

Commit

Permalink
Merge branch 'main' into gfs/#631
Browse files Browse the repository at this point in the history
  • Loading branch information
gfs authored Aug 26, 2024
2 parents e7308ca + 7e08341 commit a3a3d67
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.41] - 2024-08-23
## Rules
Extend the false positive fix for the issue reported in #548 to Sdk-style msbuild projects.

## [1.0.40] - 2024-7-08
## Fix
Fixes extraneous printing of git errors when git ignore checking is enabled during analysis.
Expand Down
17 changes: 15 additions & 2 deletions rules/default/security/privacy/secrets.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,26 @@
},
"negate_finding": true,
"search_in": "same-line"
},
{
"pattern" :
{
"pattern": "<InternalsVisibleTo Include=",
"type": "substring",
"scopes": [
"code"
]
},
"negate_finding": true,
"search_in": "same-line"
}
],
"must-match": [
"var hash = \"121212121212121212121212121212\""
],
"must-not-match": [
"[assembly: InternalsVisibleTo(\"Application.Tests, PublicKey=1234567890abcd\")]"
"[assembly: InternalsVisibleTo(\"Application.Tests, PublicKey=1234567890abcd\")]",
"<InternalsVisibleTo Include=\"Application.Tests\" Key=\"1234567890abcd\"/>"
]
},
{
Expand Down Expand Up @@ -69,4 +82,4 @@
"must-not-match": [
]
}
]
]

0 comments on commit a3a3d67

Please sign in to comment.