Importing session cookies into antidetect browsers is the safest method for authenticating Farmed and Reinstated Profiles and agency accounts. Unlike traditional username and password logins—which trigger password prompts, two-factor authentication challenges, and suspicious device checkpoints—cookie session injection bypasses the entire authentication flow by restoring an already validated browser state.

1. Anatomy of a Meta Session Cookie String
A complete Facebook session cookie contains multiple key-value pairs, but five specific cookies govern identity, cryptographic security, and session validity:
| Cookie Key | Format & Type | Functional Purpose | Criticality Level |
|---|---|---|---|
| c_user | Numeric String (e.g. 100084920192841) | The unique Facebook User ID (UID) of the profile. | Mandatory (Session Identity) |
| xs | Alphanumeric Hash (Two-part delimited) | Encrypted cryptographic session authentication token. | Mandatory (Session Authenticator) |
| datr | Base64 Hash string | Device and browser installation tracking identifier. | Critical (Bypasses Device Challenge) |
| sb | Base64 Hash string | Browser security token used for cross-site verification. | High (Maintains Profile Health) |
| fr | Delimited Hash string | Encrypted ad tracking and browser environment identifier. | Recommended (Ad Manager Integrity) |
2. Netscape Format vs. JSON Array Format Conversion
When sourcing bulk Reinstated Profiles from Nolimit Shopping, credentials typically arrive in JSON array format or delimited text format. Understanding how to validate the JSON structure ensures clean imports without formatting syntax errors.
[
{
"domain": ".facebook.com",
"name": "c_user",
"value": "100084920192841",
"path": "/",
"secure": true,
"httpOnly": false
},
{
"domain": ".facebook.com",
"name": "xs",
"value": "32%3Aabc123def456%3A2%3A1715000000%3A-1%3A-1",
"path": "/",
"secure": true,
"httpOnly": true
}
]
3. The Cold Ingestion Protocol: Preventing Checkpoint 148
- Rule 1: Always inject cookies into an un-launched antidetect profile before starting the browser process.
- Rule 2: Ensure the proxy is active and verified prior to opening the first tab.
- Rule 3: On initial browser startup, navigate first to mbasic.facebook.com or m.facebook.com for passive session validation rather than loading the heavy Ads Manager immediately.
- Rule 4: Never log out manually. Logging out invalidates the xs session key permanently on Meta servers.
Session Longevity Tip: A properly aged Reinstated Profile with healthy cookie telemetry will remain authenticated for 30 to 90 days continuously, provided the browser profile is not subjected to frequent proxy geographic jumps.

