mirror of
https://github.com/github/codeql.git
synced 2026-02-15 14:33:40 +01:00
9 lines
350 B
Plaintext
9 lines
350 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
|