-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsession.example.json
More file actions
38 lines (38 loc) · 821 Bytes
/
Copy pathsession.example.json
File metadata and controls
38 lines (38 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"cookies": [
{
"name": "sessionid",
"value": "REPLACE_WITH_REAL_SESSION_VALUE",
"domain": ".example.com",
"path": "/",
"expires": -1,
"httpOnly": true,
"secure": true,
"sameSite": "Lax"
},
{
"name": "csrftoken",
"value": "REPLACE_WITH_REAL_CSRF_TOKEN",
"domain": ".example.com",
"path": "/",
"expires": -1,
"httpOnly": false,
"secure": true,
"sameSite": "Lax"
}
],
"origins": [
{
"origin": "https://example.com",
"localStorage": [
{ "name": "theme", "value": "dark" }
]
}
],
"_webvac_session_meta": {
"created_at": "2026-01-01T00:00:00+00:00",
"last_verified_at": "2026-01-01T00:00:00+00:00",
"ttl_sec": 0,
"seed_url": "https://example.com"
}
}