Update the regex to be the original one

This commit is contained in:
luchua-bc
2020-10-29 13:04:15 +00:00
parent 908d659906
commit 90d11812be

View File

@@ -17,7 +17,7 @@ import PathGraph
* Gets a regular expression for matching names of variables that indicate the value being held may contain sensitive information
*/
private string getACredentialRegex() {
result = "(?i)(.*uri|url).*"
result = "(?i)(url).*"
}
/** Variable keeps sensitive information judging by its name * */