7 hours ago
-
Email to Profile Mass scraping
---
Hello, RaidForums community.
-
Today, I'm going to show you how to run the Email2Profile script for Chess.com.
-
I've reverse-engineered Chess.com and discovered that you can submit millions of email addresses and farm usernames, effectively turning it into a Chess.com breach scrape.
I've crafted this script, and it's available for free download.
---
Here’s how you use it:
Save the script and name it whatever you’d like, as long as it has the .py extension.
For example:
Chess_email.py
Then, you run the script I wrote with:
python -c "from chess_email import check; import json; print(json.dumps(check('PLACEHOLDER@gmail.com'), indent=2))"
python -c "from chess_email import check; import json; print(json.dumps(check('PLACEHOLDER@gmail.com'), indent=2))"
The script will return information associated with the email address, including the username, country, membership status, and other account details.
The output includes:
Username
Name
User ID
Country
Membership
Requirements:
You'll need a Chess.com account for the cookies required by the script.
I use the following token configuration:
TOKENS = {
"CHESS_AUTH_TOKEN": "[REDACTED, my account JWT]",
"PHPSESSID": "[REDACTED, my session ID]",
"REMEMBERME": "",
"CHESS_PHONE_TOKEN": "[REDACTED, bearer JWT]",
"REFRESH_TOKEN": "dummy",
"__cf_bm": "[REDACTED]",
"cf_clearance": "[REDACTED]",
"BUCKETING_ID": "[REDACTED]",
"visitorid": "[REDACTED]",
"me": "[REDACTED]"
}
Name
User ID
Country
Membership
Requirements:
You'll need a Chess.com account for the cookies required by the script.
I use the following token configuration:
TOKENS = {
"CHESS_AUTH_TOKEN": "[REDACTED, my account JWT]",
"PHPSESSID": "[REDACTED, my session ID]",
"REMEMBERME": "",
"CHESS_PHONE_TOKEN": "[REDACTED, bearer JWT]",
"REFRESH_TOKEN": "dummy",
"__cf_bm": "[REDACTED]",
"cf_clearance": "[REDACTED]",
"BUCKETING_ID": "[REDACTED]",
"visitorid": "[REDACTED]",
"me": "[REDACTED]"
}
You have to use those values so you won't get caught by CAPTCHA.
Unfortunately, my previous method has been patched. It used to give me internal IDs, Phone Number and other information, but that method no longer works.
But this one's pretty good aswell.
If you have any difficulties or don't know how to get the cookies or configure the script, you can message me and I'll help you out!
