Tainted flow: 'url' from os.environ.get (line 19, credential/environment) → urllib.request.urlopen (network output)
Critical
- Category
- Data Flow
- Content
ctx = ssl.create_default_context() ctx.check_hostname = False ctx.verify_mode = ssl.CERT_NONE with urllib.request.urlopen(url, timeout=30, context=ctx) as r: data = r.read() with open(filepath, 'wb') as f: f.write(data)- Confidence
- 99% confidence
- Finding
- with urllib.request.urlopen(url, timeout=30, context=ctx) as r:
