chartify
chartify copied to clipboard
Update options.py
What this PR does / why we need it: It fixes the insecure YAML deserialization bug found on the _core/options.py module, it uses yaml.safe_load() rather than the unsafe function yaml.load(), insecure deserialization, in this case, leads to Arbitrary Code Execution.
Which issue(s) this PR fixes it fixes the insecure yaml deserialization, using yaml.safe_load() rather than yamlload()