Cage

Cage Service Docs

Documentation Hub

Account Creator

Automate Rockstar Social Club account registration — open a browser, fill forms, verify via email, and save completed accounts.

Overview

The Account Creator automates the entire Rockstar Social Club account registration process. It launches an automated browser, fills in the registration forms with generated details, submits the form, waits for the verification email, verifies the account via IMAP, and saves the completed account credentials to a file. Failed accounts are logged separately for retry.

Prerequisites

Email accounts in emails.txt
IMAP access to your email provider
Stable internet connection
Recommended: Mysterium VPN for IP rotation

Workflow

Here's the step-by-step flow the Account Creator follows for each email:

Step 1

Load email accounts from emails.txt

Step 2

Launch automated browser session

Step 3

Fill registration form with random name, configured password, and random birth date

Step 4

Submit form and wait for verification email

Step 5

Verify account via IMAP — read and process the verification email

Step 6

Save completed account to doneEmails.txt

Step 7

If failed, save to failedAccounts.txt for later retry

Step 8

Repeat for the next email in the list

Configuration Reference

All available configuration fields for the Account Creator:

FieldKeyTypeDescription
IMAP Serverimap_serverstringEmail server address (e.g. imap.firstmail.ltd)
IMAP Portimap_portintegerIMAP port (default: 993)
Mysterium VPNmysterium_vpn_enabledbooleanEnable VPN IP rotation
VPN Pathmysterium_vpn_exestringPath to Mysterium VPN executable
IP Change Intervalvpn_switch_intervalintegerChange IP every N accounts
Reuse Failedreuse_failedbooleanRetry previously failed accounts
Name Prefixname_prefixstringOptional prefix for generated names
Default Passwordsocial_passstringPassword for created accounts
Random Passwordsrandom_social_passbooleanGenerate random passwords instead
Save Default Passwordsave_social_passbooleanInclude password in output file
Registration URLregistration_urlstringRockstar registration page URL
Max Retriesmax_retriesintegerMaximum retry attempts per account
Timeouttimeout_defaultintegerDefault timeout in seconds
Page Load Timeoutpage_load_timeoutintegerBrowser page load timeout in seconds
Birth Year Rangebirth_year_rangestringRange for random birth year (e.g. "1985,2003")

Input / Output Files

emails.txt

Input — one account per line: email:password

doneEmails.txt

Output — successfully created accounts: email:emailpass:socialpass

failedAccounts.txt

Output — accounts that failed during creation

# emails.txt — example input
john.doe@firstmail.ltd:MyP4ssw0rd
sarah99@firstmail.ltd:S3cur3Pass
max.muster@firstmail.ltd:An0therPw

# doneEmails.txt — example output
john.doe@firstmail.ltd:MyP4ssw0rd:RockStar_Pw1
sarah99@firstmail.ltd:S3cur3Pass:RockStar_Pw2

Tips

Use a VPN to avoid rate limiting when creating many accounts. Mysterium VPN integration allows automatic IP rotation after a configurable number of accounts.
Make sure your email provider supports IMAP and that it's enabled in your account settings. Without IMAP access, the tool cannot read verification emails.

Next Steps