mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
8 lines
231 B
Python
8 lines
231 B
Python
open("filepath") # $getAPathArgument="filepath"
|
|
open(file="filepath") # $getAPathArgument="filepath"
|
|
|
|
o = open
|
|
|
|
o("filepath") # $ MISSING: getAPathArgument="filepath"
|
|
o(file="filepath") # $ MISSING: getAPathArgument="filepath"
|