5 lines
130 B
Python
5 lines
130 B
Python
import requests
|
|
|
|
def fetch(path):
|
|
return requests.get("http://api.internal.example/" + path) # cleartext transport (CWE-319)
|