Files
codeql/python/ql/test/library-tests/frameworks/dill/Decoding.py
Rasmus Wriedt Larsen 75b06d8a25 Python: Model dill.load
2021-10-08 11:55:54 +02:00

7 lines
462 B
Python

import dill
dill.load(file_) # $ decodeInput=file_ decodeOutput=dill.load(..) decodeFormat=dill decodeMayExecuteInput
dill.load(file=file_) # $ decodeInput=file_ decodeOutput=dill.load(..) decodeFormat=dill decodeMayExecuteInput
dill.loads(payload) # $ decodeInput=payload decodeOutput=dill.loads(..) decodeFormat=dill decodeMayExecuteInput
dill.loads(str=payload) # $ decodeInput=payload decodeOutput=dill.loads(..) decodeFormat=dill decodeMayExecuteInput