diff options
author | Andinus <andinus@nand.sh> | 2020-06-18 23:02:33 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-06-18 23:02:33 +0530 |
commit | 35c57a5c20f11a51dc500f1fcdc0721d7521acf0 (patch) | |
tree | d2a68d8a89589337eb8da91e456f63ed93f6c3e4 /cmd | |
parent | deca88ddb03527323ec751a02271d6f180a968b6 (diff) | |
download | orion-35c57a5c20f11a51dc500f1fcdc0721d7521acf0.tar.gz |
Revert "Reinitialize project"
This reverts commit a9de3eef47cac76791574444380d3cd993d34e1e.
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/orion/orion.go | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/cmd/orion/orion.go b/cmd/orion/orion.go new file mode 100644 index 0000000..e3ce011 --- /dev/null +++ b/cmd/orion/orion.go @@ -0,0 +1,55 @@ +package main + +import ( + "os" + "time" + + "framagit.org/andinus/orion/hibp" + + "github.com/AlecAivazis/survey/v2" + "github.com/AlecAivazis/survey/v2/terminal" + "github.com/briandowns/spinner" + "github.com/fatih/color" +) + +func main() { + var pass string + + prompt := &survey.Password{ + Message: "Password:", + Help: "Enter password to be checked against HIBP's Database", + } + err := survey.AskOne(prompt, &pass, survey.WithValidator(survey.Required)) + if err == terminal.InterruptErr { + color.Yellow("Interrupt Received") + os.Exit(0) + } else if err != nil { + panic(err) + } + + s := spinner.New(spinner.CharSets[12], 32*time.Millisecond) + s.Start() + s.Color("cyan") + + // get password hash + hsh := hibp.GetHsh(pass) + + // get list of pwned passwords + list, err := hibp.GetPwned(hsh) + if err != nil { + color.Yellow(err.Error()) + os.Exit(1) + } + + // check if pass is pwned + pwn, fq := hibp.ChkPwn(list, hsh) + s.Stop() + + if pwn { + color.New(color.FgRed).Add(color.Bold).Println("\nPwned!") + color.Yellow("This password has been seen %s times before.", fq) + return + } + + color.Green("\nPassword wasn't found in Have I Been Pwned's Database") +} |