mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
add chrome password decrypt
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"hack-browser-data/core/common"
|
||||
"hack-browser-data/log"
|
||||
"hack-browser-data/utils"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
func main() {
|
||||
err := utils.CopyDB(utils.GetDBPath(utils.LoginData), utils.LoginData)
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
}
|
||||
osName := runtime.GOOS
|
||||
switch osName {
|
||||
case "darwin":
|
||||
utils.InitChromeKey()
|
||||
common.ParseDB()
|
||||
case "windows":
|
||||
fmt.Println("Windows")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user