mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-23 19:14:01 +02:00
update readme to 0.2.4
This commit is contained in:
@@ -4,6 +4,8 @@
|
|||||||
|
|
||||||
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.
|
||||||
|
|
||||||
|
> Special Note: This tool is limited to security research only, and the user assumes all legal and related responsibilities arising from its use! The author assumes no legal responsibility!
|
||||||
|
|
||||||
### Supported Browser
|
### Supported Browser
|
||||||
|
|
||||||
#### Windows
|
#### Windows
|
||||||
@@ -33,6 +35,7 @@ Based on Apple's security policy, some browsers **require a current user passwor
|
|||||||
| :---------------------------------- | :------: | :----: | :------: | :-----: |
|
| :---------------------------------- | :------: | :----: | :------: | :-----: |
|
||||||
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
||||||
|
| Microsoft Edge Dev | ✅ | ✅ | ✅ | ✅ |
|
||||||
|
|
||||||
|
|
||||||
### Install
|
### Install
|
||||||
@@ -85,7 +88,7 @@ USAGE:
|
|||||||
[hack-browser-data -b chrome -f json -dir results -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:
|
VERSION:
|
||||||
0.2.3
|
0.2.4
|
||||||
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)
|
||||||
|
|||||||
+5
-2
@@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
hack-browser-data 是一个解密浏览器数据(密码|历史记录|Cookies|书签)的导出工具,支持全平台主流浏览器。
|
hack-browser-data 是一个解密浏览器数据(密码|历史记录|Cookies|书签)的导出工具,支持全平台主流浏览器。
|
||||||
|
|
||||||
|
|
||||||
|
>特别声明:此工具仅限于安全研究,用户承担因使用此工具而导致的所有法律和相关责任!作者不承担任何法律责任!
|
||||||
|
|
||||||
### 各平台浏览器支持情况
|
### 各平台浏览器支持情况
|
||||||
|
|
||||||
#### Windows
|
#### Windows
|
||||||
@@ -32,7 +35,7 @@ hack-browser-data 是一个解密浏览器数据(密码|历史记录|Cookies|
|
|||||||
| :------------ | :------: | :----: | :------: | :-----: |
|
| :------------ | :------: | :----: | :------: | :-----: |
|
||||||
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
| Firefox | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
| Google Chrome | ✅ | ✅ | ✅ | ✅ |
|
||||||
| Microsoft Edge | ❌ | ❌ | ❌ | ❌ |
|
| Microsoft Edge | ✅ | ✅ | ✅ | ✅ |
|
||||||
|
|
||||||
### 安装运行
|
### 安装运行
|
||||||
|
|
||||||
@@ -85,7 +88,7 @@ USAGE:
|
|||||||
[hack-browser-data -b chrome -f json -dir results -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:
|
VERSION:
|
||||||
0.2.3
|
0.2.4
|
||||||
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)
|
||||||
|
|||||||
+1
-1
@@ -23,7 +23,7 @@ func Execute() {
|
|||||||
Name: "hack-browser-data",
|
Name: "hack-browser-data",
|
||||||
Usage: "Export passwords/cookies/history/bookmarks from browser",
|
Usage: "Export passwords/cookies/history/bookmarks from browser",
|
||||||
UsageText: "[hack-browser-data -b chrome -f json -dir results -cc]\n Get all data(password/cookie/history/bookmark) from chrome",
|
UsageText: "[hack-browser-data -b chrome -f json -dir results -cc]\n Get all data(password/cookie/history/bookmark) from chrome",
|
||||||
Version: "0.2.3",
|
Version: "0.2.4",
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
&cli.BoolFlag{Name: "verbose", Aliases: []string{"vv"}, Destination: &verbose, Value: false, Usage: "Verbose"},
|
&cli.BoolFlag{Name: "verbose", Aliases: []string{"vv"}, Destination: &verbose, Value: false, Usage: "Verbose"},
|
||||||
&cli.BoolFlag{Name: "compress", Aliases: []string{"cc"}, Destination: &compress, Value: false, Usage: "Compress result to zip"},
|
&cli.BoolFlag{Name: "compress", Aliases: []string{"cc"}, Destination: &compress, Value: false, Usage: "Compress result to zip"},
|
||||||
|
|||||||
Reference in New Issue
Block a user