Skip to content

Commit a41a53e

Browse files
authored
Don't run AZ token on planfiles (#248)
1 parent df3cb0e commit a41a53e

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

detect_secrets/plugins/azure_storage_key.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def analyze_line(
5656
filename=filename, line=line, line_number=line_number,
5757
context=context, raw_context=raw_context, **kwargs,
5858
)
59-
output.update(self.analyze_context_keys(results, context, line))
59+
output.update(self.analyze_context_keys(results, context, line, filename))
6060

6161
return output
6262

@@ -65,9 +65,17 @@ def analyze_context_keys(
6565
results: Set[PotentialSecret],
6666
context: Optional[CodeSnippet],
6767
line: str,
68+
filename: str,
6869
) -> List[PotentialSecret]:
6970
context_text = '\n'.join(context.lines).replace('\n\n', '\n') if context else line
70-
return [result for result in results if self.context_keys_exists(result, context_text)]
71+
return [
72+
result for result in results if self.context_keys_exists(result, context_text) and
73+
self.should_analyze_file(filename)
74+
]
75+
76+
def should_analyze_file(self, filename: str) -> bool:
77+
excluded_files = {'tfplan.json', 'planfile.json'}
78+
return filename.split('/')[-1] not in excluded_files
7179

7280
def context_keys_exists(self, result: PotentialSecret, string: str) -> bool:
7381
if len(string) > self.max_line_length:

tests/plugins/azure_storage_key_test.py

+7
Original file line numberDiff line numberDiff line change
@@ -220,3 +220,10 @@ class TestAzureStorageKeyDetector:
220220
def test_analyze(self, payload, should_flag):
221221
logic = AzureStorageKeyDetector()
222222
assert bool(logic.analyze_line(filename='mock_filename', line=payload)) == should_flag
223+
224+
def test_analyze_tfplan_json(self):
225+
logic = AzureStorageKeyDetector()
226+
payload = 'AccountKey=lJzRc1YdHaAA2KCNJJ1tkYwF/+mKK6Ygw0NGe170Xu592euJv2wYUtBlV8z+qnlcNQSnIYVTkLWntUO1F8j8rQ=='
227+
# Flag if not planfile, don't if it is
228+
assert logic.analyze_line(filename='mock_filename', line=payload)
229+
assert not logic.analyze_line(filename='tfplan.json', line=payload)

0 commit comments

Comments
 (0)