mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
parse cookies, bookmarks, history Closes #9
This commit is contained in:
+3
-2
@@ -1,6 +1,7 @@
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"hack-browser-data/core"
|
||||
"hack-browser-data/log"
|
||||
"hack-browser-data/utils"
|
||||
@@ -70,16 +71,16 @@ func Execute() {
|
||||
core.ParseResult(dst)
|
||||
}
|
||||
} else {
|
||||
fileList := utils.GetDBPath(browserDir, "key4.db", "logins.json", utils.FirefoxCookie)
|
||||
fileList := utils.GetDBPath(browserDir, utils.FirefoxLoginData, utils.FirefoxKey4DB, utils.FirefoxCookie, utils.FirefoxData)
|
||||
for _, v := range fileList {
|
||||
dst := filepath.Base(v)
|
||||
fmt.Println(dst)
|
||||
err := utils.CopyDB(v, dst)
|
||||
if err != nil {
|
||||
log.Println(err)
|
||||
continue
|
||||
}
|
||||
core.ParseResult(dst)
|
||||
core.DecodeKey4()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user