v2: ID verification by state, 15 photos/5 albums, 20 quick replies, logo, mobile polish

This commit is contained in:
Ryan Salazar
2026-06-26 21:08:57 -04:00
parent c6238c3bcf
commit e03d929977
121 changed files with 6380 additions and 153 deletions

23
deploy/dns-trace.py Normal file
View File

@@ -0,0 +1,23 @@
#!/usr/bin/env python3
import paramiko
PASS = "Bbt9115xty9176!"
c = paramiko.SSHClient()
c.set_missing_host_key_policy(paramiko.AutoAddPolicy())
c.connect("10.10.0.10", username="localadministrator", password=PASS, timeout=30)
cmds = [
"dig @ns71.domaincontrol.com www.exposedgays.com ANY +noall +answer",
"dig @ns71.domaincontrol.com exposedgays.com ANY +noall +answer",
"dig +trace www.exposedgays.com A 2>&1 | tail -20",
"dig 03079a26-f14c-4622-b463-ba54a24f7472.cfargotunnel.com A +short",
"getent hosts www.exposedgays.com",
"resolvectl query www.exposedgays.com 2>/dev/null || systemd-resolve --status www.exposedgays.com 2>/dev/null | head -20",
]
for cmd in cmds:
print(f"\n=== {cmd} ===")
_, o, e = c.exec_command(cmd, timeout=60)
o.channel.recv_exit_status()
print((o.read() + e.read()).decode(errors="replace")[:4000])
c.close()