O M N I - S O C I A L

Social Media Automation & Growth Hub Registry (Post-Fixation Production Settings)

🖥️ Localhost Web Apps & Servers
🤖 Launcher Server
Port 8080

Serves a glassmorphic dashboard of accounts. Clicking on a card launches a visible (headful) Playwright Chromium browser loaded with active cookies to log in, bypass challenges, and sync cookie updates instantly to all 4 remote VPS servers.

Local File: dashboard_launcher.py
Domain: http://127.0.0.1:8080
python3 "/Users/khaledahmedmohamed/designs-content/R and D/dashboard social media/dashboard_launcher.py"
💬 Auto-Responder
Port 8081

Checks notifications/messages on Twitter, IG, TikTok, and FB. Uses cookie-authenticated Playwright instances to reply to comments/DMs dynamically with human-like Poisson delays.

Local File: auto_responder.py
Domain: http://127.0.0.1:8081
python3 "/Users/khaledahmedmohamed/designs-content/R and D/dashboard social media/auto_responder.py"
🚀 Overgrowth & Growth Hacking Scripts
🔥 Overgrowth Suite
Automation

Community scraping and marketing tool. Scrapes active members from target tags and communities (e.g., #ثانوية_عامة, #ثالثة_ثانوي) and executes follow/invitation loops within platform boundaries.

python3 engage_growth_overgrowth.py --platform twitter --account acc1
🔄 Session Keep-Alive
Daemon

Launches Playwright headless contexts periodically to browse timeline/scrolling feeds, keeping browser cookie files alive and refreshing credentials without manual intervention.

python3 "/Users/khaledahmedmohamed/designs-content/R and D/dashboard social media/session_sync_keep_alive.py"
🔑 Auto-Login Agent
CLI

Reads credentials from JSON, runs a headful browser, fills in usernames/passwords, prompts for 2FA code in the terminal, captures session cookies, and syncs them to VPS instances.

Local File: local_auto_login.py
python3 local_auto_login.py --platform all
🛠️ Central Fix Applicator
Utility

Utility script deployed directly to remote VPS instances. Automatically updates cookie normalizers, implements strict character checks, and purges corrupt caching logs on the server.

Local File: master_fix.py
python3 master_fix.py
⚡ Crucial Fixations Applied
1. Cookie Expiry Normalizer Patched (Security & Logins)

Browser session cookies (like X's auth_token) have expires keys set to -1. The old normalizer evaluated exp <= now, discarding vital keys. Fixed to only prune positive unix timestamps in the past:

if exp is not None and isinstance(exp, (int, float)) and exp > 0 and exp <= now:
    return None
2. X (Twitter) 270-Character Trimming

Fixed posting failures where the Post button disabled due to exceeding X's 280-character limit. Strictly enforces a 270-character cap on caption bodies.

3. macOS Memory Sweep Preservation Patched

Modified local memory optimization tools to prevent background sweep daemons from deleting browser data directories, protecting active Telegram and Chrome logins.

Patched Script: chrome-memory-fix.sh
Patched Script: mac-memory-optimization.sh
Command copied to clipboard!