C++: Exclude 'path'.

This commit is contained in:
Geoffrey White
2021-07-22 12:37:58 +01:00
parent 86ee5fea40
commit 1d582182b0
3 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,8 @@ private predicate suspicious(string s) {
not (
s.matches("%hash%") or
s.matches("%crypt%") or
s.matches("%file%")
s.matches("%file%") or
s.matches("%path%")
)
}