forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnmatchableCaret.ql
More file actions
25 lines (23 loc) · 821 Bytes
/
Copy pathUnmatchableCaret.ql
File metadata and controls
25 lines (23 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* @name Unmatchable caret in regular expression
* @description If a caret assertion '^' appears in a regular expression after another term that
* cannot match the empty string, then this assertion can never match, so the entire
* regular expression cannot match any string.
* @kind problem
* @problem.severity error
* @id js/regex/unmatchable-caret
* @tags reliability
* correctness
* regular-expressions
* external/cwe/cwe-561
* @precision very-high
*/
import javascript
from RegExpCaret caret, RegExpTerm t
where
caret.isPartOfRegExpLiteral() and
t = caret.getPredecessor+() and
not t.isNullable() and
// conservative handling of multi-line regular expressions
not caret.getLiteral().isMultiline()
select caret, "This assertion can never match."