mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-27 19:22:22 +02:00
docs: update readme to v0.2.3
This commit is contained in:
@@ -1,15 +1,15 @@
|
|||||||
# HackBrowserData
|
# HackBrowserData
|
||||||
|
|
||||||
[中文文档](https://github.com/moonD4rk/HackBrowserData/blob/master/README_ZH.md)
|
[中文说明](https://github.com/moonD4rk/HackBrowserData/blob/master/README_ZH.md)
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
### Supported Browser
|
### Supported Browser
|
||||||
|
|
||||||
#### Windows
|
#### Windows
|
||||||
| Browser | Password | Cookie | Bookmark | History |
|
| Browser | Password | Cookie | Bookmark | History |
|
||||||
| :---------------------------------- | :------: | :----: | :------: | :-----: |
|
| :---------------------------------- | :------: | :----: | :------: | :-----: |
|
||||||
| Google Chrome (Full Version) | ✅ | ✅ | ✅ | ✅ |
|
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Microsoft Edge | ✅ | ✅ | ✅ | ✅ |
|
| Microsoft Edge | ✅ | ✅ | ✅ | ✅ |
|
||||||
| 360 Speed Browser | ✅ | ✅ | ✅ | ✅ |
|
| 360 Speed Browser | ✅ | ✅ | ✅ | ✅ |
|
||||||
@@ -18,13 +18,13 @@ hack-browser-data is an open-source tool that could help you decrypt data[passwo
|
|||||||
|
|
||||||
#### MacOS
|
#### MacOS
|
||||||
|
|
||||||
Because of the security policies, some of the browsers require a password.
|
Based on Apple's security policy, some browsers **require a current user password** to decrypt.
|
||||||
|
|
||||||
| Browser | Password | Cookie | Bookmark | History |
|
| Browser | Password | Cookie | Bookmark | History |
|
||||||
| :---------------------------------- | :------: | :----: | :------: | :-----: |
|
| :---------------------------------- | :------: | :----: | :------: | :-----: |
|
||||||
| Google Chrome<br />Require Password | ✅ | ✅ | ✅ | ✅ |
|
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Microsoft Edge<br />Require Password | ✅ | ✅ | ✅ | ✅ |
|
| Microsoft Edge | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Safari | ❌ | ❌ | ❌ | ❌ |
|
| Safari | ❌ | ❌ | ❌ | ❌ |
|
||||||
|
|
||||||
#### Linux
|
#### Linux
|
||||||
@@ -53,28 +53,49 @@ go get -v -t -d ./...
|
|||||||
go build
|
go build
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Run
|
##### Cross compile
|
||||||
|
|
||||||
|
Need install target OS's `gcc` library, here's an example of use `Mac` building for `Windows` and `Linus`
|
||||||
|
|
||||||
|
**Windows**
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
|
brew install mingw-w64
|
||||||
|
|
||||||
|
CGO_ENABLED=1 GOOS=windows GOARCH=amd64 CC="x86_64-w64-mingw32-gcc" go build
|
||||||
|
```
|
||||||
|
|
||||||
|
**Linux**
|
||||||
|
|
||||||
|
````shell
|
||||||
|
brew install FiloSottile/musl-cross/musl-cross
|
||||||
|
|
||||||
|
CC=x86_64-linux-musl-gcc CXX=x86_64-linux-musl-g++ GOARCH=amd64 GOOS=linux CGO_ENABLED=1 go build -ldflags "-linkmode external -extldflags -static"
|
||||||
|
````
|
||||||
|
|
||||||
|
#### Run
|
||||||
|
|
||||||
|
You can double-click to run, or use command line.
|
||||||
|
|
||||||
|
```
|
||||||
PS C:\test> .\hack-browser-data.exe -h
|
PS C:\test> .\hack-browser-data.exe -h
|
||||||
NAME:
|
NAME:
|
||||||
hack-browser-data - Export passwords/cookies/history/bookmarks from browser
|
hack-browser-data - Export passwords/cookies/history/bookmarks from browser
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
[hack-browser-data -b chrome -f json -dir results -e all -cc]
|
[hack-browser-data -b chrome -f json -dir results -cc]
|
||||||
Get all data(password/cookie/history/bookmark) from chrome
|
Get all data(password/cookie/history/bookmark) from chrome
|
||||||
|
VERSION:
|
||||||
|
0.2.3
|
||||||
GLOBAL OPTIONS:
|
GLOBAL OPTIONS:
|
||||||
--verbose, --vv Verbose (default: false)
|
--verbose, --vv Verbose (default: false)
|
||||||
--compress, --cc Compress result to zip (default: false)
|
--compress, --cc Compress result to zip (default: false)
|
||||||
--browser value, -b value Available browsers: all|chrome|edge|firefox (default: "all")
|
--browser value, -b value Available browsers: all|edge|firefox|chrome (default: "all")
|
||||||
--results-dir value, --dir value Export dir (default: "results")
|
--results-dir value, --dir value Export dir (default: "results")
|
||||||
--format value, -f value Format, csv|json|console (default: "json")
|
--format value, -f value Format, csv|json|console (default: "json")
|
||||||
--export-data value, -e value all|password|bookmark|cookie|history (default: "all")
|
|
||||||
--help, -h show help (default: false)
|
--help, -h show help (default: false)
|
||||||
|
--version, -v print the version (default: false)
|
||||||
|
|
||||||
|
PS C:\test> .\hack-browser-data.exe -b all -f json --dir results -cc
|
||||||
PS C:\test> .\hack-browser-data.exe -b all -f json -e all --dir results -cc
|
|
||||||
[x]: Get 44 cookies, filename is results/microsoft_edge_cookie.json
|
[x]: Get 44 cookies, filename is results/microsoft_edge_cookie.json
|
||||||
[x]: Get 54 history, filename is results/microsoft_edge_history.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 1 passwords, filename is results/microsoft_edge_password.json
|
||||||
@@ -113,8 +134,6 @@ PS C:\test> .\hack-browser-data.exe -b all -f json -e all --dir results -cc
|
|||||||
| :----- | :------: | :-----: | :--------: | :---: | :------------: |
|
| :----- | :------: | :-----: | :--------: | :---: | :------------: |
|
||||||
| 39.85% | 22.26% | 9.28% | 6.5% | 5.65% | 4.74% |
|
| 39.85% | 22.26% | 9.28% | 6.5% | 5.65% | 4.74% |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [x] Chrome
|
- [x] Chrome
|
||||||
- [x] QQ browser
|
- [x] QQ browser
|
||||||
- [x] Edge
|
- [x] Edge
|
||||||
|
|||||||
+38
-19
@@ -1,7 +1,5 @@
|
|||||||
# HackBrowserData
|
# HackBrowserData
|
||||||
|
|
||||||
[中文文档](https://github.com/moonD4rk/HackBrowserData/blob/master/README_ZH.md)
|
|
||||||
|
|
||||||
hack-browser-data 是一个解密浏览器数据(密码|历史记录|Cookies|书签)的导出工具,支持全平台主流浏览器。
|
hack-browser-data 是一个解密浏览器数据(密码|历史记录|Cookies|书签)的导出工具,支持全平台主流浏览器。
|
||||||
|
|
||||||
### 各平台浏览器支持情况
|
### 各平台浏览器支持情况
|
||||||
@@ -10,7 +8,7 @@ hack-browser-data 是一个解密浏览器数据(密码|历史记录|Cookies|
|
|||||||
|
|
||||||
| 浏览器 | 密码 | Cookie | 书签 | 历史记录 |
|
| 浏览器 | 密码 | Cookie | 书签 | 历史记录 |
|
||||||
| :--------------------------- | :------: | :----: | :------: | :-----: |
|
| :--------------------------- | :------: | :----: | :------: | :-----: |
|
||||||
| Google Chrome (全版本) | ✅ | ✅ | ✅ | ✅ |
|
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Microsoft Edge | ✅ | ✅ | ✅ | ✅ |
|
| Microsoft Edge | ✅ | ✅ | ✅ | ✅ |
|
||||||
| 360 急速浏览器 | ✅ | ✅ | ✅ | ✅ |
|
| 360 急速浏览器 | ✅ | ✅ | ✅ | ✅ |
|
||||||
@@ -19,26 +17,26 @@ hack-browser-data 是一个解密浏览器数据(密码|历史记录|Cookies|
|
|||||||
|
|
||||||
#### MacOS
|
#### MacOS
|
||||||
|
|
||||||
由于 MacOS 的安全性设置,基于 `Chromium` 内核浏览器解密时需要用户密码
|
由于 MacOS 的安全性设置,基于 `Chromium` 内核浏览器解密时**需要当前用户密码**
|
||||||
|
|
||||||
| Browser | Password | Cookie | Bookmark | History |
|
| Browser | 密码 | Cookie | 书签 | 历史记录 |
|
||||||
| :--------------------------- | :------: | :----: | :------: | :-----: |
|
| :--------------------------- | :------: | :----: | :------: | :-----: |
|
||||||
| Google Chrome<br />需要密码 | ✅ | ✅ | ✅ | ✅ |
|
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Microsoft Edge<br />需要密码 | ✅ | ✅ | ✅ | ✅ |
|
| Microsoft Edge | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Safari | ❌ | ❌ | ❌ | ❌ |
|
| Safari | ❌ | ❌ | ❌ | ❌ |
|
||||||
|
|
||||||
#### Linux
|
#### Linux
|
||||||
|
|
||||||
| Browser | Password | Cookie | Bookmark | History |
|
| Browser | 密码 | Cookie | 书签 | 历史记录 |
|
||||||
| :------------ | :------: | :----: | :------: | :-----: |
|
| :------------ | :------: | :----: | :------: | :-----: |
|
||||||
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
||||||
|
| Microsoft Edge | ❌ | ❌ | ❌ | ❌ |
|
||||||
|
|
||||||
### 安装运行
|
### 安装运行
|
||||||
|
|
||||||
基于Golang,如图方便可以下载我编译好的[二进制文件 ](https://github.com/moonD4rk/HackBrowserData/releases) 就行
|
可下载已编译好,直接运行的 [二进制文件 ](https://github.com/moonD4rk/HackBrowserData/releases)
|
||||||
|
|
||||||
#### 自己编译
|
#### 自己编译
|
||||||
|
|
||||||
@@ -54,28 +52,51 @@ go get -v -t -d ./...
|
|||||||
go build
|
go build
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 运行
|
##### 跨平台编译
|
||||||
|
|
||||||
|
由于用到了 `go-sqlite3` 库,在跨平台编译时需提前安装支持目标平台的 `GCC` 工具,下面以 `MacOS` 下分别编译 `Windows` 和 `Linux` 程序为例:
|
||||||
|
|
||||||
|
**Windows**
|
||||||
|
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
|
brew install mingw-w64
|
||||||
|
|
||||||
|
CGO_ENABLED=1 GOOS=windows GOARCH=amd64 CC="x86_64-w64-mingw32-gcc" go build
|
||||||
|
```
|
||||||
|
|
||||||
|
**Linux**
|
||||||
|
|
||||||
|
```shell
|
||||||
|
brew install FiloSottile/musl-cross/musl-cross
|
||||||
|
|
||||||
|
CC=x86_64-linux-musl-gcc CXX=x86_64-linux-musl-g++ GOARCH=amd64 GOOS=linux CGO_ENABLED=1 go build -ldflags "-linkmode external -extldflags -static"
|
||||||
|
```
|
||||||
|
|
||||||
|
#### 运行
|
||||||
|
|
||||||
|
双击直接运行,也可以命令行调整对应的命令
|
||||||
|
|
||||||
|
```
|
||||||
PS C:\test> .\hack-browser-data.exe -h
|
PS C:\test> .\hack-browser-data.exe -h
|
||||||
NAME:
|
NAME:
|
||||||
hack-browser-data - Export passwords/cookies/history/bookmarks from browser
|
hack-browser-data - Export passwords/cookies/history/bookmarks from browser
|
||||||
|
|
||||||
USAGE:
|
USAGE:
|
||||||
[hack-browser-data -b chrome -f json -dir results -e all -cc]
|
[hack-browser-data -b chrome -f json -dir results -cc]
|
||||||
Get all data(password/cookie/history/bookmark) from chrome
|
Get all data(password/cookie/history/bookmark) from chrome
|
||||||
|
VERSION:
|
||||||
|
0.2.3
|
||||||
GLOBAL OPTIONS:
|
GLOBAL OPTIONS:
|
||||||
--verbose, --vv Verbose (default: false)
|
--verbose, --vv Verbose (default: false)
|
||||||
--compress, --cc Compress result to zip (default: false)
|
--compress, --cc Compress result to zip (default: false)
|
||||||
--browser value, -b value Available browsers: all|chrome|edge|firefox (default: "all")
|
--browser value, -b value Available browsers: all|edge|firefox|chrome|qq|360 (default: "all")
|
||||||
--results-dir value, --dir value Export dir (default: "results")
|
--results-dir value, --dir value Export dir (default: "results")
|
||||||
--format value, -f value Format, csv|json|console (default: "json")
|
--format value, -f value Format, csv|json|console (default: "json")
|
||||||
--export-data value, -e value all|password|bookmark|cookie|history (default: "all")
|
|
||||||
--help, -h show help (default: false)
|
--help, -h show help (default: false)
|
||||||
|
--version, -v print the version (default: false)
|
||||||
|
|
||||||
|
|
||||||
PS C:\test> .\hack-browser-data.exe -b all -f json -e all --dir results -cc
|
PS C:\test> .\hack-browser-data.exe -b all -f json --dir results -cc
|
||||||
[x]: Get 44 cookies, filename is results/microsoft_edge_cookie.json
|
[x]: Get 44 cookies, filename is results/microsoft_edge_cookie.json
|
||||||
[x]: Get 54 history, filename is results/microsoft_edge_history.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 1 passwords, filename is results/microsoft_edge_password.json
|
||||||
@@ -114,8 +135,6 @@ PS C:\test> .\hack-browser-data.exe -b all -f json -e all --dir results -cc
|
|||||||
| :----- | :------: | :-----: | :--------: | :---: | :------------: |
|
| :----- | :------: | :-----: | :--------: | :---: | :------------: |
|
||||||
| 39.85% | 22.26% | 9.28% | 6.5% | 5.65% | 4.74% |
|
| 39.85% | 22.26% | 9.28% | 6.5% | 5.65% | 4.74% |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- [x] Chrome
|
- [x] Chrome
|
||||||
- [x] QQ browser
|
- [x] QQ browser
|
||||||
- [x] Edge
|
- [x] Edge
|
||||||
|
|||||||
Reference in New Issue
Block a user