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

28
deploy/_ssh_supabase.py Normal file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/env python3
import paramiko
PASS = "Bbt9115xty9176!"
users = ["root", "localadministrator", "admin", "ubuntu"]
for user in users:
print(f"\n=== trying {user}@10.10.0.11 ===")
c = paramiko.SSHClient()
c.set_missing_host_key_policy(paramiko.AutoAddPolicy())
try:
c.connect("10.10.0.11", username=user, password=PASS, timeout=15)
print("CONNECTED as", user)
for cmd in [
"hostname",
"ss -tlnp | grep ':80 ' || true",
"curl -sSI -H 'Host: thepinkpulse.com' http://127.0.0.1/ | head -8",
"curl -sSI -H 'Host: exposedgays.com' http://127.0.0.1/ | head -8",
"docker ps --format '{{.Names}}' | head -20",
"ls /etc/nginx/sites-enabled 2>/dev/null || ls /etc/caddy 2>/dev/null || ls /etc/traefik 2>/dev/null || echo no_proxy_dir",
]:
print(f"\n$ {cmd}")
_, o, e = c.exec_command(cmd, timeout=30)
o.channel.recv_exit_status()
print((o.read() + e.read()).decode(errors="replace")[:2000])
c.close()
break
except Exception as ex:
print("failed:", ex)