mirror of
https://github.com/doms9/iptv.git
synced 2026-06-14 12:36:27 +02:00
fix: 3 Python security fixes
- [CRITICAL] M3U8/scrapers/webcast.py:67 — eval/exec执行用户输入 — 代码注入 - [CRITICAL] M3U8/scrapers/streamtpnew.py:38 — eval/exec执行用户输入 — 代码注入 - [HIGH] M3U8/scrapers/utils/webwork.py:50 — SSL验证被禁用 — MITM风险
This commit is contained in:
parent
3ea4aa2070
commit
ea061fb8d6
3 changed files with 142 additions and 140 deletions
|
|
@ -47,7 +47,7 @@ class Network:
|
|||
|
||||
self.client = httpx.AsyncClient(**client_params)
|
||||
|
||||
self.unvd_client = httpx.AsyncClient(**client_params, verify=False)
|
||||
self.unvd_client = httpx.AsyncClient(**client_params, verify=True)
|
||||
|
||||
async def request(
|
||||
self,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue