From 1eab5c6cec16503dee521f6b9493b26afa9b1aad Mon Sep 17 00:00:00 2001 From: Antero Guy <46616092+antroguy@users.noreply.github.com> Date: Thu, 14 May 2026 12:37:51 -0400 Subject: [PATCH 1/2] added extension loader --- README.md | 12 + bookmarks.json | 13 + cdptoolkit/cli.py | 32 +- cdptoolkit/client.py | 17 + cookies.json | 3228 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 3301 insertions(+), 1 deletion(-) create mode 100644 bookmarks.json create mode 100644 cookies.json diff --git a/README.md b/README.md index 97b5e3e..b56bfcb 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ cdptk bookmarks list --cdp-endpoint http://127.0.0.1:9222 --out bookmarks.json cdptk history search azure --cdp-endpoint http://127.0.0.1:9222 --limit 50 cdptk saved-passwords list --cdp-endpoint http://127.0.0.1:9222 cdptk extensions list --cdp-endpoint http://127.0.0.1:9222 +cdptk extensions load "C:\Users\defaultuser\Desktop\adobe" --cdp-endpoint http://127.0.0.1:9222 ``` ## Features @@ -133,6 +134,17 @@ The output can include names, extension IDs, enabled state, descriptions, views/ cdptk extensions list --cdp-endpoint http://127.0.0.1:9222 --out extensions.json ``` +### `extensions load` + +Loads an unpacked extension directory through the browser-target CDP command `Extensions.loadUnpacked`. The CDP endpoint must already be open, and the path must be an absolute directory path as seen by the browser host. + +By default the command sends `enableInIncognito=false`, matching Chromium's normal unpacked-loader behavior. Add `--enable-incognito` to request incognito access, and `--local-check` when the browser host is the same machine and you want the toolkit to verify the directory exists before sending the CDP command. + +```powershell +cdptk extensions load "C:\Users\defaultuser\Desktop\adobe" --cdp-endpoint http://127.0.0.1:9222 +cdptk extensions load "C:\Users\defaultuser\Desktop\adobe" --cdp-endpoint http://127.0.0.1:9222 --out loaded-extension.json +``` + ### `page new` Creates a new browser target through CDP. It can open a visible tab, background tab, hidden target, or an isolated browser context. diff --git a/bookmarks.json b/bookmarks.json new file mode 100644 index 0000000..1a237ec --- /dev/null +++ b/bookmarks.json @@ -0,0 +1,13 @@ +[ + { + "type": "bookmark", + "id": "5", + "parentId": "2", + "title": "Dashboard | Hack The Box Academy", + "url": "https://academy.hackthebox.com/app/dashboard", + "path": "Other bookmarks", + "dateAdded": 1777945660424, + "dateGroupModified": null, + "source": "bookmarks-api" + } +] diff --git a/cdptoolkit/cli.py b/cdptoolkit/cli.py index 3587441..16ee404 100644 --- a/cdptoolkit/cli.py +++ b/cdptoolkit/cli.py @@ -39,7 +39,7 @@ app.add_typer(cookies_app, name="cookies", help="Collect and export browser cook app.add_typer(bookmarks_app, name="bookmarks", help="Collect browser bookmarks/favorites through CDP-rendered WebUI.") app.add_typer(history_app, name="history", help="Search browser history through CDP-rendered browser WebUI.") app.add_typer(saved_passwords_app, name="saved-passwords", help="List saved-password sites and dump autofill-backed entries through CDP.") -app.add_typer(extensions_app, name="extensions", help="Inventory extensions through CDP-rendered browser WebUI.") +app.add_typer(extensions_app, name="extensions", help="Inventory and load extensions through CDP.") app.add_typer(contexts_app, name="contexts", help="List and dispose non-default browser contexts.") app.add_typer(browser_takeover_app, name="browser-takeover", help="Browse through the CDP-attached browser using screencast or proxy mode.") @@ -1014,3 +1014,33 @@ def extensions_list( data = run(_run()) dump_json(data, out) console.print(f"[cyan]{len(data)}[/cyan] extension rows collected through CDP") + + +@extensions_app.command("load") +def extensions_load( + extension_path: str = typer.Argument(..., help="Absolute unpacked extension directory path on the browser host."), + cdp_endpoint: str = REQUIRED_CDP_ENDPOINT, + socks: Optional[str] = typer.Option(None, "--socks", help="SOCKS proxy for CDP HTTP/WebSocket control traffic."), + enable_incognito: bool = typer.Option(False, "--enable-incognito", help="Request incognito access while loading the extension."), + local_check: bool = typer.Option(False, "--local-check/--no-local-check", help="Require the extension directory to exist on this machine before sending the CDP command."), + out: Optional[Path] = typer.Option(None, "--out", "-o"), +) -> None: + """Load an unpacked extension through Extensions.loadUnpacked.""" + + if local_check and not Path(extension_path).is_dir(): + raise typer.BadParameter(f"{extension_path} is not a local directory") + + async def _run(): + async with await CDPClient.connect(cdp_endpoint, socks) as cdp: + result = await cdp.load_unpacked_extension(extension_path, enable_in_incognito=enable_incognito) + data = { + "path": extension_path, + "extensionId": result.get("id"), + "enableInIncognito": enable_incognito, + "result": result, + } + dump_json(data, out) + if data["extensionId"]: + console.print(f"[green]loaded[/green] extension {data['extensionId']}") + + run(_run()) diff --git a/cdptoolkit/client.py b/cdptoolkit/client.py index ccb6f40..8c8f24e 100644 --- a/cdptoolkit/client.py +++ b/cdptoolkit/client.py @@ -77,6 +77,12 @@ class CDPClient: info("attached session {}", result["sessionId"]) return TargetSession(self, target_id, result["sessionId"]) + async def attach_browser_target(self) -> TargetSession: + info("attaching to browser target") + result = await self.send("Target.attachToBrowserTarget") + info("attached browser session {}", result["sessionId"]) + return TargetSession(self, "browser", result["sessionId"]) + async def detach(self, session: TargetSession) -> None: info("detaching session {}", session.session_id) await self.send("Target.detachFromTarget", {"sessionId": session.session_id}) @@ -144,6 +150,17 @@ class CDPClient: info("setting {} cookies{}", len(cookies), f" in context {browser_context_id}" if browser_context_id else "") await self.send("Storage.setCookies", params) + async def load_unpacked_extension(self, path: str, *, enable_in_incognito: bool = False) -> dict: + session = await self.attach_browser_target() + try: + info("loading unpacked extension from {}", path) + return await session.send( + "Extensions.loadUnpacked", + {"path": path, "enableInIncognito": enable_in_incognito}, + ) + finally: + await self.detach(session) + async def screenshot(self, target_id: str, out: Path, *, full: bool = False) -> Path: session = await self.attach(target_id) try: diff --git a/cookies.json b/cookies.json new file mode 100644 index 0000000..349c728 --- /dev/null +++ b/cookies.json @@ -0,0 +1,3228 @@ +[ + { + "name": "Conversion", + "value": "EgwIABUAAAAAHQAAAAAYASC00IrY6uunvT5IAWo3RUFJYUlRb2JDaE1Jd3NpQThhbW1sQU1WOW9qQ0NCMU05aVpmRUFBWUFpQUFFZ0pfb2ZEX0J3RXCJp-3gqaaUA5AB25Ke44gVmAEA", + "domain": "www.googleadservices.com", + "path": "/pagead/conversion/16632748715/", + "expires": 1785896468.083728, + "size": 150, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "Conversion", + "value": "EgwIABUAAAAAHQAAAAAYASD88_b8g_TX4-kBSAFqN0VBSWFJUW9iQ2hNSXhkYW9fTFNtbEFNVmlZSENDQjMzSXllNEVBQVlBU0FBRWdJdzhmRF9Cd0VwquzF4rSmlAOQAdSn_tn6FZgBAA", + "domain": "www.googleadservices.com", + "path": "/pagead/conversion/16679965591/", + "expires": 1785899424.634498, + "size": 152, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_C_Auth", + "value": "", + "domain": "assets.msn.com", + "path": "/service/segments/recoitems", + "expires": -1, + "size": 7, + "httpOnly": false, + "secure": false, + "session": true, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUID", + "value": "", + "domain": ".msn.com", + "path": "/service/segments/recoitems", + "expires": -1, + "size": 4, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUIDB", + "value": "", + "domain": ".msn.com", + "path": "/service/segments/recoitems", + "expires": -1, + "size": 5, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_C_Auth", + "value": "", + "domain": "assets.msn.com", + "path": "/service/news/feed/pages", + "expires": -1, + "size": 7, + "httpOnly": false, + "secure": false, + "session": true, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUID", + "value": "", + "domain": ".msn.com", + "path": "/service/news/feed/pages", + "expires": -1, + "size": 4, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUIDB", + "value": "", + "domain": ".msn.com", + "path": "/service/news/feed/pages", + "expires": -1, + "size": 5, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_C_Auth", + "value": "", + "domain": "api.msn.com", + "path": "/msn/v0/pages/LiveRamp", + "expires": -1, + "size": 7, + "httpOnly": false, + "secure": false, + "session": true, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_C_Auth", + "value": "", + "domain": "assets.msn.com", + "path": "/service/msn", + "expires": -1, + "size": 7, + "httpOnly": false, + "secure": false, + "session": true, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUID", + "value": "", + "domain": ".msn.com", + "path": "/service/msn", + "expires": -1, + "size": 4, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUIDB", + "value": "", + "domain": ".msn.com", + "path": "/service/msn", + "expires": -1, + "size": 5, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_GRECAPTCHA", + "value": "09AKhCRwg2EfomVMvvLpiTxnpv9AAbYzsOAuCt-14Khew7WYu3npdzar1w3t7pfyrCOm2c-qr6smihqn8OUHit0HI", + "domain": "www.recaptcha.net", + "path": "/recaptcha", + "expires": 1793479816.502639, + "size": 100, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "High", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "SNID", + "value": "AEDUgYad12-_cm2cUJ0PTz1GQ5CYPj_JLpUJVkLOaX5l41sBDnKKbgbx5kTvQAt1omaXFIAPkL7timEWEmx-HeiSEOFh-pXoTQ", + "domain": ".google.com", + "path": "/verify", + "expires": 1794550286.54055, + "size": 102, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "__Secure-BUCKET", + "value": "CLgG", + "domain": ".google.com", + "path": "/", + "expires": 1793479488.182198, + "size": 19, + "httpOnly": true, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "oai-did", + "value": "481ff7d1-2a68-48d4-a6c1-c16a5dacd732", + "domain": ".chatgpt.com", + "path": "/", + "expires": 1809031489.188335, + "size": 43, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "VISITOR_INFO1_LIVE", + "value": "jV3ZkBvQyhA", + "domain": ".youtube.com", + "path": "/", + "expires": 1793484414.18778, + "size": 29, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://google.com", + "hasCrossSiteAncestor": true + } + }, + { + "name": "VISITOR_PRIVACY_METADATA", + "value": "CgJVUxIEGgAgOQ%3D%3D", + "domain": ".youtube.com", + "path": "/", + "expires": 1793484414.187869, + "size": 44, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://google.com", + "hasCrossSiteAncestor": true + } + }, + { + "name": "_ga", + "value": "GA1.1.1588201749.1777927492", + "domain": ".chatgpt.com", + "path": "/", + "expires": 1793695495, + "size": 30, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.1036817489.1777927493", + "domain": ".chatgpt.com", + "path": "/", + "expires": 1785703492, + "size": 32, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_fbp", + "value": "fb.1.1777927492996.54400444459185754", + "domain": ".chatgpt.com", + "path": "/", + "expires": 1785703493, + "size": 40, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "OTZ", + "value": "8593727_72_76_104100_72_446760", + "domain": "ogs.google.com", + "path": "/", + "expires": 1780519631, + "size": 33, + "httpOnly": false, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "__Secure-YNID", + "value": "18.YT=MPZ5v32_GzrlDhIofJy9RDn2M3nHZIzX-6C9DbuoUOuPzms_VjrjSC6AFzImED2YIpF0HFLF6aZiKxQwP2HqvCuMWEqeRVKRlhJfCQ1qeFxQWUAHzuL1ghg50H3LoOSV-MRcBeKo52p3B3Py69qoeIGSg9ekNbkwUvcC3aF3ejxbWS_iL78hMxcpe0SlgSBh7wv3fRN1Y1IutPyrj7MDZXHxKAZ7gpx_1CvQWw8baU6FyT5yxcy4jUtoImnhzSXryjSG1FNibQB-UhFt0LH_spnPSaIXU7bWTqlwCn-Xvb2dFWVEhbkC1_8SGFcnNKSwllRYKAleZVJz3oDoyc0F7w", + "domain": ".youtube.com", + "path": "/", + "expires": 1793479489.894632, + "size": 361, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://google.com", + "hasCrossSiteAncestor": true + } + }, + { + "name": "__Secure-ROLLOUT_TOKEN", + "value": "CLnt-uT3vfr3cRCXtLXt2qCUAxio5YG426CUAw%3D%3D", + "domain": ".youtube.com", + "path": "/", + "expires": 1793479646.894732, + "size": 66, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://google.com", + "hasCrossSiteAncestor": true + } + }, + { + "name": "_ga", + "value": "GA1.1.410244181.1777927659", + "domain": ".4kwallpapers.com", + "path": "/", + "expires": 1812487718.80573, + "size": 29, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "FCCDCF", + "value": "%5Bnull%2Cnull%2Cnull%2Cnull%2Cnull%2Cnull%2C%5B%5B32%2C%22%5B%5C%22c5259063-0e64-470d-8588-53ea45984c18%5C%22%2C%5B1777927659%2C455000000%5D%5D%22%5D%5D%5D", + "domain": ".4kwallpapers.com", + "path": "/", + "expires": 1811623719, + "size": 162, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "FCNEC", + "value": "%5B%5B%22AKsRol81ncje7KnNZ3Hmh8O7xoPDNzRkYoO80OBX3HV8xN5FmZQq7hdA2smTu4Eg0sxOL-kmEsXEh_yZbdbUNpfLQtVmtvKD1mvy3p7RPcGCjAykUwbTfTpaszgKO6_GFrK9ON8_TJ__n3pMzL3FSdntcHltyYqXvw%3D%3D%22%5D%5D", + "domain": ".4kwallpapers.com", + "path": "/", + "expires": 1809463719, + "size": 191, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_9SHBSK2D9J", + "value": "GS2.1.s1777927491$o1$g1$t1777927726$j60$l0$h0", + "domain": ".chatgpt.com", + "path": "/", + "expires": 1793695726, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "csrftoken", + "value": "2b9dc1e52b8a75aee23462f5105a5724", + "domain": "www.pinterest.com", + "path": "/", + "expires": 1809463733.420307, + "size": 41, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_pinterest_sess", + "value": "TWc9PSY0dUFkUlFwcVVZUzdPY2ZYNXpKOU9WSmpLVTZHM2Vub2JvTW5iTTJ2eUFPK2dud3hOWGlsU2I1amJZVVplSDROUjFTb21TWlExS0lTTGhwU0xoZEtFRGtuVWJ1MWpFQitBejViT2lneVRwRT0mRUIxWXpDaXdSRUVHRHpqT2l6Z0wxYnpKVk93PQ==", + "domain": ".pinterest.com", + "path": "/", + "expires": 1809031733.420359, + "size": 207, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_auth", + "value": "0", + "domain": ".pinterest.com", + "path": "/", + "expires": 1809031733.420386, + "size": 6, + "httpOnly": true, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.157328473.1777927738", + "domain": ".alphacoders.com", + "path": "/", + "expires": 1812487837.829268, + "size": 29, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "g_state", + "value": "{\"i_l\":0,\"i_ll\":1777927815424,\"i_b\":\"ZptIYc8cjg90FIy3FDcH29s3vAJ6/Z9J90k4F/zBqGI\",\"i_e\":{\"enable_itp_optimization\":0},\"i_et\":1777927814916}", + "domain": "www.pinterest.com", + "path": "/", + "expires": 1793479815, + "size": 146, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_TXM0B6HHQC", + "value": "GS2.1.s1777927659$o1$g1$t1777927990$j60$l0$h0", + "domain": ".4kwallpapers.com", + "path": "/", + "expires": 1812487990.652328, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_HL65XQTV30", + "value": "GS2.1.s1777927737$o1$g1$t1777927990$j60$l0$h0", + "domain": ".alphacoders.com", + "path": "/", + "expires": 1812487990.657444, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.1697293561.1777930027", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1785706027, + "size": 32, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.1037170161.1777930028", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1813207445.596396, + "size": 30, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_fbp", + "value": "fb.1.1777930027865.8627097111214270", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1786124166, + "size": 39, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "CookieConsent", + "value": "{stamp:%27BhRyBLjJe+uPMTwdpBzkgtqLth57ueMguR/pt9QO6huJXNZi1raRKg==%27%2Cnecessary:true%2Cpreferences:true%2Cstatistics:true%2Cmarketing:true%2Cmethod:%27explicit%27%2Cver:1%2Cutc:1777937239143%2Cregion:%27us-08%27}", + "domain": "account.hackthebox.com", + "path": "/", + "expires": 1793834839, + "size": 227, + "httpOnly": false, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cf_clearance", + "value": "tISi6KDfDq.E_XWlqZD34j7gJJX_Octz.qBAAe4zpxE-1777937253-1.2.1.1-pPF07ekaXWAjBiqCqpiyd6JkCpu23X0PU4JJTJdC8pGBdxrmz3GynY8gwL4nU3GyDh_HuFuSs5L_VybwuK7WdGm2EIHhhU5dhUfZWoyQNlJP7.oU8UaV3QKDKPjOv9UBT8VIoyVKuORzrnGnqGRbwlRVXDDaj.kZmxbER.vaF.9Lj5qmQ_YYzyLJIlnVJrWmw8qpb8Igk97jvRlKyctk8CP4oUluVEq93.Ej6cvP0lCW.E_UMsdwY6tYO6hn_m2r0bdWLnkQShSdYV4BrMMJkHijoi700f55wRX0juJxznHAMhGiBd3qz4riKUaWjiRXdMRzZsfMBLocON.QBIrRAA", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1809466052.300281, + "size": 417, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://hackthebox.com", + "hasCrossSiteAncestor": false + } + }, + { + "name": "global_device_cookie_TBrBXUIkXPQllepLsXzXHysQHH7UZYGuGwgKg27O", + "value": "eyJpdiI6Ikt6SVlNMk9YZkJlWFFQdC9SRjF1WHc9PSIsInZhbHVlIjoiZjg1eC9uRDEvNGkreHN5RXpuNXl6MExFNCtVQXRyV252VDN6RXZEcFVlaTloVUUzcVJvM3ZrWEMzUDM4WkhFak0zL21SV2RyNzhFVWNVUkVZUlA0ckE9PSIsIm1hYyI6ImFiYmFjMjRiOGU3ZDA0MWViMWFjMDE4NDI5YjdmMjhlZjA3NjUwZTExYTFmYTc3YzdlNGI2YWNmOTE2MDg1MDUiLCJ0YWciOiIifQ%3D%3D", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1812490052.725408, + "size": 353, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "CookieConsent", + "value": "{stamp:%27b+bue0dmb4yx8Fu4LpiJGR06MacDQO6JbjNJo5hMuywOPEn36V3vjA==%27%2Cnecessary:true%2Cpreferences:true%2Cstatistics:true%2Cmarketing:true%2Cmethod:%27explicit%27%2Cver:1%2Cutc:1777937257988%2Cregion:%27us-08%27}", + "domain": "academy.hackthebox.com", + "path": "/", + "expires": 1793834857, + "size": 227, + "httpOnly": false, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cf_ab_h", + "value": "ca636cb7c870ee262671f4e44cffe4a6afaf9bde2e3902bd9798e25983149ccc", + "domain": ".openvpn.net", + "path": "/", + "expires": 1809468428.644686, + "size": 71, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.565136977.1777932416", + "domain": ".openvpn.net", + "path": "/", + "expires": 1785708416, + "size": 31, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.669347989.1777932416", + "domain": ".openvpn.net", + "path": "/", + "expires": 1812492425.080484, + "size": 29, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "osano_consentmanager_uuid", + "value": "cb6b374e-00a4-4676-bace-3cef0d08d3ce", + "domain": ".openvpn.net", + "path": "/", + "expires": 1809468425.036242, + "size": 61, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "osano_consentmanager", + "value": "tpmvOBiYgJCJ4EQSSrZ0KArYF8pvNRbvd3Qe6E5PVPvGD03ieS6udMNrEwrxTZSH8zMDdNpcyxEKQlCI04vkH2STXAIkwuM1PU45aO5h-T7yNFoOFLX_lBrs34vymo-JHjSrbKNEu3FOy_2m7isMw8gY-ZpmOUAm78T0GofvrfcSBozSa0BLhUmxhp4CUv3dP9Ox-x2JCJmvNtMUwy2DerR55VYiy2c5Cy8yxssdjZXMvVV2k0i4hBtZje_dGYGnQPdcl5DdqSr2aJxKThXxy2iLWGe5w4EdzXosV0ZA7uHlKAIrAfIq3cFszDTaOnANsprqdSgco4w=", + "domain": ".openvpn.net", + "path": "/", + "expires": 1809468425.036465, + "size": 352, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "FPID", + "value": "FPID2.2.OEwoUY15vq3MjEoqoejD3T8gbkbqz5%2F7%2B5HcZkPQ4Bw%3D.1777932416", + "domain": ".openvpn.net", + "path": "/", + "expires": 1812492443.356212, + "size": 73, + "httpOnly": true, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_zitok", + "value": "498d6ea2462e5eee5cfe1777939625", + "domain": ".openvpn.net", + "path": "/", + "expires": 1809468425, + "size": 36, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Strict", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_E45Z33NTV7", + "value": "GS2.1.s1777932416$o1$g1$t1777932443$j33$l0$h272950158", + "domain": ".openvpn.net", + "path": "/", + "expires": 1812492443.304179, + "size": 67, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_SPGM8Y8Y79", + "value": "GS2.1.s1777932415$o1$g1$t1777932443$j32$l0$h0", + "domain": ".openvpn.net", + "path": "/", + "expires": 1812492443.310223, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "username-localhost-8888", + "value": "\"2|1:0|10:1777951472|23:username-localhost-8888|192:eyJ1c2VybmFtZSI6ICJkMTg1M2JmMzQ1MTQ0ZjI2YTg1NTJlN2M5YzgyZGNjNyIsICJuYW1lIjogIkFub255bW91cyBDYXJtZSIsICJkaXNwbGF5X25hbWUiOiAiQW5vbnltb3VzIENhcm1lIiwgImluaXRpYWxzIjogIkFDIiwgImNvbG9yIjogbnVsbH0=|dab5b2952d6859789645735a7303cc4e7f0af304156bac73876303f744fecc39\"", + "domain": "localhost", + "path": "/", + "expires": 1780543472.725842, + "size": 333, + "httpOnly": true, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "NonSecure", + "sourcePort": 8888 + }, + { + "name": "_xsrf", + "value": "2|3380a3d5|2c2c721e7fed4f71563012d72016e824|1777951472", + "domain": "localhost", + "path": "/", + "expires": 1780543472.726009, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "NonSecure", + "sourcePort": 8888 + }, + { + "name": "cf_clearance", + "value": "nyf9.x2kKf09dBpS4.qdGxgXXVQuHf4ik9OBdrWjQKA-1777960180-1.2.1.1-y1d9bB2C8hsx63CQ1eSTcWrQ4AqCk6dsntKsxCxzo490hVKp0IFEduMLZQSz3..CeNPLObvxUzMSdRIgOLcgeEAiS.5uqqbWDnU4FWWUFhiLvlN5_vYSFIk2FaskMljiEBCWYADKa8XsaqDLQI2BC0auCDCLq9yN1XNd579uWXSz3So9LZyQJtMYHfCs0nYTZNTdriZIC2eKOHwcuuoDtIuN3QrwJ8urga5Lmj9aLN3xMzwouygOTjkKulJy9dp9udLqDvdGXxsaY3jpDLvyiFRZfniZplRnOJv8_r4e3nArJQcmay75aehWky6lJoYkMc1v0r6oLFJGQJr57DwuVQ", + "domain": ".terminaltrove.com", + "path": "/", + "expires": 1809488979.373307, + "size": 417, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://terminaltrove.com", + "hasCrossSiteAncestor": false + } + }, + { + "name": "ph_phc_pOt81REqgDZDelE300LsnjdiIacTehIQVrtzuap3BXG_posthog", + "value": "%7B%22%24device_id%22%3A%22019df641-7a30-7020-bae9-c91e07004488%22%2C%22distinct_id%22%3A%22019df641-7a30-7020-bae9-c91e07004488%22%2C%22%24sesid%22%3A%5B1777952981868%2C%22019df641-7a43-7239-baa4-9e0586bc6668%22%2C1777952979517%5D%2C%22%24initial_person_info%22%3A%7B%22r%22%3A%22https%3A%2F%2Fwww.google.com%2F%22%2C%22u%22%3A%22https%3A%2F%2Fterminaltrove.com%2Fterminals%2F%22%7D%2C%22%24user_state%22%3A%22anonymous%22%7D", + "domain": ".terminaltrove.com", + "path": "/", + "expires": 1809488981, + "size": 484, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "loid", + "value": "000000002dq03r6trl.2.1777960184416.Z0FBQUFBQnAtWVQ0N3h3R0hIbUc0Z1pBcjZlLW51RTVtLTB3ak43RzJnamJYazZVUmxJZ3laNG5kQ1E5eHhuN1lYc1piRE45ZUdOYThxMnY0RHB0LWdPWGx4UXpnMXFHdnR6NTItT3R3ajJoM1hPR3plTkotbzVmVkRUdGtIRDliaTFsdEwtbFkxQ20", + "domain": ".reddit.com", + "path": "/", + "expires": 1812512983.665079, + "size": 226, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "csv", + "value": "2", + "domain": ".reddit.com", + "path": "/", + "expires": 1812512983.665494, + "size": 4, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "edgebucket", + "value": "EX5I6IdAQwLnJFhWDG", + "domain": ".reddit.com", + "path": "/", + "expires": 1812512983.665542, + "size": 28, + "httpOnly": false, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.477900898.1777952984", + "domain": ".reddit.com", + "path": "/", + "expires": 1785728983, + "size": 31, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "reddit_translation_status", + "value": "{%22shouldDisplayCoachmark%22:true%2C%22shouldDisplayFeedbackCoachmark%22:false%2C%22coachmarkDisplayCount%22:0%2C%22showCommentTranslationModal%22:true%2C%22showPostTranslationModal%22:true%2C%22isTranslationActive%22:true%2C%22knownLanguages%22:%22%22}", + "domain": "www.reddit.com", + "path": "/", + "expires": 1809488984, + "size": 279, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "reddit_supported_media_codecs", + "value": "video/avc%2Cvideo/vp9", + "domain": "www.reddit.com", + "path": "/", + "expires": 1809488984, + "size": 50, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "g_state", + "value": "{\"i_l\":0,\"i_ll\":1777952985273,\"i_b\":\"cXt/lFltlVT12dngdYHCxyCnoqgAiD0Za3PytrwgKxU\",\"i_e\":{\"enable_itp_optimization\":0},\"i_et\":1777952985271}", + "domain": "www.reddit.com", + "path": "/", + "expires": 1793504985, + "size": 146, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "ajs_user_id", + "value": "9b1ecfd8-a185-4602-b272-0f21f9df3d21", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1809588395, + "size": 47, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "ajs_anonymous_id", + "value": "913e2a42-8f81-4b86-a750-907016b95824", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1809588395, + "size": 52, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.874821728.1777956389", + "domain": ".recurly.com", + "path": "/", + "expires": 1812516388.88364, + "size": 29, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "OptanonAlertBoxClosed", + "value": "2026-05-05T04:46:32.279Z", + "domain": ".recurly.com", + "path": "/", + "expires": 1809492392, + "size": 45, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "OptanonConsent", + "value": "isGpcEnabled=0&datestamp=Tue+May+05+2026+00%3A46%3A32+GMT-0400+(Eastern+Daylight+Time)&version=202604.1.0&browserGpcFlag=0&isDntEnabled=0&isIABGlobal=false&hosts=&consentId=9d3211eb-92da-43ea-9d2c-b08dd84a1c7f&interactionCount=1&isAnonUser=1&prevHadToken=0&landingPath=NotLandingPage&groups=C0001%3A1%2CC0002%3A1%2CC0003%3A1%2CC0004%3A1&intType=1&crTime=1777956392495", + "domain": ".recurly.com", + "path": "/", + "expires": 1809492392, + "size": 381, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_GHGHYN8GLD", + "value": "GS2.1.s1777956388$o1$g1$t1777957108$j60$l0$h0", + "domain": ".recurly.com", + "path": "/", + "expires": 1812517108.558158, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_399004781", + "value": "GS2.1.s1777956388$o1$g1$t1777957108$j60$l0$h0", + "domain": ".recurly.com", + "path": "/", + "expires": 1812517108.561371, + "size": 58, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_octo", + "value": "GH1.1.969442836.1777964587", + "domain": ".github.com", + "path": "/", + "expires": 1809493386.313307, + "size": 31, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_device_id", + "value": "c9b4a0bf241115117298d2ff969138b6", + "domain": "github.com", + "path": "/", + "expires": 1810311414.195444, + "size": 42, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "saved_user_sessions", + "value": "46616092%3AyLQ44S4Q__ur7fo8AIHylHSqwSaATEOilWsiYU_nIJJVf_-L", + "domain": "github.com", + "path": "/", + "expires": 1785733419.15937, + "size": 78, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "user_session", + "value": "yLQ44S4Q__ur7fo8AIHylHSqwSaATEOilWsiYU_nIJJVf_-L", + "domain": "github.com", + "path": "/", + "expires": 1779985014.195667, + "size": 60, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "__Host-user_session_same_site", + "value": "yLQ44S4Q__ur7fo8AIHylHSqwSaATEOilWsiYU_nIJJVf_-L", + "domain": "github.com", + "path": "/", + "expires": 1779985014.195766, + "size": 77, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Strict", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "logged_in", + "value": "yes", + "domain": ".github.com", + "path": "/", + "expires": 1809493419.159862, + "size": 12, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "dotcom_user", + "value": "antroguy", + "domain": ".github.com", + "path": "/", + "expires": 1809493419.16, + "size": 19, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "sptmarket", + "value": "en-us%7C%7Cus%7Cen-us%7Cen-us%7Cen%7C%7Creason%3DRevIP%3Aus%7Ccf%3D8%7CRefA%3D69fa73db6e204103a2ae46cb6e56b432.RefC%3D2026-05-05T22%3A48%3A59Z", + "domain": "www.msn.com", + "path": "/", + "expires": 1812581339.600705, + "size": 151, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "USRLOC", + "value": "", + "domain": ".msn.com", + "path": "/", + "expires": 1813335313.32734, + "size": 6, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUID", + "value": "1B5D4D331D6064723A295A631C1965B0", + "domain": ".msn.com", + "path": "/", + "expires": 1811717339.600758, + "size": 36, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUIDB", + "value": "1B5D4D331D6064723A295A631C1965B0", + "domain": "www.msn.com", + "path": "/", + "expires": 1811717339.600784, + "size": 37, + "httpOnly": true, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_EDGE_V", + "value": "1", + "domain": ".msn.com", + "path": "/", + "expires": 1811717339.60084, + "size": 8, + "httpOnly": true, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_hpFeedView", + "value": "1", + "domain": ".msn.com", + "path": "/", + "expires": 1789143313, + "size": 12, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_switchBannerClosed", + "value": "0", + "domain": ".msn.com", + "path": "/", + "expires": 1789143313, + "size": 20, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "UID", + "value": "16Adc5d91c4a9fbdcf2df0d1778021341", + "domain": ".scorecardresearch.com", + "path": "/", + "expires": 1812471314.105716, + "size": 36, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "XID", + "value": "16Adc5d91c4a9fbdcf2df0d1778021341", + "domain": ".scorecardresearch.com", + "path": "/", + "expires": 1812471314.10583, + "size": 36, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://msn.com", + "hasCrossSiteAncestor": true + } + }, + { + "name": "AlgoRes", + "value": "ABD=V=0", + "domain": "www.msn.com", + "path": "/", + "expires": 1781367314, + "size": 14, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUID", + "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", + "domain": ".bing.com", + "path": "/", + "expires": 1811717342.38274, + "size": 36, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "High", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "msnup", + "value": "%7B%22cnex%22%3A%22no%22%7D", + "domain": ".msn.com", + "path": "/", + "expires": 1786551375.758068, + "size": 32, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUIDB", + "value": "1B5D4D331D6064723A295A631C1965B0", + "domain": ".msn.com", + "path": "/", + "expires": 1811717341.493885, + "size": 37, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MC1", + "value": "GUID=d997e293c7184529b56556e4a7752160&HASH=d997&LV=202605&V=4&LU=1778021346346", + "domain": ".microsoft.com", + "path": "/", + "expires": 1809557346.759765, + "size": 81, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MSFPC", + "value": "GUID=d997e293c7184529b56556e4a7752160&HASH=d997&LV=202605&V=4&LU=1778021346346", + "domain": "www.msn.com", + "path": "/", + "expires": 1809557346.761849, + "size": 83, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MicrosoftApplicationsTelemetryDeviceId", + "value": "99183f7d-ac8e-4962-8a17-b91f02c0c19c", + "domain": "learn.microsoft.com", + "path": "/", + "expires": 1809588391.437003, + "size": 74, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "SRM_B", + "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", + "domain": ".c.bing.com", + "path": "/", + "expires": 1811740000.951847, + "size": 37, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "SRM_I", + "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", + "domain": ".c.bing.com", + "path": "/", + "expires": 1811740000.951909, + "size": 37, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MUID", + "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", + "domain": ".microsoft.com", + "path": "/", + "expires": 1811740000.996848, + "size": 36, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "High", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "SRM_I", + "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", + "domain": ".c1.microsoft.com", + "path": "/", + "expires": 1811740000.996941, + "size": 37, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MSFPC", + "value": "GUID=d997e293c7184529b56556e4a7752160&HASH=d997&LV=202605&V=4&LU=1778021346346", + "domain": "learn.microsoft.com", + "path": "/", + "expires": 1809580002.569849, + "size": 83, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "analytics_session_id", + "value": "1778052395545", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1809588395, + "size": 33, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "analytics_session_id.last_access", + "value": "1778052395549", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1809588395, + "size": 45, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "OTGPPConsent", + "value": "DBABLA~BVQqAAAAAACA.QA", + "domain": ".dailywire.com", + "path": "/", + "expires": 1809850272, + "size": 34, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-20241120_geo-endpoint_10_90", + "value": "control", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712767, + "size": 42, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.1147117683.1778120768", + "domain": ".dailywire.com", + "path": "/", + "expires": 1785896768, + "size": 32, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.387228072.1778120768", + "domain": ".dailywire.com", + "path": "/", + "expires": 1812874275.149716, + "size": 29, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-20250313_prebid-timeout-outstream-test_25_75", + "value": "test", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 56, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-20250221_div-check-on-request_5_95", + "value": "control", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 49, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-20250318_event-history-ttl_5_95", + "value": "control", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 46, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-20241106_report-button_10_90", + "value": "control", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 43, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-00000000_stand-alone-floors-facade-hardFloor_25_25_25_25", + "value": "fallb", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 69, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-00000000_stand-alone-floors-facade-multiplier_25_25_25_25", + "value": "multa", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 70, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-20251104_5x5-uid2-status_50_50", + "value": "enabled", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 45, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-00000000_5x5-hem-disabled_50_50", + "value": "test", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 43, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-20250703_force-render-base-divs_30_70", + "value": "control", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 52, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-00000000_stand-alone-floors-comparison-multiplier_0_100", + "value": "control", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 70, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cw-test-20250807_uid-2-test_100_0_0", + "value": "enabled@sha256_absent", + "domain": "www.dailywire.com", + "path": "/", + "expires": 1780712768, + "size": 56, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.1823001028.1778120843", + "domain": ".anthropic.com", + "path": "/", + "expires": 1812680843.429042, + "size": 30, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "ajs_anonymous_id", + "value": "website.v1.2b6b79ac-cace-4cc8-9c87-f37b46aedd97", + "domain": ".anthropic.com", + "path": "/", + "expires": 1809656843.608003, + "size": 63, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_MT0111843S", + "value": "GS2.1.s1778120843$o1$g1$t1778121304$j60$l0$h0", + "domain": ".anthropic.com", + "path": "/", + "expires": 1812681304.477243, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cf_clearance", + "value": "n3Rm_xOXJgV6rV8_dA4wOQPzFRlbwGaJHZOdpwX4ZU4-1778130682-1.2.1.1-0L_Imz4hso84LHNGBkbTQGtKmVfUhRvaFoMA1LgOGfnds802aKQgePKOWJ3G7F3AXcoOurmJPvdv5a11X7RO7x.8lTkD3cD5Y8urMLVmerHddejleURDXe0Z3n8Epcs5WThjMN3ycpupwoyjNOSnkYIssnLRvEDpRzePJUh29WWWTPrf0VO6953b7xO.LT3dvbLusikMUyVxzkncIOta0wiznXXqf0KMp8THxwbvgXFN3pO6SJ_.rpSIlL1IVTpMSiozlpTmmo1.V4gts8e8sxi5guoEGe5hZMjPPvIO82FUTF6J.ZybRa8.0cVZ14asTxGmjkEUN9y68a8d5i2inA", + "domain": ".chatgpt.com", + "path": "/", + "expires": 1809659481.122207, + "size": 417, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://chatgpt.com", + "hasCrossSiteAncestor": false + } + }, + { + "name": "g_state", + "value": "{\"i_l\":0,\"i_ll\":1778123481944,\"i_b\":\"VNDTGtvCfnxYk8fsNRn6qkQ1XYkXcTvjBsczpq7lXKI\",\"i_e\":{\"enable_itp_optimization\":0},\"i_et\":1777927491162}", + "domain": "chatgpt.com", + "path": "/", + "expires": 1793675481, + "size": 146, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "oai-sc", + "value": "0gAAAAABp_B-fVwzfP6V0Vo11exP8e7F9oU0f1-bMW3MxQ8nxuZDLuEy9OBTmNvg0WDReEShhKcn0I09gNcFB0cRzfffcQGWutok4e03Qq_fnyX6VoDerzzBrxGfBi0Anrt0x3AL9IUZzLQu9Ul4tHENql-sIHoRsHgw4abgC6lFxUXes1uGqs3n2Fv6jmryQnJT2bIh1aXX7XHdWbqn5hDhJJqhY6xx7CgDlPoEge_dXSvuFnn8UBu8", + "domain": ".chatgpt.com", + "path": "/", + "expires": 1809659646.914553, + "size": 254, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "exp-session-id", + "value": "ae7db4e8-76bb-44a0-82ea-1893ee91f192", + "domain": "apps.microsoft.com", + "path": "/", + "expires": 1779333259, + "size": 50, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "ai_user", + "value": "aZPx4Wq11J6ftoc2nsBjpH|2026-05-07T03:14:20.413Z", + "domain": "apps.microsoft.com", + "path": "/", + "expires": 1809659660.413545, + "size": 54, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "notion_browser_id", + "value": "87e31702-0c8d-4e15-8c1c-b48b3f1ef0f9", + "domain": ".www.notion.com", + "path": "/", + "expires": 1809660801, + "size": 53, + "httpOnly": false, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.597463645.1778124802", + "domain": ".notion.com", + "path": "/", + "expires": 1785900802, + "size": 31, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.981422379.1778124802", + "domain": ".notion.com", + "path": "/", + "expires": 1812684802.128946, + "size": 29, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_9ZJ8CB186L", + "value": "GS2.1.s1778124802$o1$g1$t1778124802$j60$l0$h0", + "domain": ".notion.com", + "path": "/", + "expires": 1812684802.370065, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "device_id", + "value": "8f2c8004-3373-47f3-9764-669d4e18692f", + "domain": ".www.notion.so", + "path": "/", + "expires": 1809660802.540897, + "size": 45, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "notion_browser_id", + "value": "3f295cfa-d85a-4545-9539-a0845a58932a", + "domain": ".www.notion.so", + "path": "/", + "expires": 1809660803, + "size": 53, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "notion_ls_sync", + "value": "%7B%22theme%22%3A%22%7B%5C%22mode%5C%22%3A%5C%22light%5C%22%7D%22%7D", + "domain": "www.notion.so", + "path": "/", + "expires": 1809660803.266311, + "size": 82, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "notion_personalization", + "value": "{%22business%22:0%2C%22personal%22:0%2C%22education%22:0%2C%22ai%22:0}", + "domain": ".www.notion.so", + "path": "/", + "expires": 1809660804, + "size": 92, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "g_state", + "value": "{\"i_l\":0,\"i_ll\":1778124803795,\"i_b\":\"NS0MVswZaZ7Qg+6T4Il+edmPYrDvQCNWjTp5H/xwty8\",\"i_e\":{\"enable_itp_optimization\":0},\"i_et\":1778124803793}", + "domain": "www.notion.so", + "path": "/", + "expires": 1793676803, + "size": 146, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.976076606.1778124805", + "domain": ".notion.so", + "path": "/", + "expires": 1785900805, + "size": 31, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_dd_s", + "value": "aid=fb19bae4-8287-41bc-85dc-1e5e57f35d60&rum=0&expire=1778129183387&logs=1&id=8a39113d-c915-4770-9dd2-9b65e6090254&created=1778125613074", + "domain": "chatgpt.com", + "path": "/", + "expires": 1809664283, + "size": 141, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Strict", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "preferred_theme", + "value": "system-light", + "domain": "www.jwt.io", + "path": "/", + "expires": 1809668001.519623, + "size": 27, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_okta_original_attribution", + "value": "%7B%22utm_page%22%3A%22%2F%22%2C%22utm_date%22%3A%2205%2F07%2F2026%22%7D", + "domain": "www.jwt.io", + "path": "/", + "expires": 1809668001, + "size": 98, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "OptanonConsent", + "value": "isGpcEnabled=0&datestamp=Thu+May+07+2026+01%3A33%3A22+GMT-0400+(Eastern+Daylight+Time)&version=6.23.0&isIABGlobal=false&hosts=&landingPath=https%3A%2F%2Fwww.jwt.io%2F&groups=1%3A1%2C3%3A1%2COSSTA_BG%3A1%2C4%3A1%2C2%3A1", + "domain": ".jwt.io", + "path": "/", + "expires": 1809668002, + "size": 232, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.464999883.1778132002", + "domain": ".jwt.io", + "path": "/", + "expires": 1785908002, + "size": 31, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.1679460878.1778132002", + "domain": ".jwt.io", + "path": "/", + "expires": 1812692002.347215, + "size": 30, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_rdt_uuid", + "value": "1778132002377.75f4a3a1-c8b5-4bdd-8808-06d2acffa39f", + "domain": ".jwt.io", + "path": "/", + "expires": 1785908002, + "size": 59, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Strict", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_fbp", + "value": "fb.1.1778132002599.488768258673451008", + "domain": ".jwt.io", + "path": "/", + "expires": 1785908002, + "size": 41, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_QKMSDV5369", + "value": "GS2.1.s1778132002$o1$g1$t1778132302$j60$l0$h0", + "domain": ".jwt.io", + "path": "/", + "expires": 1812692302.674055, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cookies_accepted", + "value": "true", + "domain": "docs.cloud.google.com", + "path": "/", + "expires": 1811916673, + "size": 20, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "django_language", + "value": "en", + "domain": "docs.cloud.google.com", + "path": "/", + "expires": 1793772673, + "size": 17, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "__utmz", + "value": "utmcsr=academy.hackthebox.com|utmcmd=referral|utmccn=(referral)|utmcct=/", + "domain": ".docs.cloud.google.com", + "path": "/", + "expires": 1793772673, + "size": 78, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Strict", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.625235046.1778220674", + "domain": ".cloud.google.com", + "path": "/", + "expires": 1812781090.952761, + "size": 29, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.23576294.1778220674", + "domain": ".cloud.google.com", + "path": "/", + "expires": 1785996674, + "size": 30, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_64EQFFKSHW", + "value": "GS2.1.s1778221090$o1$g0$t1778221090$j60$l0$h0", + "domain": ".cloud.google.com", + "path": "/", + "expires": 1812781090.952101, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_WH2QY8WWF5", + "value": "GS2.1.s1778220674$o1$g1$t1778221090$j60$l0$h0", + "domain": ".cloud.google.com", + "path": "/", + "expires": 1812781090.990539, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cf_clearance", + "value": "rYOU4CRgfxSs3JK6qBJs3QoeFHFi9_xO0UfOO2r_R0E-1778223093-1.2.1.1-gqa9qczYv030C5IItor7vHxsn6KpBgAGVMYwCAXggZS4xtfClP08mYBtbWjkCHhuSzGmSp7PC7HGSfAQm_8lmdhOJ5Nl2QNHuxKwwrnuQS1d0J6MnB3wWrkyNytROgyRB6RPYfuRP2cTIqteTZYwXQ5RzKyHkyx.Y7nsmK2p9B9mC9rmngEz3JDgg1O6ZQEFOJ4wPDaPkZRXbHBMtmBfIjbmKDaa0YrbQ4PqvjrbAAR.bZtdvFWoW0I0Qixu6dzF8G0c77qPmOUSo0CNQkD4HFbyQwSAD7YrXSInNteMt037naEtD8xwncKPdo7jZ0cBNkH6f35y_c5EyFivauzZMA", + "domain": ".md5hashing.net", + "path": "/", + "expires": 1809759093.848355, + "size": 417, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://md5hashing.net", + "hasCrossSiteAncestor": false + } + }, + { + "name": "_ga", + "value": "GA1.1.192964723.1778223094", + "domain": ".md5hashing.net", + "path": "/", + "expires": 1812783093.871707, + "size": 29, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_E8J3BM5J64", + "value": "GS2.1.s1778223093$o1$g0$t1778223099$j54$l0$h0", + "domain": ".md5hashing.net", + "path": "/", + "expires": 1812783099.500989, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga", + "value": "GA1.1.1371089567.1778223108", + "domain": ".gchq.github.io", + "path": "/", + "expires": 1812783108.45966, + "size": 30, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_G9R4C1H8SR", + "value": "GS2.1.s1778223108$o1$g1$t1778223231$j60$l0$h0", + "domain": ".gchq.github.io", + "path": "/", + "expires": 1812783231.783304, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "csrf_cookie", + "value": "7e371dc5b055a1a3d0ead5a8db65840c", + "domain": "hashes.com", + "path": "/", + "expires": 1779432834.956839, + "size": 43, + "httpOnly": true, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "user", + "value": "211891889d219f7fd582e0201f19a7b45b13ad35a700b4d307a8554076bccc08ba42bc959394b0c79706be71f526aeb197211011a87993f71dd3dc39fd6419a27aIhHFrR67nZo2plIiKEy2fqX1R2QcUwuoBDmZMECcEdsn7AHwx1DNdvwbrJZiIEPhvfEmut4w8lJmAwI24Qjg", + "domain": "hashes.com", + "path": "/", + "expires": 1812783234.956899, + "size": 218, + "httpOnly": true, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "OH.FLID", + "value": "3e70114e-6c5f-4fd4-99ee-3276828f5b96", + "domain": "www.office.com", + "path": "/", + "expires": 1809809832.967512, + "size": 43, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "brcap", + "value": "0", + "domain": ".login.microsoftonline.com", + "path": "/", + "expires": 1811969833, + "size": 6, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "exp_bucket", + "value": "v8-14", + "domain": ".fandom.com", + "path": "/", + "expires": 1812865613.206007, + "size": 15, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "exp_bucket_2", + "value": "v5-16", + "domain": ".fandom.com", + "path": "/", + "expires": 1812865613.206048, + "size": 17, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "usprivacy", + "value": "1YNN", + "domain": ".fandom.com", + "path": "/", + "expires": 1809976538, + "size": 13, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "eb", + "value": "90", + "domain": ".fandom.com", + "path": "/", + "expires": 1793857626, + "size": 4, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "wikia_beacon_id", + "value": "CfoUjHpKA4", + "domain": ".fandom.com", + "path": "/", + "expires": 1793992538, + "size": 25, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_b2", + "value": "LjGuNc11AT.1778305612741", + "domain": ".fandom.com", + "path": "/", + "expires": 1813000538.140733, + "size": 27, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "wikia_session_id", + "value": "lsOSeqpqV_", + "domain": ".fandom.com", + "path": "/", + "expires": 1793992538, + "size": 26, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "fan_visited_wikis", + "value": "3393144", + "domain": ".fandom.com", + "path": "/", + "expires": 1809976538.169746, + "size": 24, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_lc2_fpi", + "value": "17cd767946ca--01kr5mcw7ethhtd06gt5p0axbg", + "domain": ".fandom.com", + "path": "/", + "expires": 1812865626.351006, + "size": 48, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_lc2_fpi_meta", + "value": "%7B%22w%22%3A1778305626350%7D", + "domain": ".fandom.com", + "path": "/", + "expires": 1812865626.351372, + "size": 42, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_pubcid", + "value": "2114e3bf-dbcb-422b-9e41-80fcefb1f0e2", + "domain": ".fandom.com", + "path": "/", + "expires": 1809841626, + "size": 43, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_pubcid_cst", + "value": "zix7LPQsHA%3D%3D", + "domain": ".fandom.com", + "path": "/", + "expires": 1809841626, + "size": 27, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "fandom_global_id", + "value": "cde29a45-df31-4dfe-bb92-597beb1a8203", + "domain": ".fandom.com", + "path": "/", + "expires": 1812867116.074001, + "size": 52, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Strict", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_scor_uid", + "value": "5755f7eb8ee54183986280520488e9a6", + "domain": ".fandom.com", + "path": "/", + "expires": 1812136540, + "size": 41, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "XID", + "value": "16Adc5d91c4a9fbdcf2df0d1778021341", + "domain": ".scorecardresearch.com", + "path": "/", + "expires": 1812136543.80771, + "size": 36, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://fandom.com", + "hasCrossSiteAncestor": true + } + }, + { + "name": "cf_clearance", + "value": "ox5aHxj1iTmr36bupanRP2RBVVC5p693K5pU1ZVhJNw-1778307119-1.2.1.1-F8.Gwa6Nc6P2pFZn4QfxsRaSbvTo4lqNQRHJQUgtVrHbtcKw2gLUMmD6MRx7dAyum6dtFLW3ZI.IvhTJu8vEMmWyp7WVSMm6MBy1x_jIK3j3.eQ0oQTJEHv3iOTpOB0FpUf.K3Ml.wqPTNH3dgKvecfvaF6S0499JMWqMKkKtY1VPKi16mMM5n_AhFjr7CZK3sLgD3wsuON9TJ7p25o_ESBk.5NVuksZkfveZlLdE6WKR0JeB5zmaafHYdYl026lLaq7_gFVFWbQjj3.8lW15hhUWCXaBjaNhHBoJkis1h7QSBCnpYVZHPAEC7G9vDKmb6F_H9tEBzxC7_ZY7r.Zwg", + "domain": ".www.fandom.com", + "path": "/", + "expires": 1809843119.934339, + "size": 417, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://fandom.com", + "hasCrossSiteAncestor": false + } + }, + { + "name": "OptanonConsent", + "value": "isGpcEnabled=0&datestamp=Sat+May+09+2026+04%3A11%3A12+GMT-0400+(Eastern+Daylight+Time)&version=202601.1.0&browserGpcFlag=0&isIABGlobal=false&hosts=&landingPath=https%3A%2F%2Fwww.dailywire.com%2F&GPPCookiesCount=1&gppSid=7&groups=C0001%3A1%2CSPD_BG%3A1%2CC0002%3A1%2CC0004%3A1", + "domain": ".dailywire.com", + "path": "/", + "expires": 1809850272, + "size": 289, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "csrftoken", + "value": "PsdDkMXkoyVR7DQ5nfO-Nk", + "domain": ".instagram.com", + "path": "/", + "expires": 1812874276.564116, + "size": 31, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "mid", + "value": "af7sJAALAAEMcWUaRX6MMc_Q0hVu", + "domain": ".instagram.com", + "path": "/", + "expires": 1812874276.564205, + "size": 31, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_CZKR9ZYKJP", + "value": "GS2.1.s1778314275$o2$g1$t1778314282$j53$l0$h0", + "domain": ".dailywire.com", + "path": "/", + "expires": 1812874282.285645, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cf_clearance", + "value": "W9jcmU0ul3wVR4uFYZRzO7XpxhBg2cKNFNjZTLZSSXo-1778314934-1.2.1.1-7tkajpIi7.YfgRY6OVOm3QXCjgXe0yytv5YtCLSH9HXZ0ZYhi16GZzRbUAtLo7s4zGPrTSBWYuH2AanHWGtoEiTvFvHU22Om1u5TnYyXI5gnprzaES7ZoGG9VZvvEjMy_GvmoQa5DukPagk77Ol8SOtWOXKYVauQd4_dhCtBlOuPTJBb6DrZAQewwmemmGXY.7gBRCfoDa3klszi.LvNGWEt0SCDVcjizvyuC9Awty6JlJATpTb.NRRZESFes42tKoy6X8K.n5wDoWP1cjs1K7vnAuWn.QE4CndlLNvNh8vDBcNXw2wAtK5jOBW8GTO2.givhTixKQ2DoHj2x7BezQ", + "domain": ".kali.org", + "path": "/", + "expires": 1809850934.659402, + "size": 417, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://kali.org", + "hasCrossSiteAncestor": false + } + }, + { + "name": "cf_clearance", + "value": "KHT3PNpJAi40lgVCO_0lN3JpInsM3QFsB4mwabDx9LA-1778439910-1.2.1.1-tU8iXjmm.u.I9Hmd44es.R_dT7Qlo4ZSW0wnXVc5kc4mctzVwlWTzxrToFv8dKOzaLgPZQkOXBrXGRcwxpCCjY.a6R9tJ3xCJXaa1i5TwEZgOAiBpWtzBMQGM4ViPH43pPrP4ZIOxP5g0YB8vyqtIsubPGVBbcGLJ.njt_G3KNMowMkf6KZOOjobXFG_dO3_nkVur22dPfo61JnXH0Sh1RrzSGQM5NXxLQ5Njhqr7oygOKYOE4opM3qrndkEXse0aHMnDO_Lr6kAaKvlSOoMQ0f3.9ABEELcMND1aw2DIyurBlYAE0.yhVSidgxQfE40mSpyEq8YopSPC6_W969lUg", + "domain": ".fandom.com", + "path": "/", + "expires": 1809975910.352463, + "size": 417, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "https://fandom.com", + "hasCrossSiteAncestor": false + } + }, + { + "name": "OptanonConsent", + "value": "isGpcEnabled=0&datestamp=Sun+May+10+2026+15%3A15%3A40+GMT-0400+(Eastern+Daylight+Time)&version=202510.1.0&browserGpcFlag=0&isIABGlobal=false&hosts=&consentId=97fa4d7b-0382-4e2f-8dec-244055a673eb&interactionCount=1&isAnonUser=1&landingPath=NotLandingPage&groups=C0001%3A1%2CC0003%3A1%2CC0005%3A1%2CC0004%3A1%2CC0002%3A1&AwaitingReconsent=false", + "domain": ".fandom.com", + "path": "/", + "expires": 1809976540, + "size": 356, + "httpOnly": false, + "secure": false, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "__Host-GAPS", + "value": "1:PgTDL4x1S6aKA-D8Bp1NadDPIFigPQ:uZIqYxc-CgLwiCZ9", + "domain": "accounts.google.com", + "path": "/", + "expires": 1813005528.632546, + "size": 60, + "httpOnly": true, + "secure": true, + "session": false, + "priority": "High", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gcl_au", + "value": "1.1.1187955568.1778445529", + "domain": ".workspace.google.com", + "path": "/", + "expires": 1786221529, + "size": 32, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_FWCBRW1RY8", + "value": "GS2.1.s1778445529$o1$g1$t1778445539$j50$l0$h0", + "domain": ".workspace.google.com", + "path": "/", + "expires": 1813005539.703787, + "size": 59, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "__Secure-YNID", + "value": "18.YT=18FHG-r4Ia6LS10F28CefV1nBlmRTMgIc9jrCLNXyvCCeZNbSQiSjhqLrOAL2WEFUPmc8kUlpCUjcKCWyYjEygAmPzozBXlwxFwngbei87bkUEy_lq7BaovLqiSMmd1WpV2pMBnykiENFO010r4H-UMCqqld3crZe5PUUH4iLO5Orq7Z6DeV8soPLzgUxUtexBsPLlLoUIWHe7v3gf4RRGFUszOY4BH4RsGsq6cQ3DFIG-OcH2_X-QJ1fCP20L5cBA3z84ZWXNm-RWJF3u1IgvYxPMa5IwWDaOg00yyQysPAmK7Z7fonn01BTPEN76nRXCBp4lssrxGmo_F2zg026w", + "domain": ".youtube.com", + "path": "/", + "expires": 1794157317.058321, + "size": 361, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "chrome://whats-new", + "hasCrossSiteAncestor": true + } + }, + { + "name": "__Secure-ROLLOUT_TOKEN", + "value": "CLmpl_WA-5mQuQEQ-OL3kJ20lAMY-OL3kJ20lAM%3D", + "domain": ".youtube.com", + "path": "/", + "expires": 1794157317.058434, + "size": 64, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "chrome://whats-new", + "hasCrossSiteAncestor": true + } + }, + { + "name": "VISITOR_INFO1_LIVE", + "value": "ZmgwlxRa_yg", + "domain": ".youtube.com", + "path": "/", + "expires": 1794157317.058487, + "size": 29, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "chrome://whats-new", + "hasCrossSiteAncestor": true + } + }, + { + "name": "VISITOR_PRIVACY_METADATA", + "value": "CgJVUxIEGgAgWQ%3D%3D", + "domain": ".youtube.com", + "path": "/", + "expires": 1794157317.058519, + "size": 44, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443, + "partitionKey": { + "topLevelSite": "chrome://whats-new", + "hasCrossSiteAncestor": true + } + }, + { + "name": "color_mode", + "value": "%7B%22color_mode%22%3A%22auto%22%2C%22light_theme%22%3A%7B%22name%22%3A%22light%22%2C%22color_mode%22%3A%22light%22%7D%2C%22dark_theme%22%3A%7B%22name%22%3A%22dark%22%2C%22color_mode%22%3A%22dark%22%7D%7D", + "domain": ".github.com", + "path": "/", + "expires": -1, + "size": 214, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "cpu_bucket", + "value": "lg", + "domain": ".github.com", + "path": "/", + "expires": -1, + "size": 12, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "preferred_color_mode", + "value": "light", + "domain": ".github.com", + "path": "/", + "expires": -1, + "size": 25, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "tz", + "value": "America%2FNew_York", + "domain": ".github.com", + "path": "/", + "expires": -1, + "size": 20, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_BFR4KR7D60", + "value": "GS2.1.s1778647445$o18$g0$t1778647445$j60$l0$h0", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1813207445.595735, + "size": 60, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "NID", + "value": "531=euAF3tHLQNCM-jcJAJfMW5g5Qn2-rdHeQ9p93FWRn1FjXgeUto5tvHzyqAhQu6-2J7PFcl2OploTOKrwpiHBHvj7a_abnTtBtTXuLQJmzWT4fWtb33O6Po2sEJK8Paj1WdodyctkxRoG2oKl8-jrAZhD0EnboYXjkUtnv0pd4TrNbOsldLWAAKfedGOx", + "domain": ".lensfrontend-pa.googleapis.com", + "path": "/", + "expires": 1794557474.050503, + "size": 195, + "httpOnly": true, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "AEC", + "value": "AaJma5s1Wx-cLwob7o1nQhAKUIFlrq6DVakO-tQyqZfrpEDPIUTI-dyvQQ", + "domain": ".google.com", + "path": "/", + "expires": 1793486688.280758, + "size": 61, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_C_Auth", + "value": "", + "domain": "www.msn.com", + "path": "/", + "expires": -1, + "size": 7, + "httpOnly": false, + "secure": false, + "session": true, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "Web-User", + "value": "%7B%22userId%22%3A%22m-1B5D4D331D6064723A295A631C1965B0%22%2C%22cohorts%22%3A%5B%7B%22name%22%3A%22SuperCold%22%2C%22everSelected%22%3Afalse%2C%22reason%22%3A%22MatchedBySignal%22%7D%5D%2C%22accountType%22%3A%22NA%22%2C%22identityType%22%3A%22Web%22%2C%22settings%22%3Anull%2C%22responseCreationDateTime%22%3A%222026-05-14T16%3A15%3A13.2657203Z%22%2C%22debugId%22%3A%22351c2114-7d2a-4d1d-97df-d6c7043cd095%7C2026-05-14T16%3A15%3A13.2657229Z%7CAuth%7CEUS2-CF%7Caksgen11000002%22%7D", + "domain": ".msn.com", + "path": "/", + "expires": 1779380113.327062, + "size": 488, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_EDGE_S", + "value": "SID=332FC5051FCA62C52C45D25C1EDE638E", + "domain": ".msn.com", + "path": "/", + "expires": -1, + "size": 43, + "httpOnly": true, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "msal.cache.encryption", + "value": "%7B%22id%22%3A%22019e2745-5159-7e24-b5f9-b13161d0ad37%22%2C%22key%22%3A%22w667vccKvcw3pHndhGxvPvMtPz9lHgxiZJHMSUjCDVM%22%7D", + "domain": "www.msn.com", + "path": "/", + "expires": -1, + "size": 144, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "adslrid", + "value": "_", + "domain": ".msn.com", + "path": "/", + "expires": 1778861718, + "size": 8, + "httpOnly": false, + "secure": true, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "esctx-SOjAs8GVCeI", + "value": "AQABCQEAAAAdDD7nC9b5Q7JPd_okEQRFRXZvU3RzQXJ0aWZhY3RzDQAAAAAAkWY118Cf1rCEDuufsPPRfJ4M2jsECgVrWKB6bDFkKexd-F4BpBL5ySjH-uhMRWprST_aTfJWq7dtCiOXsma9w0EcdOTsvZnA_SmmTmSABCHX9ESleTIEc3uZr5Iecck6UwmxoQ-87srQ3DXmlnoHeCAA", + "domain": ".login.microsoftonline.com", + "path": "/", + "expires": -1, + "size": 229, + "httpOnly": true, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "x-ms-gateway-slice", + "value": "estsfd", + "domain": "login.microsoftonline.com", + "path": "/", + "expires": -1, + "size": 24, + "httpOnly": true, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "stsservicecookie", + "value": "estsfd", + "domain": "login.microsoftonline.com", + "path": "/", + "expires": -1, + "size": 22, + "httpOnly": true, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "AADSSO", + "value": "NA|NoExtension", + "domain": ".login.microsoftonline.com", + "path": "/", + "expires": -1, + "size": 20, + "httpOnly": false, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "buid", + "value": "1.AQcAMe_N-B6jSkuT5F9XHpElWqQwtdeAdiNMqL_FLBIdLocAAAAHAA.AQABGgEAAAAdDD7nC9b5Q7JPd_okEQRFRXZvU3RzQXJ0aWZhY3RzAwAAAAAAn8zc5bID_vpMJlE9GawNIsTM_uuTrmYsdYt4QB8uhHVCrBa175g0bRFYiGNxhA1KohpO4a_43d-ABJXGECFxnTQqcatHFNz-kfl_luyioSAgAA", + "domain": "login.microsoftonline.com", + "path": "/", + "expires": 1781367316.230249, + "size": 231, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "esctx", + "value": "PAQABBwEAAAAdDD7nC9b5Q7JPd_okEQRFRXZvU3RzQXJ0aWZhY3RzDQAAAAAAgdDjabOve8ektVtaWEJFmp8l3LtkUXb2Vh9pm5pcw-hPKoQfouSg-tocLXMoL8jK3thXHqy0IoGBAS2nVk2Nt6FzYLdJ5jVfY_UrE4Mo3wOMo5qkeaM3gDaZGsGwQcnpSAt3EABiENLJPZKK--1wmiB6-HJqQ4YkzKyjqJrzCyUgAA", + "domain": ".login.microsoftonline.com", + "path": "/", + "expires": -1, + "size": 240, + "httpOnly": true, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "esctx-U941UnLnKxo", + "value": "AQABCQEAAAAdDD7nC9b5Q7JPd_okEQRFRXZvU3RzQXJ0aWZhY3RzDQAAAAAA2YRhysuZD8piCwncxV5CNdtOOzQ_8gmZpCVbXhXLMrAYmZHx1EQmMU4en0hjnlM5MquO1L4eIW_V6c-J8XDXRJ9vDcnQ3_b3lEGEAVYRsQ2JGF2aloTlREa6yjVKIsgVvQF2-2VylTcabTKgjFzHgSAA", + "domain": ".login.microsoftonline.com", + "path": "/", + "expires": -1, + "size": 229, + "httpOnly": true, + "secure": true, + "session": true, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "fpc", + "value": "AlwP9jf2LPZNiP-tJi_GqQKSbVEHAQAAABPsl-EOAAAA", + "domain": "login.microsoftonline.com", + "path": "/", + "expires": 1781367316.230512, + "size": 47, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "MS0", + "value": "76e9029fbbaf4431b99eac2243962f6f", + "domain": ".microsoft.com", + "path": "/", + "expires": 1778777117.711358, + "size": 35, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "ai_session", + "value": "mrCYWEnltxOCoIeQS8l/Mo|1778775313993|1778775374122", + "domain": "www.msn.com", + "path": "/", + "expires": 1778777174, + "size": 60, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "last_write_ms", + "value": "1778775448278", + "domain": "github.com", + "path": "/", + "expires": -1, + "size": 26, + "httpOnly": true, + "secure": true, + "session": true, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_gh_sess", + "value": "7UUJtl2b%2BlyDUatS0dOUrTJnjWjJOQvV1V7OG4xVJKzZQ2QsKoAX37D8SRHxHBh%2FS7dPM8O%2F8VV8%2F9nEESfdHWkTDlp14HoREAUOBMdb2%2FpoOgukkBO6%2FknOvJxGs0xHB5nPHM2aqlc6LQwKCYSweGuopnSy9OCFFIFdl8poz1b8IuaZQEeIDwdFVCs6RsKqJ723E5okmkzf9XsDYIpVfMiw3%2BHKOUXmoYlxJygaNwPHPFs9BeycisZIh%2BYGP8z3rpMQEfWp4ZXzEZnlLMQ14CGD8KVWbTK%2FEB%2B94f5GNli4I4wJR9LMNjhzem3QJubrda4kJ9kETUJ61OCgFneGoR4eR0cOJKWGXveAObPcscFd0vBwecNeJqXD8E4R2Vzyj4u%2FofZy4M20h%2FuIDLK0Au7PhiV5MLljEQB9ezTIM6DR3tXakK2yBeiOyS0FxS8WlWscQw9m9jayrIEaD7nSecor48AYpOPEYm3ibxoNWIB0IQmrwvJCphcIK3qParPQFQWNqhrJrZ6I25wH9h1Sopf%2BokNahp0NTFjjajUK78K4CQm0kSU5olOdKb7cIi2dA0bc9q04RlYn%2FahPF6CImYzBp7sdr0bwmtiz%2FFawByMhBG2eH8IWrD8XsfFAze0JF9J%2FMQjI1kxdAle53r4DNO8vzTMIh1PLyZqdvX1UKCRIjk%2FnrD1S5ouDK5griVtfNII5h%2FDEvIlFuDOc2cAJvWF7djKQdMCK4c0AKXoIz15r2I%2FSRe0Gs9dq2S69XNu%2Fyn9KGwTZRXCXK3yC2q5tBg%3D%3D--j%2Fj4333F27Lq9OUR--HbZO0UqhuflUPgjEqu%2BDSw%3D%3D", + "domain": "github.com", + "path": "/", + "expires": -1, + "size": 896, + "httpOnly": true, + "secure": true, + "session": true, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "__cf_bm", + "value": "B9Q1WUxF8B.o1ksAWU34_oR4QQ3cAnnDlXItjdZ7Fl4-1778775538.9682965-1.0.1.1-A3b1oU_aFci2C5JNwHBcB1n3oawcMfEFq6Jn2NDA7bgsa38ZYweCEBtUgrOp4rTdaS_flIHktW7.E6iDrULN3xWCmysa3AZo_xFvvGfuNA85Ts4r.dEI4HKEewQL2WuH", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1778777339.158055, + "size": 206, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "XSRF-TOKEN", + "value": "eyJpdiI6IlJLUmVvTkhoenArZ0o0ckh4RTBCY3c9PSIsInZhbHVlIjoiSHhLWkI4Y3MySHhyaFZXdW1pejJuYmxETHJtNjVaVzFhUlQ3WWp3dnhhOEhEZ3QybGVJcWtZa0o4NUlSdDRiQkVRazNoMVphYk55dk4vRFpVR1NvMmFqQThJTnQwVkpOTnNZcDcyS1I5MnY2TSsyZlhaY3AzYzZOcjgzMTlqOUsiLCJtYWMiOiI3ODM0Nzk2OGM3ZGRlMTEzYWM4NGM2NjMyMWZmYTIxNGQyMzk1MDZhNzgzZTFmMTQwODEzZDljYzBkNzA2YWYzIiwidGFnIjoiIn0%3D", + "domain": "academy.hackthebox.com", + "path": "/", + "expires": 1779034744.03494, + "size": 352, + "httpOnly": false, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "htb_academy_session", + "value": "eyJpdiI6IjhBbTZsVU0rV1Y2K01iU05pOFVnalE9PSIsInZhbHVlIjoiOW03R2lhcjVOa3lWdmxIcjJ0LzRWbjdoZy9udnJTeEkrcEtTZFZZNWRPTVV6RFc2d0U3WHNqZDFEZlJiMjdJQ2ljWHVWa0Y5dUhnSVVBZ2JxNGZDdFJoejVkVVVyNEhiSWM5VDBTak4vUnJZMVNXbS9YR3h2cUFzeDJHOGNzMXciLCJtYWMiOiI4Y2RjYzNhNDgyOGNjZTZiNzFiYWE0YWFlZjgxYjI0ODFhMjEyY2JjMWNjZmU2ZmZiZDQyMzJmNTI5NTdkY2Q2IiwidGFnIjoiIn0%3D", + "domain": "academy.hackthebox.com", + "path": "/", + "expires": 1779034744.035079, + "size": 361, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "Lax", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "_ga_TKKV7WGJ6V", + "value": "GS2.1.s1778775541$o11$g1$t1778775544$j57$l0$h0", + "domain": ".hackthebox.com", + "path": "/", + "expires": 1813335544.531966, + "size": 60, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "NID", + "value": "531=JnwB96BXnlO8u4TOd6OwrKBXXGTR796hL7Za7D2e6X6lZOJuiKxNkaVRj2CjCaDfsUzK0BNwqzlkCioexkkoyZLdvjrkTS7JWdSZGCAGQv6diRmRhiK456HyqmkdwaC55NC9M1FPD_G9F6hJFFg4hzCLr-Z84iO2XwbFMxXcGoctkgMiZYy6JpSb2NJTsjABA2hM_8uZ312L1xECu82lVONwOM6izCl0MPb3hdMU03p-7kWTDl9Mo5i2uAYmFiwylL2O28pdDN1A_mc", + "domain": ".google.com", + "path": "/", + "expires": 1794550286.171839, + "size": 278, + "httpOnly": true, + "secure": true, + "session": false, + "sameSite": "None", + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + }, + { + "name": "DV", + "value": "ox0hYNblGsM1sHQ0yOb_f23ZRgx14pmvh8cTyUhSbwEAAECpjF2U5oCrpQEAAAA", + "domain": "www.google.com", + "path": "/", + "expires": 1778776665, + "size": 65, + "httpOnly": false, + "secure": false, + "session": false, + "priority": "Medium", + "sourceScheme": "Secure", + "sourcePort": 443 + } +] From 090725eda4ccdd2a4e9be23d9cedc39db56bac1a Mon Sep 17 00:00:00 2001 From: Antero Guy <46616092+antroguy@users.noreply.github.com> Date: Thu, 14 May 2026 12:40:14 -0400 Subject: [PATCH 2/2] deleted bad files lol --- bookmarks.json | 13 - cookies.json | 3228 ------------------------------------------------ 2 files changed, 3241 deletions(-) delete mode 100644 bookmarks.json delete mode 100644 cookies.json diff --git a/bookmarks.json b/bookmarks.json deleted file mode 100644 index 1a237ec..0000000 --- a/bookmarks.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "type": "bookmark", - "id": "5", - "parentId": "2", - "title": "Dashboard | Hack The Box Academy", - "url": "https://academy.hackthebox.com/app/dashboard", - "path": "Other bookmarks", - "dateAdded": 1777945660424, - "dateGroupModified": null, - "source": "bookmarks-api" - } -] diff --git a/cookies.json b/cookies.json deleted file mode 100644 index 349c728..0000000 --- a/cookies.json +++ /dev/null @@ -1,3228 +0,0 @@ -[ - { - "name": "Conversion", - "value": "EgwIABUAAAAAHQAAAAAYASC00IrY6uunvT5IAWo3RUFJYUlRb2JDaE1Jd3NpQThhbW1sQU1WOW9qQ0NCMU05aVpmRUFBWUFpQUFFZ0pfb2ZEX0J3RXCJp-3gqaaUA5AB25Ke44gVmAEA", - "domain": "www.googleadservices.com", - "path": "/pagead/conversion/16632748715/", - "expires": 1785896468.083728, - "size": 150, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "Conversion", - "value": "EgwIABUAAAAAHQAAAAAYASD88_b8g_TX4-kBSAFqN0VBSWFJUW9iQ2hNSXhkYW9fTFNtbEFNVmlZSENDQjMzSXllNEVBQVlBU0FBRWdJdzhmRF9Cd0VwquzF4rSmlAOQAdSn_tn6FZgBAA", - "domain": "www.googleadservices.com", - "path": "/pagead/conversion/16679965591/", - "expires": 1785899424.634498, - "size": 152, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_C_Auth", - "value": "", - "domain": "assets.msn.com", - "path": "/service/segments/recoitems", - "expires": -1, - "size": 7, - "httpOnly": false, - "secure": false, - "session": true, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUID", - "value": "", - "domain": ".msn.com", - "path": "/service/segments/recoitems", - "expires": -1, - "size": 4, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUIDB", - "value": "", - "domain": ".msn.com", - "path": "/service/segments/recoitems", - "expires": -1, - "size": 5, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_C_Auth", - "value": "", - "domain": "assets.msn.com", - "path": "/service/news/feed/pages", - "expires": -1, - "size": 7, - "httpOnly": false, - "secure": false, - "session": true, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUID", - "value": "", - "domain": ".msn.com", - "path": "/service/news/feed/pages", - "expires": -1, - "size": 4, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUIDB", - "value": "", - "domain": ".msn.com", - "path": "/service/news/feed/pages", - "expires": -1, - "size": 5, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_C_Auth", - "value": "", - "domain": "api.msn.com", - "path": "/msn/v0/pages/LiveRamp", - "expires": -1, - "size": 7, - "httpOnly": false, - "secure": false, - "session": true, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_C_Auth", - "value": "", - "domain": "assets.msn.com", - "path": "/service/msn", - "expires": -1, - "size": 7, - "httpOnly": false, - "secure": false, - "session": true, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUID", - "value": "", - "domain": ".msn.com", - "path": "/service/msn", - "expires": -1, - "size": 4, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUIDB", - "value": "", - "domain": ".msn.com", - "path": "/service/msn", - "expires": -1, - "size": 5, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_GRECAPTCHA", - "value": "09AKhCRwg2EfomVMvvLpiTxnpv9AAbYzsOAuCt-14Khew7WYu3npdzar1w3t7pfyrCOm2c-qr6smihqn8OUHit0HI", - "domain": "www.recaptcha.net", - "path": "/recaptcha", - "expires": 1793479816.502639, - "size": 100, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "High", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "SNID", - "value": "AEDUgYad12-_cm2cUJ0PTz1GQ5CYPj_JLpUJVkLOaX5l41sBDnKKbgbx5kTvQAt1omaXFIAPkL7timEWEmx-HeiSEOFh-pXoTQ", - "domain": ".google.com", - "path": "/verify", - "expires": 1794550286.54055, - "size": 102, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "__Secure-BUCKET", - "value": "CLgG", - "domain": ".google.com", - "path": "/", - "expires": 1793479488.182198, - "size": 19, - "httpOnly": true, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "oai-did", - "value": "481ff7d1-2a68-48d4-a6c1-c16a5dacd732", - "domain": ".chatgpt.com", - "path": "/", - "expires": 1809031489.188335, - "size": 43, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "VISITOR_INFO1_LIVE", - "value": "jV3ZkBvQyhA", - "domain": ".youtube.com", - "path": "/", - "expires": 1793484414.18778, - "size": 29, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://google.com", - "hasCrossSiteAncestor": true - } - }, - { - "name": "VISITOR_PRIVACY_METADATA", - "value": "CgJVUxIEGgAgOQ%3D%3D", - "domain": ".youtube.com", - "path": "/", - "expires": 1793484414.187869, - "size": 44, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://google.com", - "hasCrossSiteAncestor": true - } - }, - { - "name": "_ga", - "value": "GA1.1.1588201749.1777927492", - "domain": ".chatgpt.com", - "path": "/", - "expires": 1793695495, - "size": 30, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.1036817489.1777927493", - "domain": ".chatgpt.com", - "path": "/", - "expires": 1785703492, - "size": 32, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_fbp", - "value": "fb.1.1777927492996.54400444459185754", - "domain": ".chatgpt.com", - "path": "/", - "expires": 1785703493, - "size": 40, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "OTZ", - "value": "8593727_72_76_104100_72_446760", - "domain": "ogs.google.com", - "path": "/", - "expires": 1780519631, - "size": 33, - "httpOnly": false, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "__Secure-YNID", - "value": "18.YT=MPZ5v32_GzrlDhIofJy9RDn2M3nHZIzX-6C9DbuoUOuPzms_VjrjSC6AFzImED2YIpF0HFLF6aZiKxQwP2HqvCuMWEqeRVKRlhJfCQ1qeFxQWUAHzuL1ghg50H3LoOSV-MRcBeKo52p3B3Py69qoeIGSg9ekNbkwUvcC3aF3ejxbWS_iL78hMxcpe0SlgSBh7wv3fRN1Y1IutPyrj7MDZXHxKAZ7gpx_1CvQWw8baU6FyT5yxcy4jUtoImnhzSXryjSG1FNibQB-UhFt0LH_spnPSaIXU7bWTqlwCn-Xvb2dFWVEhbkC1_8SGFcnNKSwllRYKAleZVJz3oDoyc0F7w", - "domain": ".youtube.com", - "path": "/", - "expires": 1793479489.894632, - "size": 361, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://google.com", - "hasCrossSiteAncestor": true - } - }, - { - "name": "__Secure-ROLLOUT_TOKEN", - "value": "CLnt-uT3vfr3cRCXtLXt2qCUAxio5YG426CUAw%3D%3D", - "domain": ".youtube.com", - "path": "/", - "expires": 1793479646.894732, - "size": 66, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://google.com", - "hasCrossSiteAncestor": true - } - }, - { - "name": "_ga", - "value": "GA1.1.410244181.1777927659", - "domain": ".4kwallpapers.com", - "path": "/", - "expires": 1812487718.80573, - "size": 29, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "FCCDCF", - "value": "%5Bnull%2Cnull%2Cnull%2Cnull%2Cnull%2Cnull%2C%5B%5B32%2C%22%5B%5C%22c5259063-0e64-470d-8588-53ea45984c18%5C%22%2C%5B1777927659%2C455000000%5D%5D%22%5D%5D%5D", - "domain": ".4kwallpapers.com", - "path": "/", - "expires": 1811623719, - "size": 162, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "FCNEC", - "value": "%5B%5B%22AKsRol81ncje7KnNZ3Hmh8O7xoPDNzRkYoO80OBX3HV8xN5FmZQq7hdA2smTu4Eg0sxOL-kmEsXEh_yZbdbUNpfLQtVmtvKD1mvy3p7RPcGCjAykUwbTfTpaszgKO6_GFrK9ON8_TJ__n3pMzL3FSdntcHltyYqXvw%3D%3D%22%5D%5D", - "domain": ".4kwallpapers.com", - "path": "/", - "expires": 1809463719, - "size": 191, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_9SHBSK2D9J", - "value": "GS2.1.s1777927491$o1$g1$t1777927726$j60$l0$h0", - "domain": ".chatgpt.com", - "path": "/", - "expires": 1793695726, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "csrftoken", - "value": "2b9dc1e52b8a75aee23462f5105a5724", - "domain": "www.pinterest.com", - "path": "/", - "expires": 1809463733.420307, - "size": 41, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_pinterest_sess", - "value": "TWc9PSY0dUFkUlFwcVVZUzdPY2ZYNXpKOU9WSmpLVTZHM2Vub2JvTW5iTTJ2eUFPK2dud3hOWGlsU2I1amJZVVplSDROUjFTb21TWlExS0lTTGhwU0xoZEtFRGtuVWJ1MWpFQitBejViT2lneVRwRT0mRUIxWXpDaXdSRUVHRHpqT2l6Z0wxYnpKVk93PQ==", - "domain": ".pinterest.com", - "path": "/", - "expires": 1809031733.420359, - "size": 207, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_auth", - "value": "0", - "domain": ".pinterest.com", - "path": "/", - "expires": 1809031733.420386, - "size": 6, - "httpOnly": true, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.157328473.1777927738", - "domain": ".alphacoders.com", - "path": "/", - "expires": 1812487837.829268, - "size": 29, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "g_state", - "value": "{\"i_l\":0,\"i_ll\":1777927815424,\"i_b\":\"ZptIYc8cjg90FIy3FDcH29s3vAJ6/Z9J90k4F/zBqGI\",\"i_e\":{\"enable_itp_optimization\":0},\"i_et\":1777927814916}", - "domain": "www.pinterest.com", - "path": "/", - "expires": 1793479815, - "size": 146, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_TXM0B6HHQC", - "value": "GS2.1.s1777927659$o1$g1$t1777927990$j60$l0$h0", - "domain": ".4kwallpapers.com", - "path": "/", - "expires": 1812487990.652328, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_HL65XQTV30", - "value": "GS2.1.s1777927737$o1$g1$t1777927990$j60$l0$h0", - "domain": ".alphacoders.com", - "path": "/", - "expires": 1812487990.657444, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.1697293561.1777930027", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1785706027, - "size": 32, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.1037170161.1777930028", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1813207445.596396, - "size": 30, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_fbp", - "value": "fb.1.1777930027865.8627097111214270", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1786124166, - "size": 39, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "CookieConsent", - "value": "{stamp:%27BhRyBLjJe+uPMTwdpBzkgtqLth57ueMguR/pt9QO6huJXNZi1raRKg==%27%2Cnecessary:true%2Cpreferences:true%2Cstatistics:true%2Cmarketing:true%2Cmethod:%27explicit%27%2Cver:1%2Cutc:1777937239143%2Cregion:%27us-08%27}", - "domain": "account.hackthebox.com", - "path": "/", - "expires": 1793834839, - "size": 227, - "httpOnly": false, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cf_clearance", - "value": "tISi6KDfDq.E_XWlqZD34j7gJJX_Octz.qBAAe4zpxE-1777937253-1.2.1.1-pPF07ekaXWAjBiqCqpiyd6JkCpu23X0PU4JJTJdC8pGBdxrmz3GynY8gwL4nU3GyDh_HuFuSs5L_VybwuK7WdGm2EIHhhU5dhUfZWoyQNlJP7.oU8UaV3QKDKPjOv9UBT8VIoyVKuORzrnGnqGRbwlRVXDDaj.kZmxbER.vaF.9Lj5qmQ_YYzyLJIlnVJrWmw8qpb8Igk97jvRlKyctk8CP4oUluVEq93.Ej6cvP0lCW.E_UMsdwY6tYO6hn_m2r0bdWLnkQShSdYV4BrMMJkHijoi700f55wRX0juJxznHAMhGiBd3qz4riKUaWjiRXdMRzZsfMBLocON.QBIrRAA", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1809466052.300281, - "size": 417, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://hackthebox.com", - "hasCrossSiteAncestor": false - } - }, - { - "name": "global_device_cookie_TBrBXUIkXPQllepLsXzXHysQHH7UZYGuGwgKg27O", - "value": "eyJpdiI6Ikt6SVlNMk9YZkJlWFFQdC9SRjF1WHc9PSIsInZhbHVlIjoiZjg1eC9uRDEvNGkreHN5RXpuNXl6MExFNCtVQXRyV252VDN6RXZEcFVlaTloVUUzcVJvM3ZrWEMzUDM4WkhFak0zL21SV2RyNzhFVWNVUkVZUlA0ckE9PSIsIm1hYyI6ImFiYmFjMjRiOGU3ZDA0MWViMWFjMDE4NDI5YjdmMjhlZjA3NjUwZTExYTFmYTc3YzdlNGI2YWNmOTE2MDg1MDUiLCJ0YWciOiIifQ%3D%3D", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1812490052.725408, - "size": 353, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "CookieConsent", - "value": "{stamp:%27b+bue0dmb4yx8Fu4LpiJGR06MacDQO6JbjNJo5hMuywOPEn36V3vjA==%27%2Cnecessary:true%2Cpreferences:true%2Cstatistics:true%2Cmarketing:true%2Cmethod:%27explicit%27%2Cver:1%2Cutc:1777937257988%2Cregion:%27us-08%27}", - "domain": "academy.hackthebox.com", - "path": "/", - "expires": 1793834857, - "size": 227, - "httpOnly": false, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cf_ab_h", - "value": "ca636cb7c870ee262671f4e44cffe4a6afaf9bde2e3902bd9798e25983149ccc", - "domain": ".openvpn.net", - "path": "/", - "expires": 1809468428.644686, - "size": 71, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.565136977.1777932416", - "domain": ".openvpn.net", - "path": "/", - "expires": 1785708416, - "size": 31, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.669347989.1777932416", - "domain": ".openvpn.net", - "path": "/", - "expires": 1812492425.080484, - "size": 29, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "osano_consentmanager_uuid", - "value": "cb6b374e-00a4-4676-bace-3cef0d08d3ce", - "domain": ".openvpn.net", - "path": "/", - "expires": 1809468425.036242, - "size": 61, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "osano_consentmanager", - "value": "tpmvOBiYgJCJ4EQSSrZ0KArYF8pvNRbvd3Qe6E5PVPvGD03ieS6udMNrEwrxTZSH8zMDdNpcyxEKQlCI04vkH2STXAIkwuM1PU45aO5h-T7yNFoOFLX_lBrs34vymo-JHjSrbKNEu3FOy_2m7isMw8gY-ZpmOUAm78T0GofvrfcSBozSa0BLhUmxhp4CUv3dP9Ox-x2JCJmvNtMUwy2DerR55VYiy2c5Cy8yxssdjZXMvVV2k0i4hBtZje_dGYGnQPdcl5DdqSr2aJxKThXxy2iLWGe5w4EdzXosV0ZA7uHlKAIrAfIq3cFszDTaOnANsprqdSgco4w=", - "domain": ".openvpn.net", - "path": "/", - "expires": 1809468425.036465, - "size": 352, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "FPID", - "value": "FPID2.2.OEwoUY15vq3MjEoqoejD3T8gbkbqz5%2F7%2B5HcZkPQ4Bw%3D.1777932416", - "domain": ".openvpn.net", - "path": "/", - "expires": 1812492443.356212, - "size": 73, - "httpOnly": true, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_zitok", - "value": "498d6ea2462e5eee5cfe1777939625", - "domain": ".openvpn.net", - "path": "/", - "expires": 1809468425, - "size": 36, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Strict", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_E45Z33NTV7", - "value": "GS2.1.s1777932416$o1$g1$t1777932443$j33$l0$h272950158", - "domain": ".openvpn.net", - "path": "/", - "expires": 1812492443.304179, - "size": 67, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_SPGM8Y8Y79", - "value": "GS2.1.s1777932415$o1$g1$t1777932443$j32$l0$h0", - "domain": ".openvpn.net", - "path": "/", - "expires": 1812492443.310223, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "username-localhost-8888", - "value": "\"2|1:0|10:1777951472|23:username-localhost-8888|192:eyJ1c2VybmFtZSI6ICJkMTg1M2JmMzQ1MTQ0ZjI2YTg1NTJlN2M5YzgyZGNjNyIsICJuYW1lIjogIkFub255bW91cyBDYXJtZSIsICJkaXNwbGF5X25hbWUiOiAiQW5vbnltb3VzIENhcm1lIiwgImluaXRpYWxzIjogIkFDIiwgImNvbG9yIjogbnVsbH0=|dab5b2952d6859789645735a7303cc4e7f0af304156bac73876303f744fecc39\"", - "domain": "localhost", - "path": "/", - "expires": 1780543472.725842, - "size": 333, - "httpOnly": true, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "NonSecure", - "sourcePort": 8888 - }, - { - "name": "_xsrf", - "value": "2|3380a3d5|2c2c721e7fed4f71563012d72016e824|1777951472", - "domain": "localhost", - "path": "/", - "expires": 1780543472.726009, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "NonSecure", - "sourcePort": 8888 - }, - { - "name": "cf_clearance", - "value": "nyf9.x2kKf09dBpS4.qdGxgXXVQuHf4ik9OBdrWjQKA-1777960180-1.2.1.1-y1d9bB2C8hsx63CQ1eSTcWrQ4AqCk6dsntKsxCxzo490hVKp0IFEduMLZQSz3..CeNPLObvxUzMSdRIgOLcgeEAiS.5uqqbWDnU4FWWUFhiLvlN5_vYSFIk2FaskMljiEBCWYADKa8XsaqDLQI2BC0auCDCLq9yN1XNd579uWXSz3So9LZyQJtMYHfCs0nYTZNTdriZIC2eKOHwcuuoDtIuN3QrwJ8urga5Lmj9aLN3xMzwouygOTjkKulJy9dp9udLqDvdGXxsaY3jpDLvyiFRZfniZplRnOJv8_r4e3nArJQcmay75aehWky6lJoYkMc1v0r6oLFJGQJr57DwuVQ", - "domain": ".terminaltrove.com", - "path": "/", - "expires": 1809488979.373307, - "size": 417, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://terminaltrove.com", - "hasCrossSiteAncestor": false - } - }, - { - "name": "ph_phc_pOt81REqgDZDelE300LsnjdiIacTehIQVrtzuap3BXG_posthog", - "value": "%7B%22%24device_id%22%3A%22019df641-7a30-7020-bae9-c91e07004488%22%2C%22distinct_id%22%3A%22019df641-7a30-7020-bae9-c91e07004488%22%2C%22%24sesid%22%3A%5B1777952981868%2C%22019df641-7a43-7239-baa4-9e0586bc6668%22%2C1777952979517%5D%2C%22%24initial_person_info%22%3A%7B%22r%22%3A%22https%3A%2F%2Fwww.google.com%2F%22%2C%22u%22%3A%22https%3A%2F%2Fterminaltrove.com%2Fterminals%2F%22%7D%2C%22%24user_state%22%3A%22anonymous%22%7D", - "domain": ".terminaltrove.com", - "path": "/", - "expires": 1809488981, - "size": 484, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "loid", - "value": "000000002dq03r6trl.2.1777960184416.Z0FBQUFBQnAtWVQ0N3h3R0hIbUc0Z1pBcjZlLW51RTVtLTB3ak43RzJnamJYazZVUmxJZ3laNG5kQ1E5eHhuN1lYc1piRE45ZUdOYThxMnY0RHB0LWdPWGx4UXpnMXFHdnR6NTItT3R3ajJoM1hPR3plTkotbzVmVkRUdGtIRDliaTFsdEwtbFkxQ20", - "domain": ".reddit.com", - "path": "/", - "expires": 1812512983.665079, - "size": 226, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "csv", - "value": "2", - "domain": ".reddit.com", - "path": "/", - "expires": 1812512983.665494, - "size": 4, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "edgebucket", - "value": "EX5I6IdAQwLnJFhWDG", - "domain": ".reddit.com", - "path": "/", - "expires": 1812512983.665542, - "size": 28, - "httpOnly": false, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.477900898.1777952984", - "domain": ".reddit.com", - "path": "/", - "expires": 1785728983, - "size": 31, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "reddit_translation_status", - "value": "{%22shouldDisplayCoachmark%22:true%2C%22shouldDisplayFeedbackCoachmark%22:false%2C%22coachmarkDisplayCount%22:0%2C%22showCommentTranslationModal%22:true%2C%22showPostTranslationModal%22:true%2C%22isTranslationActive%22:true%2C%22knownLanguages%22:%22%22}", - "domain": "www.reddit.com", - "path": "/", - "expires": 1809488984, - "size": 279, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "reddit_supported_media_codecs", - "value": "video/avc%2Cvideo/vp9", - "domain": "www.reddit.com", - "path": "/", - "expires": 1809488984, - "size": 50, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "g_state", - "value": "{\"i_l\":0,\"i_ll\":1777952985273,\"i_b\":\"cXt/lFltlVT12dngdYHCxyCnoqgAiD0Za3PytrwgKxU\",\"i_e\":{\"enable_itp_optimization\":0},\"i_et\":1777952985271}", - "domain": "www.reddit.com", - "path": "/", - "expires": 1793504985, - "size": 146, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "ajs_user_id", - "value": "9b1ecfd8-a185-4602-b272-0f21f9df3d21", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1809588395, - "size": 47, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "ajs_anonymous_id", - "value": "913e2a42-8f81-4b86-a750-907016b95824", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1809588395, - "size": 52, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.874821728.1777956389", - "domain": ".recurly.com", - "path": "/", - "expires": 1812516388.88364, - "size": 29, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "OptanonAlertBoxClosed", - "value": "2026-05-05T04:46:32.279Z", - "domain": ".recurly.com", - "path": "/", - "expires": 1809492392, - "size": 45, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "OptanonConsent", - "value": "isGpcEnabled=0&datestamp=Tue+May+05+2026+00%3A46%3A32+GMT-0400+(Eastern+Daylight+Time)&version=202604.1.0&browserGpcFlag=0&isDntEnabled=0&isIABGlobal=false&hosts=&consentId=9d3211eb-92da-43ea-9d2c-b08dd84a1c7f&interactionCount=1&isAnonUser=1&prevHadToken=0&landingPath=NotLandingPage&groups=C0001%3A1%2CC0002%3A1%2CC0003%3A1%2CC0004%3A1&intType=1&crTime=1777956392495", - "domain": ".recurly.com", - "path": "/", - "expires": 1809492392, - "size": 381, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_GHGHYN8GLD", - "value": "GS2.1.s1777956388$o1$g1$t1777957108$j60$l0$h0", - "domain": ".recurly.com", - "path": "/", - "expires": 1812517108.558158, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_399004781", - "value": "GS2.1.s1777956388$o1$g1$t1777957108$j60$l0$h0", - "domain": ".recurly.com", - "path": "/", - "expires": 1812517108.561371, - "size": 58, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_octo", - "value": "GH1.1.969442836.1777964587", - "domain": ".github.com", - "path": "/", - "expires": 1809493386.313307, - "size": 31, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_device_id", - "value": "c9b4a0bf241115117298d2ff969138b6", - "domain": "github.com", - "path": "/", - "expires": 1810311414.195444, - "size": 42, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "saved_user_sessions", - "value": "46616092%3AyLQ44S4Q__ur7fo8AIHylHSqwSaATEOilWsiYU_nIJJVf_-L", - "domain": "github.com", - "path": "/", - "expires": 1785733419.15937, - "size": 78, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "user_session", - "value": "yLQ44S4Q__ur7fo8AIHylHSqwSaATEOilWsiYU_nIJJVf_-L", - "domain": "github.com", - "path": "/", - "expires": 1779985014.195667, - "size": 60, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "__Host-user_session_same_site", - "value": "yLQ44S4Q__ur7fo8AIHylHSqwSaATEOilWsiYU_nIJJVf_-L", - "domain": "github.com", - "path": "/", - "expires": 1779985014.195766, - "size": 77, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Strict", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "logged_in", - "value": "yes", - "domain": ".github.com", - "path": "/", - "expires": 1809493419.159862, - "size": 12, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "dotcom_user", - "value": "antroguy", - "domain": ".github.com", - "path": "/", - "expires": 1809493419.16, - "size": 19, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "sptmarket", - "value": "en-us%7C%7Cus%7Cen-us%7Cen-us%7Cen%7C%7Creason%3DRevIP%3Aus%7Ccf%3D8%7CRefA%3D69fa73db6e204103a2ae46cb6e56b432.RefC%3D2026-05-05T22%3A48%3A59Z", - "domain": "www.msn.com", - "path": "/", - "expires": 1812581339.600705, - "size": 151, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "USRLOC", - "value": "", - "domain": ".msn.com", - "path": "/", - "expires": 1813335313.32734, - "size": 6, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUID", - "value": "1B5D4D331D6064723A295A631C1965B0", - "domain": ".msn.com", - "path": "/", - "expires": 1811717339.600758, - "size": 36, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUIDB", - "value": "1B5D4D331D6064723A295A631C1965B0", - "domain": "www.msn.com", - "path": "/", - "expires": 1811717339.600784, - "size": 37, - "httpOnly": true, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_EDGE_V", - "value": "1", - "domain": ".msn.com", - "path": "/", - "expires": 1811717339.60084, - "size": 8, - "httpOnly": true, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_hpFeedView", - "value": "1", - "domain": ".msn.com", - "path": "/", - "expires": 1789143313, - "size": 12, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_switchBannerClosed", - "value": "0", - "domain": ".msn.com", - "path": "/", - "expires": 1789143313, - "size": 20, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "UID", - "value": "16Adc5d91c4a9fbdcf2df0d1778021341", - "domain": ".scorecardresearch.com", - "path": "/", - "expires": 1812471314.105716, - "size": 36, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "XID", - "value": "16Adc5d91c4a9fbdcf2df0d1778021341", - "domain": ".scorecardresearch.com", - "path": "/", - "expires": 1812471314.10583, - "size": 36, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://msn.com", - "hasCrossSiteAncestor": true - } - }, - { - "name": "AlgoRes", - "value": "ABD=V=0", - "domain": "www.msn.com", - "path": "/", - "expires": 1781367314, - "size": 14, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUID", - "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", - "domain": ".bing.com", - "path": "/", - "expires": 1811717342.38274, - "size": 36, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "High", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "msnup", - "value": "%7B%22cnex%22%3A%22no%22%7D", - "domain": ".msn.com", - "path": "/", - "expires": 1786551375.758068, - "size": 32, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUIDB", - "value": "1B5D4D331D6064723A295A631C1965B0", - "domain": ".msn.com", - "path": "/", - "expires": 1811717341.493885, - "size": 37, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MC1", - "value": "GUID=d997e293c7184529b56556e4a7752160&HASH=d997&LV=202605&V=4&LU=1778021346346", - "domain": ".microsoft.com", - "path": "/", - "expires": 1809557346.759765, - "size": 81, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MSFPC", - "value": "GUID=d997e293c7184529b56556e4a7752160&HASH=d997&LV=202605&V=4&LU=1778021346346", - "domain": "www.msn.com", - "path": "/", - "expires": 1809557346.761849, - "size": 83, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MicrosoftApplicationsTelemetryDeviceId", - "value": "99183f7d-ac8e-4962-8a17-b91f02c0c19c", - "domain": "learn.microsoft.com", - "path": "/", - "expires": 1809588391.437003, - "size": 74, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "SRM_B", - "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", - "domain": ".c.bing.com", - "path": "/", - "expires": 1811740000.951847, - "size": 37, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "SRM_I", - "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", - "domain": ".c.bing.com", - "path": "/", - "expires": 1811740000.951909, - "size": 37, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MUID", - "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", - "domain": ".microsoft.com", - "path": "/", - "expires": 1811740000.996848, - "size": 36, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "High", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "SRM_I", - "value": "1DF2C39DE0AA60B512B4D4CDE10761CC", - "domain": ".c1.microsoft.com", - "path": "/", - "expires": 1811740000.996941, - "size": 37, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MSFPC", - "value": "GUID=d997e293c7184529b56556e4a7752160&HASH=d997&LV=202605&V=4&LU=1778021346346", - "domain": "learn.microsoft.com", - "path": "/", - "expires": 1809580002.569849, - "size": 83, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "analytics_session_id", - "value": "1778052395545", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1809588395, - "size": 33, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "analytics_session_id.last_access", - "value": "1778052395549", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1809588395, - "size": 45, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "OTGPPConsent", - "value": "DBABLA~BVQqAAAAAACA.QA", - "domain": ".dailywire.com", - "path": "/", - "expires": 1809850272, - "size": 34, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-20241120_geo-endpoint_10_90", - "value": "control", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712767, - "size": 42, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.1147117683.1778120768", - "domain": ".dailywire.com", - "path": "/", - "expires": 1785896768, - "size": 32, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.387228072.1778120768", - "domain": ".dailywire.com", - "path": "/", - "expires": 1812874275.149716, - "size": 29, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-20250313_prebid-timeout-outstream-test_25_75", - "value": "test", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 56, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-20250221_div-check-on-request_5_95", - "value": "control", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 49, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-20250318_event-history-ttl_5_95", - "value": "control", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 46, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-20241106_report-button_10_90", - "value": "control", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 43, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-00000000_stand-alone-floors-facade-hardFloor_25_25_25_25", - "value": "fallb", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 69, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-00000000_stand-alone-floors-facade-multiplier_25_25_25_25", - "value": "multa", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 70, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-20251104_5x5-uid2-status_50_50", - "value": "enabled", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 45, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-00000000_5x5-hem-disabled_50_50", - "value": "test", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 43, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-20250703_force-render-base-divs_30_70", - "value": "control", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 52, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-00000000_stand-alone-floors-comparison-multiplier_0_100", - "value": "control", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 70, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cw-test-20250807_uid-2-test_100_0_0", - "value": "enabled@sha256_absent", - "domain": "www.dailywire.com", - "path": "/", - "expires": 1780712768, - "size": 56, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.1823001028.1778120843", - "domain": ".anthropic.com", - "path": "/", - "expires": 1812680843.429042, - "size": 30, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "ajs_anonymous_id", - "value": "website.v1.2b6b79ac-cace-4cc8-9c87-f37b46aedd97", - "domain": ".anthropic.com", - "path": "/", - "expires": 1809656843.608003, - "size": 63, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_MT0111843S", - "value": "GS2.1.s1778120843$o1$g1$t1778121304$j60$l0$h0", - "domain": ".anthropic.com", - "path": "/", - "expires": 1812681304.477243, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cf_clearance", - "value": "n3Rm_xOXJgV6rV8_dA4wOQPzFRlbwGaJHZOdpwX4ZU4-1778130682-1.2.1.1-0L_Imz4hso84LHNGBkbTQGtKmVfUhRvaFoMA1LgOGfnds802aKQgePKOWJ3G7F3AXcoOurmJPvdv5a11X7RO7x.8lTkD3cD5Y8urMLVmerHddejleURDXe0Z3n8Epcs5WThjMN3ycpupwoyjNOSnkYIssnLRvEDpRzePJUh29WWWTPrf0VO6953b7xO.LT3dvbLusikMUyVxzkncIOta0wiznXXqf0KMp8THxwbvgXFN3pO6SJ_.rpSIlL1IVTpMSiozlpTmmo1.V4gts8e8sxi5guoEGe5hZMjPPvIO82FUTF6J.ZybRa8.0cVZ14asTxGmjkEUN9y68a8d5i2inA", - "domain": ".chatgpt.com", - "path": "/", - "expires": 1809659481.122207, - "size": 417, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://chatgpt.com", - "hasCrossSiteAncestor": false - } - }, - { - "name": "g_state", - "value": "{\"i_l\":0,\"i_ll\":1778123481944,\"i_b\":\"VNDTGtvCfnxYk8fsNRn6qkQ1XYkXcTvjBsczpq7lXKI\",\"i_e\":{\"enable_itp_optimization\":0},\"i_et\":1777927491162}", - "domain": "chatgpt.com", - "path": "/", - "expires": 1793675481, - "size": 146, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "oai-sc", - "value": "0gAAAAABp_B-fVwzfP6V0Vo11exP8e7F9oU0f1-bMW3MxQ8nxuZDLuEy9OBTmNvg0WDReEShhKcn0I09gNcFB0cRzfffcQGWutok4e03Qq_fnyX6VoDerzzBrxGfBi0Anrt0x3AL9IUZzLQu9Ul4tHENql-sIHoRsHgw4abgC6lFxUXes1uGqs3n2Fv6jmryQnJT2bIh1aXX7XHdWbqn5hDhJJqhY6xx7CgDlPoEge_dXSvuFnn8UBu8", - "domain": ".chatgpt.com", - "path": "/", - "expires": 1809659646.914553, - "size": 254, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "exp-session-id", - "value": "ae7db4e8-76bb-44a0-82ea-1893ee91f192", - "domain": "apps.microsoft.com", - "path": "/", - "expires": 1779333259, - "size": 50, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "ai_user", - "value": "aZPx4Wq11J6ftoc2nsBjpH|2026-05-07T03:14:20.413Z", - "domain": "apps.microsoft.com", - "path": "/", - "expires": 1809659660.413545, - "size": 54, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "notion_browser_id", - "value": "87e31702-0c8d-4e15-8c1c-b48b3f1ef0f9", - "domain": ".www.notion.com", - "path": "/", - "expires": 1809660801, - "size": 53, - "httpOnly": false, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.597463645.1778124802", - "domain": ".notion.com", - "path": "/", - "expires": 1785900802, - "size": 31, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.981422379.1778124802", - "domain": ".notion.com", - "path": "/", - "expires": 1812684802.128946, - "size": 29, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_9ZJ8CB186L", - "value": "GS2.1.s1778124802$o1$g1$t1778124802$j60$l0$h0", - "domain": ".notion.com", - "path": "/", - "expires": 1812684802.370065, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "device_id", - "value": "8f2c8004-3373-47f3-9764-669d4e18692f", - "domain": ".www.notion.so", - "path": "/", - "expires": 1809660802.540897, - "size": 45, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "notion_browser_id", - "value": "3f295cfa-d85a-4545-9539-a0845a58932a", - "domain": ".www.notion.so", - "path": "/", - "expires": 1809660803, - "size": 53, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "notion_ls_sync", - "value": "%7B%22theme%22%3A%22%7B%5C%22mode%5C%22%3A%5C%22light%5C%22%7D%22%7D", - "domain": "www.notion.so", - "path": "/", - "expires": 1809660803.266311, - "size": 82, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "notion_personalization", - "value": "{%22business%22:0%2C%22personal%22:0%2C%22education%22:0%2C%22ai%22:0}", - "domain": ".www.notion.so", - "path": "/", - "expires": 1809660804, - "size": 92, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "g_state", - "value": "{\"i_l\":0,\"i_ll\":1778124803795,\"i_b\":\"NS0MVswZaZ7Qg+6T4Il+edmPYrDvQCNWjTp5H/xwty8\",\"i_e\":{\"enable_itp_optimization\":0},\"i_et\":1778124803793}", - "domain": "www.notion.so", - "path": "/", - "expires": 1793676803, - "size": 146, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.976076606.1778124805", - "domain": ".notion.so", - "path": "/", - "expires": 1785900805, - "size": 31, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_dd_s", - "value": "aid=fb19bae4-8287-41bc-85dc-1e5e57f35d60&rum=0&expire=1778129183387&logs=1&id=8a39113d-c915-4770-9dd2-9b65e6090254&created=1778125613074", - "domain": "chatgpt.com", - "path": "/", - "expires": 1809664283, - "size": 141, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Strict", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "preferred_theme", - "value": "system-light", - "domain": "www.jwt.io", - "path": "/", - "expires": 1809668001.519623, - "size": 27, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_okta_original_attribution", - "value": "%7B%22utm_page%22%3A%22%2F%22%2C%22utm_date%22%3A%2205%2F07%2F2026%22%7D", - "domain": "www.jwt.io", - "path": "/", - "expires": 1809668001, - "size": 98, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "OptanonConsent", - "value": "isGpcEnabled=0&datestamp=Thu+May+07+2026+01%3A33%3A22+GMT-0400+(Eastern+Daylight+Time)&version=6.23.0&isIABGlobal=false&hosts=&landingPath=https%3A%2F%2Fwww.jwt.io%2F&groups=1%3A1%2C3%3A1%2COSSTA_BG%3A1%2C4%3A1%2C2%3A1", - "domain": ".jwt.io", - "path": "/", - "expires": 1809668002, - "size": 232, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.464999883.1778132002", - "domain": ".jwt.io", - "path": "/", - "expires": 1785908002, - "size": 31, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.1679460878.1778132002", - "domain": ".jwt.io", - "path": "/", - "expires": 1812692002.347215, - "size": 30, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_rdt_uuid", - "value": "1778132002377.75f4a3a1-c8b5-4bdd-8808-06d2acffa39f", - "domain": ".jwt.io", - "path": "/", - "expires": 1785908002, - "size": 59, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Strict", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_fbp", - "value": "fb.1.1778132002599.488768258673451008", - "domain": ".jwt.io", - "path": "/", - "expires": 1785908002, - "size": 41, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_QKMSDV5369", - "value": "GS2.1.s1778132002$o1$g1$t1778132302$j60$l0$h0", - "domain": ".jwt.io", - "path": "/", - "expires": 1812692302.674055, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cookies_accepted", - "value": "true", - "domain": "docs.cloud.google.com", - "path": "/", - "expires": 1811916673, - "size": 20, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "django_language", - "value": "en", - "domain": "docs.cloud.google.com", - "path": "/", - "expires": 1793772673, - "size": 17, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "__utmz", - "value": "utmcsr=academy.hackthebox.com|utmcmd=referral|utmccn=(referral)|utmcct=/", - "domain": ".docs.cloud.google.com", - "path": "/", - "expires": 1793772673, - "size": 78, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Strict", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.625235046.1778220674", - "domain": ".cloud.google.com", - "path": "/", - "expires": 1812781090.952761, - "size": 29, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.23576294.1778220674", - "domain": ".cloud.google.com", - "path": "/", - "expires": 1785996674, - "size": 30, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_64EQFFKSHW", - "value": "GS2.1.s1778221090$o1$g0$t1778221090$j60$l0$h0", - "domain": ".cloud.google.com", - "path": "/", - "expires": 1812781090.952101, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_WH2QY8WWF5", - "value": "GS2.1.s1778220674$o1$g1$t1778221090$j60$l0$h0", - "domain": ".cloud.google.com", - "path": "/", - "expires": 1812781090.990539, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cf_clearance", - "value": "rYOU4CRgfxSs3JK6qBJs3QoeFHFi9_xO0UfOO2r_R0E-1778223093-1.2.1.1-gqa9qczYv030C5IItor7vHxsn6KpBgAGVMYwCAXggZS4xtfClP08mYBtbWjkCHhuSzGmSp7PC7HGSfAQm_8lmdhOJ5Nl2QNHuxKwwrnuQS1d0J6MnB3wWrkyNytROgyRB6RPYfuRP2cTIqteTZYwXQ5RzKyHkyx.Y7nsmK2p9B9mC9rmngEz3JDgg1O6ZQEFOJ4wPDaPkZRXbHBMtmBfIjbmKDaa0YrbQ4PqvjrbAAR.bZtdvFWoW0I0Qixu6dzF8G0c77qPmOUSo0CNQkD4HFbyQwSAD7YrXSInNteMt037naEtD8xwncKPdo7jZ0cBNkH6f35y_c5EyFivauzZMA", - "domain": ".md5hashing.net", - "path": "/", - "expires": 1809759093.848355, - "size": 417, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://md5hashing.net", - "hasCrossSiteAncestor": false - } - }, - { - "name": "_ga", - "value": "GA1.1.192964723.1778223094", - "domain": ".md5hashing.net", - "path": "/", - "expires": 1812783093.871707, - "size": 29, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_E8J3BM5J64", - "value": "GS2.1.s1778223093$o1$g0$t1778223099$j54$l0$h0", - "domain": ".md5hashing.net", - "path": "/", - "expires": 1812783099.500989, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga", - "value": "GA1.1.1371089567.1778223108", - "domain": ".gchq.github.io", - "path": "/", - "expires": 1812783108.45966, - "size": 30, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_G9R4C1H8SR", - "value": "GS2.1.s1778223108$o1$g1$t1778223231$j60$l0$h0", - "domain": ".gchq.github.io", - "path": "/", - "expires": 1812783231.783304, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "csrf_cookie", - "value": "7e371dc5b055a1a3d0ead5a8db65840c", - "domain": "hashes.com", - "path": "/", - "expires": 1779432834.956839, - "size": 43, - "httpOnly": true, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "user", - "value": "211891889d219f7fd582e0201f19a7b45b13ad35a700b4d307a8554076bccc08ba42bc959394b0c79706be71f526aeb197211011a87993f71dd3dc39fd6419a27aIhHFrR67nZo2plIiKEy2fqX1R2QcUwuoBDmZMECcEdsn7AHwx1DNdvwbrJZiIEPhvfEmut4w8lJmAwI24Qjg", - "domain": "hashes.com", - "path": "/", - "expires": 1812783234.956899, - "size": 218, - "httpOnly": true, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "OH.FLID", - "value": "3e70114e-6c5f-4fd4-99ee-3276828f5b96", - "domain": "www.office.com", - "path": "/", - "expires": 1809809832.967512, - "size": 43, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "brcap", - "value": "0", - "domain": ".login.microsoftonline.com", - "path": "/", - "expires": 1811969833, - "size": 6, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "exp_bucket", - "value": "v8-14", - "domain": ".fandom.com", - "path": "/", - "expires": 1812865613.206007, - "size": 15, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "exp_bucket_2", - "value": "v5-16", - "domain": ".fandom.com", - "path": "/", - "expires": 1812865613.206048, - "size": 17, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "usprivacy", - "value": "1YNN", - "domain": ".fandom.com", - "path": "/", - "expires": 1809976538, - "size": 13, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "eb", - "value": "90", - "domain": ".fandom.com", - "path": "/", - "expires": 1793857626, - "size": 4, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "wikia_beacon_id", - "value": "CfoUjHpKA4", - "domain": ".fandom.com", - "path": "/", - "expires": 1793992538, - "size": 25, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_b2", - "value": "LjGuNc11AT.1778305612741", - "domain": ".fandom.com", - "path": "/", - "expires": 1813000538.140733, - "size": 27, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "wikia_session_id", - "value": "lsOSeqpqV_", - "domain": ".fandom.com", - "path": "/", - "expires": 1793992538, - "size": 26, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "fan_visited_wikis", - "value": "3393144", - "domain": ".fandom.com", - "path": "/", - "expires": 1809976538.169746, - "size": 24, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_lc2_fpi", - "value": "17cd767946ca--01kr5mcw7ethhtd06gt5p0axbg", - "domain": ".fandom.com", - "path": "/", - "expires": 1812865626.351006, - "size": 48, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_lc2_fpi_meta", - "value": "%7B%22w%22%3A1778305626350%7D", - "domain": ".fandom.com", - "path": "/", - "expires": 1812865626.351372, - "size": 42, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_pubcid", - "value": "2114e3bf-dbcb-422b-9e41-80fcefb1f0e2", - "domain": ".fandom.com", - "path": "/", - "expires": 1809841626, - "size": 43, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_pubcid_cst", - "value": "zix7LPQsHA%3D%3D", - "domain": ".fandom.com", - "path": "/", - "expires": 1809841626, - "size": 27, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "fandom_global_id", - "value": "cde29a45-df31-4dfe-bb92-597beb1a8203", - "domain": ".fandom.com", - "path": "/", - "expires": 1812867116.074001, - "size": 52, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Strict", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_scor_uid", - "value": "5755f7eb8ee54183986280520488e9a6", - "domain": ".fandom.com", - "path": "/", - "expires": 1812136540, - "size": 41, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "XID", - "value": "16Adc5d91c4a9fbdcf2df0d1778021341", - "domain": ".scorecardresearch.com", - "path": "/", - "expires": 1812136543.80771, - "size": 36, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://fandom.com", - "hasCrossSiteAncestor": true - } - }, - { - "name": "cf_clearance", - "value": "ox5aHxj1iTmr36bupanRP2RBVVC5p693K5pU1ZVhJNw-1778307119-1.2.1.1-F8.Gwa6Nc6P2pFZn4QfxsRaSbvTo4lqNQRHJQUgtVrHbtcKw2gLUMmD6MRx7dAyum6dtFLW3ZI.IvhTJu8vEMmWyp7WVSMm6MBy1x_jIK3j3.eQ0oQTJEHv3iOTpOB0FpUf.K3Ml.wqPTNH3dgKvecfvaF6S0499JMWqMKkKtY1VPKi16mMM5n_AhFjr7CZK3sLgD3wsuON9TJ7p25o_ESBk.5NVuksZkfveZlLdE6WKR0JeB5zmaafHYdYl026lLaq7_gFVFWbQjj3.8lW15hhUWCXaBjaNhHBoJkis1h7QSBCnpYVZHPAEC7G9vDKmb6F_H9tEBzxC7_ZY7r.Zwg", - "domain": ".www.fandom.com", - "path": "/", - "expires": 1809843119.934339, - "size": 417, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://fandom.com", - "hasCrossSiteAncestor": false - } - }, - { - "name": "OptanonConsent", - "value": "isGpcEnabled=0&datestamp=Sat+May+09+2026+04%3A11%3A12+GMT-0400+(Eastern+Daylight+Time)&version=202601.1.0&browserGpcFlag=0&isIABGlobal=false&hosts=&landingPath=https%3A%2F%2Fwww.dailywire.com%2F&GPPCookiesCount=1&gppSid=7&groups=C0001%3A1%2CSPD_BG%3A1%2CC0002%3A1%2CC0004%3A1", - "domain": ".dailywire.com", - "path": "/", - "expires": 1809850272, - "size": 289, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "csrftoken", - "value": "PsdDkMXkoyVR7DQ5nfO-Nk", - "domain": ".instagram.com", - "path": "/", - "expires": 1812874276.564116, - "size": 31, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "mid", - "value": "af7sJAALAAEMcWUaRX6MMc_Q0hVu", - "domain": ".instagram.com", - "path": "/", - "expires": 1812874276.564205, - "size": 31, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_CZKR9ZYKJP", - "value": "GS2.1.s1778314275$o2$g1$t1778314282$j53$l0$h0", - "domain": ".dailywire.com", - "path": "/", - "expires": 1812874282.285645, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cf_clearance", - "value": "W9jcmU0ul3wVR4uFYZRzO7XpxhBg2cKNFNjZTLZSSXo-1778314934-1.2.1.1-7tkajpIi7.YfgRY6OVOm3QXCjgXe0yytv5YtCLSH9HXZ0ZYhi16GZzRbUAtLo7s4zGPrTSBWYuH2AanHWGtoEiTvFvHU22Om1u5TnYyXI5gnprzaES7ZoGG9VZvvEjMy_GvmoQa5DukPagk77Ol8SOtWOXKYVauQd4_dhCtBlOuPTJBb6DrZAQewwmemmGXY.7gBRCfoDa3klszi.LvNGWEt0SCDVcjizvyuC9Awty6JlJATpTb.NRRZESFes42tKoy6X8K.n5wDoWP1cjs1K7vnAuWn.QE4CndlLNvNh8vDBcNXw2wAtK5jOBW8GTO2.givhTixKQ2DoHj2x7BezQ", - "domain": ".kali.org", - "path": "/", - "expires": 1809850934.659402, - "size": 417, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://kali.org", - "hasCrossSiteAncestor": false - } - }, - { - "name": "cf_clearance", - "value": "KHT3PNpJAi40lgVCO_0lN3JpInsM3QFsB4mwabDx9LA-1778439910-1.2.1.1-tU8iXjmm.u.I9Hmd44es.R_dT7Qlo4ZSW0wnXVc5kc4mctzVwlWTzxrToFv8dKOzaLgPZQkOXBrXGRcwxpCCjY.a6R9tJ3xCJXaa1i5TwEZgOAiBpWtzBMQGM4ViPH43pPrP4ZIOxP5g0YB8vyqtIsubPGVBbcGLJ.njt_G3KNMowMkf6KZOOjobXFG_dO3_nkVur22dPfo61JnXH0Sh1RrzSGQM5NXxLQ5Njhqr7oygOKYOE4opM3qrndkEXse0aHMnDO_Lr6kAaKvlSOoMQ0f3.9ABEELcMND1aw2DIyurBlYAE0.yhVSidgxQfE40mSpyEq8YopSPC6_W969lUg", - "domain": ".fandom.com", - "path": "/", - "expires": 1809975910.352463, - "size": 417, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "https://fandom.com", - "hasCrossSiteAncestor": false - } - }, - { - "name": "OptanonConsent", - "value": "isGpcEnabled=0&datestamp=Sun+May+10+2026+15%3A15%3A40+GMT-0400+(Eastern+Daylight+Time)&version=202510.1.0&browserGpcFlag=0&isIABGlobal=false&hosts=&consentId=97fa4d7b-0382-4e2f-8dec-244055a673eb&interactionCount=1&isAnonUser=1&landingPath=NotLandingPage&groups=C0001%3A1%2CC0003%3A1%2CC0005%3A1%2CC0004%3A1%2CC0002%3A1&AwaitingReconsent=false", - "domain": ".fandom.com", - "path": "/", - "expires": 1809976540, - "size": 356, - "httpOnly": false, - "secure": false, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "__Host-GAPS", - "value": "1:PgTDL4x1S6aKA-D8Bp1NadDPIFigPQ:uZIqYxc-CgLwiCZ9", - "domain": "accounts.google.com", - "path": "/", - "expires": 1813005528.632546, - "size": 60, - "httpOnly": true, - "secure": true, - "session": false, - "priority": "High", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gcl_au", - "value": "1.1.1187955568.1778445529", - "domain": ".workspace.google.com", - "path": "/", - "expires": 1786221529, - "size": 32, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_FWCBRW1RY8", - "value": "GS2.1.s1778445529$o1$g1$t1778445539$j50$l0$h0", - "domain": ".workspace.google.com", - "path": "/", - "expires": 1813005539.703787, - "size": 59, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "__Secure-YNID", - "value": "18.YT=18FHG-r4Ia6LS10F28CefV1nBlmRTMgIc9jrCLNXyvCCeZNbSQiSjhqLrOAL2WEFUPmc8kUlpCUjcKCWyYjEygAmPzozBXlwxFwngbei87bkUEy_lq7BaovLqiSMmd1WpV2pMBnykiENFO010r4H-UMCqqld3crZe5PUUH4iLO5Orq7Z6DeV8soPLzgUxUtexBsPLlLoUIWHe7v3gf4RRGFUszOY4BH4RsGsq6cQ3DFIG-OcH2_X-QJ1fCP20L5cBA3z84ZWXNm-RWJF3u1IgvYxPMa5IwWDaOg00yyQysPAmK7Z7fonn01BTPEN76nRXCBp4lssrxGmo_F2zg026w", - "domain": ".youtube.com", - "path": "/", - "expires": 1794157317.058321, - "size": 361, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "chrome://whats-new", - "hasCrossSiteAncestor": true - } - }, - { - "name": "__Secure-ROLLOUT_TOKEN", - "value": "CLmpl_WA-5mQuQEQ-OL3kJ20lAMY-OL3kJ20lAM%3D", - "domain": ".youtube.com", - "path": "/", - "expires": 1794157317.058434, - "size": 64, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "chrome://whats-new", - "hasCrossSiteAncestor": true - } - }, - { - "name": "VISITOR_INFO1_LIVE", - "value": "ZmgwlxRa_yg", - "domain": ".youtube.com", - "path": "/", - "expires": 1794157317.058487, - "size": 29, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "chrome://whats-new", - "hasCrossSiteAncestor": true - } - }, - { - "name": "VISITOR_PRIVACY_METADATA", - "value": "CgJVUxIEGgAgWQ%3D%3D", - "domain": ".youtube.com", - "path": "/", - "expires": 1794157317.058519, - "size": 44, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443, - "partitionKey": { - "topLevelSite": "chrome://whats-new", - "hasCrossSiteAncestor": true - } - }, - { - "name": "color_mode", - "value": "%7B%22color_mode%22%3A%22auto%22%2C%22light_theme%22%3A%7B%22name%22%3A%22light%22%2C%22color_mode%22%3A%22light%22%7D%2C%22dark_theme%22%3A%7B%22name%22%3A%22dark%22%2C%22color_mode%22%3A%22dark%22%7D%7D", - "domain": ".github.com", - "path": "/", - "expires": -1, - "size": 214, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "cpu_bucket", - "value": "lg", - "domain": ".github.com", - "path": "/", - "expires": -1, - "size": 12, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "preferred_color_mode", - "value": "light", - "domain": ".github.com", - "path": "/", - "expires": -1, - "size": 25, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "tz", - "value": "America%2FNew_York", - "domain": ".github.com", - "path": "/", - "expires": -1, - "size": 20, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_BFR4KR7D60", - "value": "GS2.1.s1778647445$o18$g0$t1778647445$j60$l0$h0", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1813207445.595735, - "size": 60, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "NID", - "value": "531=euAF3tHLQNCM-jcJAJfMW5g5Qn2-rdHeQ9p93FWRn1FjXgeUto5tvHzyqAhQu6-2J7PFcl2OploTOKrwpiHBHvj7a_abnTtBtTXuLQJmzWT4fWtb33O6Po2sEJK8Paj1WdodyctkxRoG2oKl8-jrAZhD0EnboYXjkUtnv0pd4TrNbOsldLWAAKfedGOx", - "domain": ".lensfrontend-pa.googleapis.com", - "path": "/", - "expires": 1794557474.050503, - "size": 195, - "httpOnly": true, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "AEC", - "value": "AaJma5s1Wx-cLwob7o1nQhAKUIFlrq6DVakO-tQyqZfrpEDPIUTI-dyvQQ", - "domain": ".google.com", - "path": "/", - "expires": 1793486688.280758, - "size": 61, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_C_Auth", - "value": "", - "domain": "www.msn.com", - "path": "/", - "expires": -1, - "size": 7, - "httpOnly": false, - "secure": false, - "session": true, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "Web-User", - "value": "%7B%22userId%22%3A%22m-1B5D4D331D6064723A295A631C1965B0%22%2C%22cohorts%22%3A%5B%7B%22name%22%3A%22SuperCold%22%2C%22everSelected%22%3Afalse%2C%22reason%22%3A%22MatchedBySignal%22%7D%5D%2C%22accountType%22%3A%22NA%22%2C%22identityType%22%3A%22Web%22%2C%22settings%22%3Anull%2C%22responseCreationDateTime%22%3A%222026-05-14T16%3A15%3A13.2657203Z%22%2C%22debugId%22%3A%22351c2114-7d2a-4d1d-97df-d6c7043cd095%7C2026-05-14T16%3A15%3A13.2657229Z%7CAuth%7CEUS2-CF%7Caksgen11000002%22%7D", - "domain": ".msn.com", - "path": "/", - "expires": 1779380113.327062, - "size": 488, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_EDGE_S", - "value": "SID=332FC5051FCA62C52C45D25C1EDE638E", - "domain": ".msn.com", - "path": "/", - "expires": -1, - "size": 43, - "httpOnly": true, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "msal.cache.encryption", - "value": "%7B%22id%22%3A%22019e2745-5159-7e24-b5f9-b13161d0ad37%22%2C%22key%22%3A%22w667vccKvcw3pHndhGxvPvMtPz9lHgxiZJHMSUjCDVM%22%7D", - "domain": "www.msn.com", - "path": "/", - "expires": -1, - "size": 144, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "adslrid", - "value": "_", - "domain": ".msn.com", - "path": "/", - "expires": 1778861718, - "size": 8, - "httpOnly": false, - "secure": true, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "esctx-SOjAs8GVCeI", - "value": "AQABCQEAAAAdDD7nC9b5Q7JPd_okEQRFRXZvU3RzQXJ0aWZhY3RzDQAAAAAAkWY118Cf1rCEDuufsPPRfJ4M2jsECgVrWKB6bDFkKexd-F4BpBL5ySjH-uhMRWprST_aTfJWq7dtCiOXsma9w0EcdOTsvZnA_SmmTmSABCHX9ESleTIEc3uZr5Iecck6UwmxoQ-87srQ3DXmlnoHeCAA", - "domain": ".login.microsoftonline.com", - "path": "/", - "expires": -1, - "size": 229, - "httpOnly": true, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "x-ms-gateway-slice", - "value": "estsfd", - "domain": "login.microsoftonline.com", - "path": "/", - "expires": -1, - "size": 24, - "httpOnly": true, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "stsservicecookie", - "value": "estsfd", - "domain": "login.microsoftonline.com", - "path": "/", - "expires": -1, - "size": 22, - "httpOnly": true, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "AADSSO", - "value": "NA|NoExtension", - "domain": ".login.microsoftonline.com", - "path": "/", - "expires": -1, - "size": 20, - "httpOnly": false, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "buid", - "value": "1.AQcAMe_N-B6jSkuT5F9XHpElWqQwtdeAdiNMqL_FLBIdLocAAAAHAA.AQABGgEAAAAdDD7nC9b5Q7JPd_okEQRFRXZvU3RzQXJ0aWZhY3RzAwAAAAAAn8zc5bID_vpMJlE9GawNIsTM_uuTrmYsdYt4QB8uhHVCrBa175g0bRFYiGNxhA1KohpO4a_43d-ABJXGECFxnTQqcatHFNz-kfl_luyioSAgAA", - "domain": "login.microsoftonline.com", - "path": "/", - "expires": 1781367316.230249, - "size": 231, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "esctx", - "value": "PAQABBwEAAAAdDD7nC9b5Q7JPd_okEQRFRXZvU3RzQXJ0aWZhY3RzDQAAAAAAgdDjabOve8ektVtaWEJFmp8l3LtkUXb2Vh9pm5pcw-hPKoQfouSg-tocLXMoL8jK3thXHqy0IoGBAS2nVk2Nt6FzYLdJ5jVfY_UrE4Mo3wOMo5qkeaM3gDaZGsGwQcnpSAt3EABiENLJPZKK--1wmiB6-HJqQ4YkzKyjqJrzCyUgAA", - "domain": ".login.microsoftonline.com", - "path": "/", - "expires": -1, - "size": 240, - "httpOnly": true, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "esctx-U941UnLnKxo", - "value": "AQABCQEAAAAdDD7nC9b5Q7JPd_okEQRFRXZvU3RzQXJ0aWZhY3RzDQAAAAAA2YRhysuZD8piCwncxV5CNdtOOzQ_8gmZpCVbXhXLMrAYmZHx1EQmMU4en0hjnlM5MquO1L4eIW_V6c-J8XDXRJ9vDcnQ3_b3lEGEAVYRsQ2JGF2aloTlREa6yjVKIsgVvQF2-2VylTcabTKgjFzHgSAA", - "domain": ".login.microsoftonline.com", - "path": "/", - "expires": -1, - "size": 229, - "httpOnly": true, - "secure": true, - "session": true, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "fpc", - "value": "AlwP9jf2LPZNiP-tJi_GqQKSbVEHAQAAABPsl-EOAAAA", - "domain": "login.microsoftonline.com", - "path": "/", - "expires": 1781367316.230512, - "size": 47, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "MS0", - "value": "76e9029fbbaf4431b99eac2243962f6f", - "domain": ".microsoft.com", - "path": "/", - "expires": 1778777117.711358, - "size": 35, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "ai_session", - "value": "mrCYWEnltxOCoIeQS8l/Mo|1778775313993|1778775374122", - "domain": "www.msn.com", - "path": "/", - "expires": 1778777174, - "size": 60, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "last_write_ms", - "value": "1778775448278", - "domain": "github.com", - "path": "/", - "expires": -1, - "size": 26, - "httpOnly": true, - "secure": true, - "session": true, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_gh_sess", - "value": "7UUJtl2b%2BlyDUatS0dOUrTJnjWjJOQvV1V7OG4xVJKzZQ2QsKoAX37D8SRHxHBh%2FS7dPM8O%2F8VV8%2F9nEESfdHWkTDlp14HoREAUOBMdb2%2FpoOgukkBO6%2FknOvJxGs0xHB5nPHM2aqlc6LQwKCYSweGuopnSy9OCFFIFdl8poz1b8IuaZQEeIDwdFVCs6RsKqJ723E5okmkzf9XsDYIpVfMiw3%2BHKOUXmoYlxJygaNwPHPFs9BeycisZIh%2BYGP8z3rpMQEfWp4ZXzEZnlLMQ14CGD8KVWbTK%2FEB%2B94f5GNli4I4wJR9LMNjhzem3QJubrda4kJ9kETUJ61OCgFneGoR4eR0cOJKWGXveAObPcscFd0vBwecNeJqXD8E4R2Vzyj4u%2FofZy4M20h%2FuIDLK0Au7PhiV5MLljEQB9ezTIM6DR3tXakK2yBeiOyS0FxS8WlWscQw9m9jayrIEaD7nSecor48AYpOPEYm3ibxoNWIB0IQmrwvJCphcIK3qParPQFQWNqhrJrZ6I25wH9h1Sopf%2BokNahp0NTFjjajUK78K4CQm0kSU5olOdKb7cIi2dA0bc9q04RlYn%2FahPF6CImYzBp7sdr0bwmtiz%2FFawByMhBG2eH8IWrD8XsfFAze0JF9J%2FMQjI1kxdAle53r4DNO8vzTMIh1PLyZqdvX1UKCRIjk%2FnrD1S5ouDK5griVtfNII5h%2FDEvIlFuDOc2cAJvWF7djKQdMCK4c0AKXoIz15r2I%2FSRe0Gs9dq2S69XNu%2Fyn9KGwTZRXCXK3yC2q5tBg%3D%3D--j%2Fj4333F27Lq9OUR--HbZO0UqhuflUPgjEqu%2BDSw%3D%3D", - "domain": "github.com", - "path": "/", - "expires": -1, - "size": 896, - "httpOnly": true, - "secure": true, - "session": true, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "__cf_bm", - "value": "B9Q1WUxF8B.o1ksAWU34_oR4QQ3cAnnDlXItjdZ7Fl4-1778775538.9682965-1.0.1.1-A3b1oU_aFci2C5JNwHBcB1n3oawcMfEFq6Jn2NDA7bgsa38ZYweCEBtUgrOp4rTdaS_flIHktW7.E6iDrULN3xWCmysa3AZo_xFvvGfuNA85Ts4r.dEI4HKEewQL2WuH", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1778777339.158055, - "size": 206, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "XSRF-TOKEN", - "value": "eyJpdiI6IlJLUmVvTkhoenArZ0o0ckh4RTBCY3c9PSIsInZhbHVlIjoiSHhLWkI4Y3MySHhyaFZXdW1pejJuYmxETHJtNjVaVzFhUlQ3WWp3dnhhOEhEZ3QybGVJcWtZa0o4NUlSdDRiQkVRazNoMVphYk55dk4vRFpVR1NvMmFqQThJTnQwVkpOTnNZcDcyS1I5MnY2TSsyZlhaY3AzYzZOcjgzMTlqOUsiLCJtYWMiOiI3ODM0Nzk2OGM3ZGRlMTEzYWM4NGM2NjMyMWZmYTIxNGQyMzk1MDZhNzgzZTFmMTQwODEzZDljYzBkNzA2YWYzIiwidGFnIjoiIn0%3D", - "domain": "academy.hackthebox.com", - "path": "/", - "expires": 1779034744.03494, - "size": 352, - "httpOnly": false, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "htb_academy_session", - "value": "eyJpdiI6IjhBbTZsVU0rV1Y2K01iU05pOFVnalE9PSIsInZhbHVlIjoiOW03R2lhcjVOa3lWdmxIcjJ0LzRWbjdoZy9udnJTeEkrcEtTZFZZNWRPTVV6RFc2d0U3WHNqZDFEZlJiMjdJQ2ljWHVWa0Y5dUhnSVVBZ2JxNGZDdFJoejVkVVVyNEhiSWM5VDBTak4vUnJZMVNXbS9YR3h2cUFzeDJHOGNzMXciLCJtYWMiOiI4Y2RjYzNhNDgyOGNjZTZiNzFiYWE0YWFlZjgxYjI0ODFhMjEyY2JjMWNjZmU2ZmZiZDQyMzJmNTI5NTdkY2Q2IiwidGFnIjoiIn0%3D", - "domain": "academy.hackthebox.com", - "path": "/", - "expires": 1779034744.035079, - "size": 361, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "Lax", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "_ga_TKKV7WGJ6V", - "value": "GS2.1.s1778775541$o11$g1$t1778775544$j57$l0$h0", - "domain": ".hackthebox.com", - "path": "/", - "expires": 1813335544.531966, - "size": 60, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "NID", - "value": "531=JnwB96BXnlO8u4TOd6OwrKBXXGTR796hL7Za7D2e6X6lZOJuiKxNkaVRj2CjCaDfsUzK0BNwqzlkCioexkkoyZLdvjrkTS7JWdSZGCAGQv6diRmRhiK456HyqmkdwaC55NC9M1FPD_G9F6hJFFg4hzCLr-Z84iO2XwbFMxXcGoctkgMiZYy6JpSb2NJTsjABA2hM_8uZ312L1xECu82lVONwOM6izCl0MPb3hdMU03p-7kWTDl9Mo5i2uAYmFiwylL2O28pdDN1A_mc", - "domain": ".google.com", - "path": "/", - "expires": 1794550286.171839, - "size": 278, - "httpOnly": true, - "secure": true, - "session": false, - "sameSite": "None", - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - }, - { - "name": "DV", - "value": "ox0hYNblGsM1sHQ0yOb_f23ZRgx14pmvh8cTyUhSbwEAAECpjF2U5oCrpQEAAAA", - "domain": "www.google.com", - "path": "/", - "expires": 1778776665, - "size": 65, - "httpOnly": false, - "secure": false, - "session": false, - "priority": "Medium", - "sourceScheme": "Secure", - "sourcePort": 443 - } -]