mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
19 lines
472 B
Python
19 lines
472 B
Python
import builtins
|
|
import io
|
|
|
|
open("filepath") # $getAPathArgument="filepath"
|
|
open(file="filepath") # $getAPathArgument="filepath"
|
|
|
|
o = open
|
|
|
|
o("filepath") # $getAPathArgument="filepath"
|
|
o(file="filepath") # $getAPathArgument="filepath"
|
|
|
|
|
|
builtins.open("filepath") # $getAPathArgument="filepath"
|
|
builtins.open(file="filepath") # $getAPathArgument="filepath"
|
|
|
|
|
|
io.open("filepath") # $getAPathArgument="filepath"
|
|
io.open(file="filepath") # $getAPathArgument="filepath"
|