We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d430ed commit fe9b72cCopy full SHA for fe9b72c
1 file changed
user_scanner/email_scan/adult/superporn.py
@@ -20,6 +20,10 @@ async def _check(email: str) -> Result:
20
try:
21
async with httpx.AsyncClient(timeout=4.0) as client:
22
response = await client.post(url, data=payload, headers=headers)
23
+
24
+ if response.status_code == 403:
25
+ return Result.error("Status: [403] IP blocked try using proxy or VPN")
26
27
data = response.json()
28
29
is_error = data.get("error")
0 commit comments