Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check that what proxy validators return are IPs #110

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion botright/modules/proxy_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from typing import Dict, List, Optional

import httpx
import ipaddress
from async_class import AsyncObject, link


Expand Down Expand Up @@ -116,7 +117,9 @@ async def check_proxy(self, httpx_client: httpx.AsyncClient) -> None:
try:
ip_request = await httpx_client.get(get_ip_api, timeout=self.timeout)
ip = ip_request.json().get("ip")
break
ip_addr = ipaddress.ip_address(ip)
if isinstance(ip_addr, (ipaddress.IPv6Address, ipaddress.IPv4Address)):
break
except Exception:
pass
else:
Expand Down