Skip to content

Commit d85aa55

Browse files
authored
Fix FP for .NET (#243)
1 parent fdabd56 commit d85aa55

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

detect_secrets/plugins/azure_storage_key.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class AzureStorageKeyDetector(RegexBasedDetector):
2323

2424
max_line_length = 4000
2525
max_part_length = 2000
26-
integrity_regex = re.compile(r'integrity[:=]')
26+
integrity_regex = re.compile(r'integrity[:=]|sha256|sha384|sha512')
2727

2828
denylist = [
2929
# Account Key (AccountKey=xxxxxxxxx)

tests/plugins/azure_storage_key_test.py

+16
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,22 @@ class TestAzureStorageKeyDetector:
199199
""",
200200
False,
201201
),
202+
(
203+
"""
204+
"Microsoft.AspNetCore.AzureAppServices.HostingStartup/2.0.1": {
205+
"sha512": "hdneJMBdHdrlMc/NYaNS8GFWlR/3tN7TsV/jOSBuc61+gWULwu45t+I7g5IF/iCHWI9PLMLNP5VOj+d1Tv1zUA=="
206+
}
207+
""",
208+
False,
209+
),
210+
(
211+
"""
212+
"Microsoft.AspNetCore.AzureAppServicesIntegration/2.0": {
213+
"sha512": "r2JMiK8RB2mHGKWIc+NVViT++2ZxCAGJBbLtptINB32F/c3DrNEtKWVNs2MEldEb822llBjrRmsJ7cScCW+P7g=="
214+
}
215+
""",
216+
False,
217+
),
202218
],
203219
)
204220
def test_analyze(self, payload, should_flag):

0 commit comments

Comments
 (0)