mirror of
https://github.com/github/codeql.git
synced 2026-03-13 02:56:47 +01:00
10 lines
340 B
Plaintext
10 lines
340 B
Plaintext
import javascript
|
|
|
|
from Express::RouteSetup rs, Express::RouteSetup rs2
|
|
where
|
|
rs.handlesSameRequestMethodAs(rs2) and
|
|
rs.getLocation().getStartLine() < rs2.getLocation().getStartLine() and
|
|
rs.getLocation().getFile().getBaseName() = "csurf-example.js" and
|
|
rs2.getLocation().getFile().getBaseName() = "csurf-example.js"
|
|
select rs, rs2
|