We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b09da3c commit 02dad54Copy full SHA for 02dad54
Rules/AvoidUsingPlainTextForPassword.cs
@@ -37,7 +37,7 @@ public IEnumerable<DiagnosticRecord> AnalyzeScript(Ast ast, string fileName)
37
// Finds all ParamAsts.
38
IEnumerable<Ast> paramAsts = ast.FindAll(testAst => testAst is ParameterAst, true);
39
40
- List<String> passwords = new List<String>() {"Password", "Passphrase", "Auth", "Cred", "Credential"};
+ List<String> passwords = new List<String>() {"Password", "Passphrase", "Cred", "Credential"};
41
42
// Iterrates all ParamAsts and check if their names are on the list.
43
foreach (ParameterAst paramAst in paramAsts)
0 commit comments