Studio Cookie Locations
Windows[edit | edit source]
On Windows, the cookies are stored in the registry at Computer\HKEY_CURRENT_USER\SOFTWARE\Roblox\RobloxStudioBrowser\roblox.com
. Each cookie is stored as a REG_SZ value, the name of which is the cookie's name.
macOS[edit | edit source]
On macOS, the cookies are stored in a plist file at ~/Library/Preferences/com.roblox.RobloxStudioBrowser.plist
. Each cookie is formatted roblox.com.COOKIE_NAME
.
Cookie format[edit | edit source]
Here is an example of what a stored cookie looks like:
SEC::<YES>,EXP::<2050-01-01T20:00:00Z>,COOK::<_|WARNING:-DO-NOT-SHARE-THIS.--Sharing-this-will-allow-someone-to-log-in-as-you-and-to-steal-your-ROBUX-and-items.|_TOKEN>
Each stored cookie is a set of comma-separated key-value pairs. Each key-value pair is formatted KEY::<VALUE>
.
The SEC
key is either YES
or NO
. It refers to the cookie's Secure
option.
The EXP
key is an ISO 8601 date representing the cookie's Expiration
date.
The COOK
key contains the raw cookie value.