v2: ID verification by state, 15 photos/5 albums, 20 quick replies, logo, mobile polish
This commit is contained in:
12
deploy/check-dns-public.py
Normal file
12
deploy/check-dns-public.py
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env python3
|
||||
import urllib.request
|
||||
import ssl
|
||||
|
||||
ctx = ssl.create_default_context()
|
||||
req = urllib.request.Request("https://exposedgays.com/", headers={"User-Agent": "Mozilla/5.0"})
|
||||
with urllib.request.urlopen(req, timeout=15, context=ctx) as r:
|
||||
body = r.read(2000).decode(errors="replace")
|
||||
print("status:", r.status)
|
||||
print("headers:", dict(r.headers))
|
||||
print("body[:1500]:")
|
||||
print(body[:1500])
|
||||
Reference in New Issue
Block a user