Tainted flow: 'HEALTH_ENDPOINT' from os.environ.get (line 9, credential/environment) → requests.get (network output)
Critical
- Category
- Data Flow
- Content
def health_check(): try: r = requests.get(HEALTH_ENDPOINT, timeout=5) return r.status_code == 200 except Exception: return False- Confidence
- 97% confidence
- Finding
- r = requests.get(HEALTH_ENDPOINT, timeout=5)
