CLI tool and Python library for reading and writing Binary Cookies.
For detailed documentation, please visit the Binary Cookies Documentation
- Python >= 3.9
pip install binarycookiesbcparser path/to/cookies.binarycookiesOutput:
[
{
"name": "session_id",
"value": "abc123",
"url": "https://example.com",
"path": "/",
"create_datetime": "2023-10-01T12:34:56+00:00",
"expiry_datetime": "2023-12-31T23:59:59+00:00",
"flag": "Secure",
"raw_flags": 1,
"comment": null
},
{
"name": "user_token",
"value": "xyz789",
"url": "https://example.com",
"path": "/account",
"create_datetime": "2023-10-01T12:34:56+00:00",
"expiry_datetime": "2023-12-31T23:59:59+00:00",
"flag": "HttpOnly",
"raw_flags": 4,
"comment": null
}
]The CLI supports multiple output formats using the --output flag.
json(default): Outputs cookies in JSON format.ascii: Outputs cookies in a human-readable ASCII format with each cookie property on a separate line.netscape: Outputs cookies in the Netscape cookie file format.
import binarycookies
with open("path/to/cookies.binarycookies", "rb") as f:
cookies = binarycookies.load(f)import binarycookies
cookie = {
"name": "session_id",
"value": "abc123",
"url": "https://example.com", # "domain" is accepted as an alias for "url"
"path": "/",
"create_datetime": "2023-10-01T12:34:56+00:00",
"expiry_datetime": "2023-12-31T23:59:59+00:00",
"flag": "Secure"
}
with open("path/to/cookies.binarycookies", "wb") as f:
binarycookies.dump(cookie, f)Optional fields:
comment: cookie comment string stored in the file (default: no comment)raw_flags: the raw flags bitfield written to disk. When omitted, it is derived fromflag(Secure= 1,HttpOnly= 4,Secure; HttpOnly= 5). Cookies read withload/loadsalways carryraw_flags, so unknown flag bits survive a read-modify-write round trip.
This project is intended for lawful, ethical use only. Typical, appropriate uses include:
- Inspecting Binary Cookies from your own devices or data you are authorized to access
- DFIR, QA, and security testing performed with explicit, written permission
- Educational/research work on datasets that are owned by you, anonymized, or publicly released for that purpose
You must not use this tool to:
- Access, extract, modify, or distribute cookies from systems or accounts you do not own or have permission to analyze
- Bypass authentication, session management, DRM, or other technical controls
- Enable tracking, stalking, doxxing, fraud, or other privacy-invasive or harmful activities
This project is licensed under the MIT License. See the LICENSE file for details.
Contributions are welcome! If you find a bug or have a feature request, please open an issue on GitHub. Pull requests are also welcome.