You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.3 KiB
78 lines
2.3 KiB
package main
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"hack-browser-data/internal/browser"
|
|
"hack-browser-data/internal/log"
|
|
"hack-browser-data/internal/utils/fileutil"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var (
|
|
browserName string
|
|
outputDir string
|
|
outputFormat string
|
|
verbose bool
|
|
compress bool
|
|
profilePath string
|
|
)
|
|
|
|
func main() {
|
|
Execute()
|
|
}
|
|
|
|
func Execute() {
|
|
app := &cli.App{
|
|
Name: "hack-browser-data",
|
|
Usage: "Export passwords/cookies/history/bookmarks from browser",
|
|
UsageText: "[hack-browser-data -b chrome -f json -dir results -cc]\nExport all browingdata(password/cookie/history/bookmark) from browser\nGithub Link: https://github.com/moonD4rk/HackBrowserData",
|
|
Version: "0.4.3",
|
|
Flags: []cli.Flag{
|
|
&cli.BoolFlag{Name: "verbose", Aliases: []string{"vv"}, Destination: &verbose, Value: false, Usage: "verbose"},
|
|
&cli.BoolFlag{Name: "compress", Aliases: []string{"zip"}, Destination: &compress, Value: false, Usage: "compress result to zip"},
|
|
&cli.StringFlag{Name: "browser", Aliases: []string{"b"}, Destination: &browserName, Value: "all", Usage: "available browsers: all|" + strings.Join(browser.ListBrowser(), "|")},
|
|
&cli.StringFlag{Name: "results-dir", Aliases: []string{"dir"}, Destination: &outputDir, Value: "results", Usage: "export dir"},
|
|
&cli.StringFlag{Name: "format", Aliases: []string{"f"}, Destination: &outputFormat, Value: "csv", Usage: "file name csv|json"},
|
|
&cli.StringFlag{Name: "profile-path", Aliases: []string{"p"}, Destination: &profilePath, Value: "", Usage: "custom profile dir path, get with chrome://version"},
|
|
},
|
|
HideHelpCommand: true,
|
|
Action: func(c *cli.Context) error {
|
|
if verbose {
|
|
log.Init("debug")
|
|
} else {
|
|
log.Init("notice")
|
|
}
|
|
var (
|
|
browsers []browser.Browser
|
|
err error
|
|
)
|
|
browsers, err = browser.PickBrowser(browserName, profilePath)
|
|
if err != nil {
|
|
log.Error(err)
|
|
}
|
|
|
|
for _, b := range browsers {
|
|
data, err := b.BrowsingData()
|
|
if err != nil {
|
|
log.Error(err)
|
|
}
|
|
data.Output(outputDir, b.Name(), outputFormat)
|
|
}
|
|
if compress {
|
|
if err = fileutil.CompressDir(outputDir); err != nil {
|
|
log.Error(err)
|
|
}
|
|
log.Noticef("compress success")
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
err := app.Run(os.Args)
|
|
if err != nil {
|
|
log.Init("debug")
|
|
log.Error(err)
|
|
}
|
|
}
|
|
|