███████╗ ██████╗ ██████╗ ███████╗███╗ ██╗███████╗██╗██╗ ██╗
██╔════╝██╔═══██╗██╔══██╗██╔════╝████╗ ██║██╔════╝██║╚██╗██╔╝
█████╗ ██║ ██║██████╔╝█████╗ ██╔██╗ ██║███████╗██║ ╚███╔╝
██╔══╝ ██║ ██║██╔══██╗██╔══╝ ██║╚██╗██║╚════██║██║ ██╔██╗
██║ ╚██████╔╝██║ ██║███████╗██║ ╚████║███████║██║██╔╝ ██╗
╚═╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝╚══════╝╚═╝╚═╝ ╚═╝
Forensix is a DFIR-focused browser forensic toolkit built with Python.
The framework is designed to parse browser artifacts such as:
- Chrome History
- Downloads
- Login Data
- Browser Activity Timeline
Forensix provides clean terminal output and HTML forensic reports for investigation workflows.
- Chrome History Parser
- Downloads Artifact Parser
- Login Data Parser
- Browser Activity Timeline
- HTML Timeline Report
- Rich Terminal UI
- SQLite Artifact Parsing
- Modular DFIR Structure
forensix/
│
├── cli.py
├── setup.py
├── requirements.txt
│
├── forensix/
│ ├── core/
│ └── parsers/
│
└── reports/git clone https://github.com/RenggaSenpaii/forensix.gitcd forensixpython3 -m venv venvsource venv/bin/activatepip install -r requirements.txtcp ~/.config/chromium/Default/History .cp ~/.config/chromium/Default/"Login Data" .PYTHONPATH=. python cli.py chrome HistoryPYTHONPATH=. python cli.py downloads HistoryPYTHONPATH=. python cli.py logins "Login Data"PYTHONPATH=. python cli.py timeline History "Login Data"PYTHONPATH=. python cli.py timeline History "Login Data" -o timeline.html[HISTORY] https://github.com
[DOWNLOAD] payload.zip
[LOGIN] https://github.com -> admin@gmail.com
Generate forensic investigation reports in HTML format.
firefox timeline.html- Python 3
- Rich
- Typer
- SQLite3
This tool is intended for:
- Digital Forensics
- DFIR Learning
- Security Research
- Authorized Investigations
The author is not responsible for misuse.
Built for DFIR & Security Research.