Social Media Automation & Growth Hub Registry (Post-Fixation Production Settings)
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.
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.
Community scraping and marketing tool. Scrapes active members from target tags and communities (e.g., #ثانوية_عامة, #ثالثة_ثانوي) and executes follow/invitation loops within platform boundaries.
Launches Playwright headless contexts periodically to browse timeline/scrolling feeds, keeping browser cookie files alive and refreshing credentials without manual intervention.
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.
Utility script deployed directly to remote VPS instances. Automatically updates cookie normalizers, implements strict character checks, and purges corrupt caching logs on the server.
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
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.
Modified local memory optimization tools to prevent background sweep daemons from deleting browser data directories, protecting active Telegram and Chrome logins.