C++: Do something similar with the other three cases.

This commit is contained in:
Geoffrey White 2023-01-13 20:27:07 +00:00
Родитель 316117f5c9
Коммит 1a416884d4
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -31,9 +31,7 @@ predicate hardCodedAddressOrIP(StringLiteral txt) {
// Hard-coded ip addresses, such as 127.0.0.1
s.regexpMatch("\"[0-9]+[.][0-9]+[.][0-9]+[.][0-9]+\"") or
// Hard-coded addresses such as www.mycompany.com
s.matches("\"www.%\"") or
s.matches("\"http:%\"") or
s.matches("\"https:%\"") or
s.regexpMatch("\"(www\\.|http:|https:).*\"") or
s.regexpMatch("\".*\\.(" + concat(getATopLevelDomain(), "|") + ")\"")
)
}