Tainted flow: 'href' from requests.get (line 100, network input) → requests.get (network output)
Medium
- Category
- Data Flow
- Content
# 百度搜索结果需要解析真实URL if 'baidu.com' in href and 'http' not in href: try: resp = requests.get(href, headers=HEADERS, timeout=5, allow_redirects=True) href = resp.url except: pass- Confidence
- 93% confidence
- Finding
- resp = requests.get(href, headers=HEADERS, timeout=5, allow_redirects=True)
