-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Description
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: |