https://github.com/thebeanogamer/hstsparser
A tool to parse Firefox and Chrome HSTS databases into forensic artifacts!
https://github.com/thebeanogamer/hstsparser
chrome dfir firefox forensics hsts
Last synced: 11 months ago
JSON representation
A tool to parse Firefox and Chrome HSTS databases into forensic artifacts!
- Host: GitHub
- URL: https://github.com/thebeanogamer/hstsparser
- Owner: thebeanogamer
- License: mit
- Created: 2019-11-05T15:16:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-06T00:33:02.000Z (almost 2 years ago)
- Last Synced: 2025-07-11T07:25:48.256Z (12 months ago)
- Topics: chrome, dfir, firefox, forensics, hsts
- Language: Python
- Homepage: https://blog.daniel-milnes.uk/hsts-for-forensics-you-can-run-but-you-cant
- Size: 363 KB
- Stars: 26
- Watchers: 3
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-forensics - **2**星
README
# HSTS Parser
[](https://github.com/thebeanogamer/hstsparser/actions/workflows/lint.yaml) [](https://github.com/thebeanogamer/hstsparser/actions/workflows/build.yaml) [](./LICENSE)  [](https://pypi.org/project/hstsparser) [](https://pepy.tech/project/hstsparser) [](https://copr.fedorainfracloud.org/coprs/thebeanogamer/hstsparser/package/hstsparser/)
HSTS Parser is a simple tool to parse Firefox and Chrome's HSTS databases into actually helpful forensic artifacts! You can read more about the research behind this tool and potential uses for it over on [my blog](https://blog.daniel-milnes.uk/hsts-for-forensics-you-can-run-but-you-cant)!
## Installation
HSTS Parser can be installed via pip, or as a native executable.
### From PyPi
If you already have Python installed, you can install HSTS Parser using pip.
```bash
pip install hstsparser
```
### On Fedora
[](https://packages.fedoraproject.org/pkgs/hstsparser/hstsparser/) []()
HSTS Parser is available for Fedora 38+.
```bash
dnf install hstsparser
```
### On Windows
Windows binaries are published by GitHub Actions CI for each release of HSTS Parser. You can download these on the [releases page](https://github.com/thebeanogamer/hstsparser/releases/latest).
## Usage
All of the below documentation is written for the Python version rather than the standalone executable, but the commands will be the same.
```shell
$ hstsparser -h
usage: hstsparser [-h] [-w WORDLIST] [--csv CSV] (--firefox | --chrome) FILE
Process HSTS databases
positional arguments:
FILE The path to the database to be processed
optional arguments:
-h, --help show this help message and exit
-w WORDLIST The path to a file containing a wordlist for bruteforcing hashes
--csv CSV Output to a CSV file
--firefox Process a Firefox database
--chrome Process a Chrome database
```
### Examples
#### Firefox
```shell
hstsparser --firefox SiteSecurityServiceState.txt
```
#### Chrome
```shell
hstsparser --chrome TransportSecurity
```
#### Chrome with Wordlist
```shell
hstsparser -w wordlist.txt --chrome TransportSecurity
```
## Screenshots
### Firefox

### Chrome with Wordlist

## Links
- [My Blog Post](https://blog.daniel-milnes.uk/hsts-for-forensics-you-can-run-but-you-cant)
- [MDN - HSTS](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security)
- [Chromium - HSTS](https://www.chromium.org/hsts)