From ab12c706aba68be66e4d969205eccdd0f4f42d11 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Tue, 4 Dec 2018 15:30:47 -0800 Subject: [PATCH] Suppress false-positives in credential scanning (#4392) --- .config/CredScanSuppressions.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .config/CredScanSuppressions.json diff --git a/.config/CredScanSuppressions.json b/.config/CredScanSuppressions.json new file mode 100644 index 0000000000..2f6299934d --- /dev/null +++ b/.config/CredScanSuppressions.json @@ -0,0 +1,25 @@ +{ + "tool": "Credential Scanner", + "suppressions": [ + { + "placeholder": "password", + "_justification": "This is a fake password used in test code." + }, + { + "placeholder": "newpassword", + "_justification": "This is a fake password used in test code." + }, + { + "placeholder": "AAABAgMEBQYHCAkKCwwNDg+ukCEMDf0yyQ29NYubggE=", + "_justification": "This is a fake password hash used in test code." + }, + { + "placeholder": "1qaz!QAZ", + "_justification": "This is a fake password used in test code." + }, + { + "placeholder": "1qaz@WSX", + "_justification": "This is a fake password used in test code." + } + ] +}