Python: Use .matches instead of .indexOf() = 0

This commit is contained in:
Rasmus Wriedt Larsen 2020-07-02 11:43:23 +02:00
Родитель daa1b6fc79
Коммит 4a7bfbe091
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -65,7 +65,7 @@ class DjangoResponseContentXSSVulnerable extends DjangoResponseContent {
or
exists(StringValue s |
cls.getContentTypeArg(call).pointsTo(s) and
s.getText().indexOf("text/html") = 0
s.getText().matches("text/html%")
)
}
}