2020-06-19 12:43:31 +00:00
# HackBrowserData
2020-07-23 06:45:25 +00:00
[中文文档 ](https://github.com/moonD4rk/HackBrowserData/blob/master/README_ZH.md )
2020-07-25 14:17:50 +00:00
hack-browser-data is an open-source tool that could help you decrypt data[passwords|bookmarks|cookies|history] from the browser. It supports the most popular browsers on the market and runs on Windows, macOS and Linux.
2020-06-19 12:43:31 +00:00
2020-07-23 06:42:32 +00:00
### Supported Browser
2020-06-25 06:36:59 +00:00
2020-07-09 08:49:35 +00:00
#### Windows
2020-07-23 06:42:32 +00:00
| Browser | Password | Cookie | Bookmark | History |
| :---------------------------------- | :------: | :----: | :------: | :-----: |
| Google Chrome (Full Version) | ✅ | ✅ | ✅ | ✅ |
| Firefox | ✅ | ✅ | ✅ | ✅ |
| Microsoft Edge | ✅ | ✅ | ✅ | ✅ |
| 360 Speed Browser | ✅ | ✅ | ✅ | ✅ |
| QQ Browser | ✅ | ✅ | ✅ | ✅ |
| Internet Explorer | ❌ | ❌ | ❌ | ❌ |
2020-07-09 08:49:35 +00:00
#### MacOS
2020-07-23 06:42:32 +00:00
Because of the security policies, some of the browsers require a password.
2020-07-09 08:49:35 +00:00
2020-07-23 06:42:32 +00:00
| Browser | Password | Cookie | Bookmark | History |
| :---------------------------------- | :------: | :----: | :------: | :-----: |
| Google Chrome< br / > Require Password | ✅ | ✅ | ✅ | ✅ |
| Firefox | ✅ | ✅ | ✅ | ✅ |
| Microsoft Edge< br / > Require Password | ✅ | ✅ | ✅ | ✅ |
| Safari | ❌ | ❌ | ❌ | ❌ |
2020-07-09 08:49:35 +00:00
#### Linux
2020-07-23 06:42:32 +00:00
| Browser | Password | Cookie | Bookmark | History |
| :---------------------------------- | :------: | :----: | :------: | :-----: |
| Firefox | ✅ | ✅ | ✅ | ✅ |
2020-07-25 14:20:45 +00:00
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
2020-07-09 08:49:35 +00:00
2020-06-30 04:01:00 +00:00
2020-07-23 06:42:32 +00:00
### Install
2020-06-30 04:01:00 +00:00
2020-07-23 06:42:32 +00:00
Installation of hack-browser-data is dead-simple, just download [the release for your system ](https://github.com/moonD4rk/HackBrowserData/releases ) and run the binary.
2020-06-30 04:01:00 +00:00
2020-07-23 06:42:32 +00:00
#### Building from source
2020-06-25 06:36:59 +00:00
2020-07-23 06:42:32 +00:00
support `go 1.11+`
2020-07-10 03:29:03 +00:00
2020-06-25 06:47:46 +00:00
```bash
git clone https://github.com/moonD4rk/HackBrowserData
2020-07-10 03:29:03 +00:00
cd HackBrowserData
go get -v -t -d ./...
2020-06-28 09:30:02 +00:00
go build
2020-06-25 06:47:46 +00:00
```
2020-06-25 06:36:59 +00:00
2020-07-23 06:42:32 +00:00
#### Run
2020-06-25 06:36:59 +00:00
2020-06-28 13:17:28 +00:00
```shell
2020-07-31 18:37:54 +00:00
PS C:\test> .\hack-browser-data.exe -h
2020-07-23 06:20:06 +00:00
NAME:
2020-07-31 18:37:54 +00:00
hack-browser-data - Export passwords/cookies/history/bookmarks from browser
2020-06-25 06:36:59 +00:00
2020-06-28 09:30:02 +00:00
USAGE:
[hack-browser-data -b chrome -f json -dir results -e all]
Get all data(password/cookie/history/bookmark) from chrome
2020-06-25 06:36:59 +00:00
GLOBAL OPTIONS:
2020-07-10 08:27:35 +00:00
--verbose, --vv Verbose (default: false)
2020-08-01 11:34:50 +00:00
--browser value, -b value Available browsers: all|chrome|edge|firefox (default: "all")
2020-07-10 08:27:35 +00:00
--results-dir value, --dir value Export dir (default: "results")
2020-08-01 11:34:50 +00:00
--format value, -f value Format, csv|json|console (default: "json")
--export-data value, -e value all|cookie|history|password|bookmark (default: "all")
2020-06-25 06:36:59 +00:00
2020-07-31 18:37:54 +00:00
PS C:\test> .\hack-browser-data.exe -b all -f json -e all --dir results
[x]: Get 44 cookies, filename is results/microsoft_edge_cookie.json
[x]: Get 54 history, filename is results/microsoft_edge_history.json
[x]: Get 1 passwords, filename is results/microsoft_edge_password.json
[x]: Get 4 bookmarks, filename is results/microsoft_edge_bookmark.json
[x]: Get 6 bookmarks, filename is results/360speed_bookmark.json
[x]: Get 19 cookies, filename is results/360speed_cookie.json
[x]: Get 18 history, filename is results/360speed_history.json
[x]: Get 1 passwords, filename is results/360speed_password.json
[x]: Get 12 history, filename is results/qq_history.json
[x]: Get 1 passwords, filename is results/qq_password.json
[x]: Get 12 bookmarks, filename is results/qq_bookmark.json
[x]: Get 14 cookies, filename is results/qq_cookie.json
[x]: Get 28 bookmarks, filename is results/firefox_bookmark.json
[x]: Get 10 cookies, filename is results/firefox_cookie.json
[x]: Get 33 history, filename is results/firefox_history.json
[x]: Get 1 passwords, filename is results/firefox_password.json
[x]: Get 1 passwords, filename is results/chrome_password.json
[x]: Get 4 bookmarks, filename is results/chrome_bookmark.json
[x]: Get 6 cookies, filename is results/chrome_cookie.json
[x]: Get 6 history, filename is results/chrome_history.json
2020-07-10 03:29:03 +00:00
```
2020-06-30 04:01:00 +00:00
### TODO
2020-06-25 06:36:59 +00:00
[Desktop Browser Market Share Worldwide ](https://gs.statcounter.com/browser-market-share/desktop/worldwide )
2020-07-23 06:42:32 +00:00
| Chrome | Safari | Firefox | Edge Legacy | IE | Other |
| :------:| :------: | :----: | :------: | :-----: | :--: |
| 68.33% | 9.4% | 8.91% | 4.41% | 3% | 3% |
2020-06-25 06:36:59 +00:00
[Desktop Browser Market Share China ](https://gs.statcounter.com/browser-market-share/desktop/china )
| Chrome | 360 Safe | Firefox | QQ Browser | IE | Sogou Explorer |
| :----- | :------: | :-----: | :--------: | :---: | :------------: |
2020-06-25 20:33:23 +00:00
| 39.85% | 22.26% | 9.28% | 6.5% | 5.65% | 4.74% |
2020-06-25 06:36:59 +00:00
2020-06-30 04:01:00 +00:00
2020-06-25 06:47:46 +00:00
- [x] Chrome
2020-06-28 13:17:28 +00:00
- [x] QQ browser
- [x] Edge
2020-06-29 07:18:41 +00:00
- [x] 360 speed browser
2020-07-10 03:29:03 +00:00
- [x] Firefox
2020-06-25 06:47:46 +00:00
- [ ] Safari
- [ ] IE