File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
python/ql/test/experimental/library-tests/frameworks/yaml Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 17
17
yaml .safe_load_all (payload ) # $ decodeInput=payload decodeOutput=Attribute() decodeFormat=YAML
18
18
yaml .unsafe_load_all (payload ) # $ decodeInput=payload decodeOutput=Attribute() decodeFormat=YAML decodeMayExecuteInput
19
19
yaml .full_load_all (payload ) # $ decodeInput=payload decodeOutput=Attribute() decodeFormat=YAML decodeMayExecuteInput
20
+
21
+ # C-based loaders with `libyaml`
22
+ yaml .load (payload , yaml .CLoader ) # $ decodeInput=payload decodeOutput=Attribute() decodeFormat=YAML decodeMayExecuteInput
23
+ yaml .load (payload , yaml .CFullLoader ) # $ decodeInput=payload decodeOutput=Attribute() decodeFormat=YAML decodeMayExecuteInput
24
+ yaml .load (payload , yaml .CSafeLoader ) # $decodeInput=payload decodeOutput=Attribute() decodeFormat=YAML SPURIOUS: decodeMayExecuteInput
25
+ yaml .load (payload , yaml .CBaseLoader ) # $decodeInput=payload decodeOutput=Attribute() decodeFormat=YAML SPURIOUS: decodeMayExecuteInput
You can’t perform that action at this time.
0 commit comments