After switching the urlopen and urlsplit imports in json_validation.py from jsonschema.compat (which was internal-only and is now removed) to urllib, bandit complains about using urlopen without rigorously checking the url schema. The only reason it didn't before is due to the indirect import in jsonschema.compat.
For now, I'm just going to mark it as # nosec but we should determine which schemas we need and alter the function to just support those.
|
with urlopen(uri) as url: |
After switching the
urlopenandurlsplitimports injson_validation.pyfromjsonschema.compat(which was internal-only and is now removed) tourllib,banditcomplains about usingurlopenwithout rigorously checking the url schema. The only reason it didn't before is due to the indirect import injsonschema.compat.For now, I'm just going to mark it as
# nosecbut we should determine which schemas we need and alter the function to just support those.relation_engine/relation_engine_server/utils/json_validation.py
Line 168 in bc5c32d