Back to docs

Tool Site Profile List

Category: Site Knowledge · Since: v18.35.0 · Tier: All

List all persistent site profiles (saved browser state per domain). Shows which sites have saved cookies, localStorage, and auth state for auto-restoration.

Parameters

None.

Examples

List all saved site profiles
Which sites have persistent browser state?

Response

{
  "profiles": [
    {
      "domain": "example.com",
      "lastUsed": "2026-04-11T10:30:00Z",
      "cookieCount": 12,
      "authStatus": "authenticated",
      "sizeBytes": 8420,
      "healthy": true
    },
    {
      "domain": "staging.app.com",
      "lastUsed": "2026-04-10T15:00:00Z",
      "cookieCount": 5,
      "authStatus": "expired",
      "sizeBytes": 3200,
      "healthy": false
    }
  ]
}

How Site Profiles Work

After every browser session, CBrowser saves cookies and localStorage for domains where you visited more than one page. On reconnection, cookies are decrypted and injected. LocalStorage is repopulated.

Security

  • Cookies are encrypted at rest with AES-256-GCM
  • Encryption key is derived from the machine (hostname + user directory)
  • Profile files have 600 permissions (owner read/write only)
  • Profiles older than 24 hours are skipped by default

Related

From the Blog