-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
208 lines (171 loc) · 4.99 KB
/
main.go
File metadata and controls
208 lines (171 loc) · 4.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
// haveibeenpwned.com cli for get breached accounts details
package main
import (
"bufio"
"bytes"
"encoding/json"
"fmt"
"github.com/jessevdk/go-flags"
"io"
"log"
"os"
"strings"
"time"
)
// current program version
const Version = "v0.1.0"
/*
TODO: logs (color)
TODO: nicer formatting (color / emoji)
*/
func hibpAccountLeaksFormatter(account string, breaches []HIBPBreach, pastes []HIBPPaste) (string, error) {
if len(breaches) == 0 && len(pastes) == 0 {
return fmt.Sprintf("%s: no leaks\n", account), nil
}
var msg strings.Builder
msg.WriteString(fmt.Sprintf("%s: ", account))
if len(breaches) == 0 {
msg.WriteString("no breaches")
} else {
firstBreach, lastBreach := breaches[0], breaches[len(breaches)-1]
var lastTitle string
if lastBreach.Domain != "" {
lastTitle = lastBreach.Domain
} else {
lastTitle = lastBreach.Title
}
var hasPassword string
if contains(lastBreach.DataClasses, "Passwords") {
hasPassword = "password"
} else {
hasPassword = "account only"
}
var verified string
if lastBreach.IsVerified {
verified = "verified"
} else {
verified = "unverified"
}
msg.WriteString(fmt.Sprintf("%d breaches between %s-%s. latest from %s [%s %s]", len(breaches),
firstBreach.BreachDate[:4], lastBreach.BreachDate[:4], lastTitle, verified, hasPassword))
}
if len(pastes) == 0 {
return msg.String(), nil
}
pastesSources := make([]string, len(pastes))
for i, p := range pastes {
pastesSources[i] = p.Source
}
sources := strings.Join(uniq(pastesSources), ",")
msg.WriteString(fmt.Sprintf(" | %d pastes from %s\n", len(pastes), sources))
return msg.String(), nil
}
func jsonHIBPAccountLeaksFormatter(account string, breaches []HIBPBreach, pastes []HIBPPaste) ([]byte, error) {
leaksMap := map[string]interface{}{"account": account, "breaches": breaches, "pastes": pastes}
leaksJSON, err := json.Marshal(&leaksMap)
if err != nil {
return []byte(""), err
}
leaksJSON = append(leaksJSON, byte('\n'))
return leaksJSON, nil
}
func getHIBPAccountsLeaks(fin io.Reader, fout io.Writer, detailedOutput bool, requestDelay time.Duration) error {
reader := bufio.NewReader(fin)
HIBPClient := NewHIBPClient()
HIBPClient.RequestDelay = requestDelay
for {
line, err := reader.ReadString('\n')
if err == io.EOF {
return nil
}
if err != nil {
return err
}
account := strings.TrimSpace(line)
// skip empty lines
if account == "" {
continue
}
// get leaks for current account
breaches, pastes, err := HIBPClient.GetHIBPLeaks(account)
if err != nil {
return err
}
// print results to stdout
msg, err := hibpAccountLeaksFormatter(account, breaches, pastes)
if err != nil {
return err
}
fmt.Println(msg)
// if output file - print results to json-lines file
if !detailedOutput {
continue
}
jsonmsg, err := jsonHIBPAccountLeaksFormatter(account, breaches, pastes)
if err != nil {
return err
}
_, err = fout.Write(jsonmsg)
if err != nil {
return err
}
}
}
// TODO: -f filename -o output.jsonl -q -d 5 -a <account>
type options struct {
Account string `short:"a" long:"account" description:"account to search leaks for"`
InFile string `short:"f" long:"filename" description:"input filename of account to search, one account per line"`
OutFile string `short:"o" long:"output" description:"output filename for detailed json-lines response" required:"false"`
RequestDelay time.Duration `short:"d" long:"request-delay" description:"request delay between each api call, default 10s" required:"false"`
Version bool `long:"version" description:"prints program version and exits"`
//Quiet bool `short:"q" long:"quiet" description:"disable all log messages and only print leaks info"`
}
func parseArgs(args []string) options {
var opts options
_, err := flags.ParseArgs(&opts, args)
if err != nil {
os.Exit(2)
}
if opts.Version {
fmt.Println(Version)
os.Exit(0)
}
if (opts.InFile == "") == (opts.Account == "") {
fmt.Println("please choose either --account or --filename")
os.Exit(2)
}
if opts.RequestDelay == 0 {
opts.RequestDelay = DefaultRequestDelay
}
return opts
}
func printHIBPLeaks(opts options) {
var fin io.Reader
if opts.InFile != "" {
fin, err := os.Open(opts.InFile)
if err != nil {
logger.Fatalf("cannot read file %s: %s", opts.InFile, err.Error())
}
defer fin.Close()
} else {
fin = bytes.NewReader(append([]byte(opts.Account), byte('\n')))
}
var fout *bufio.Writer = nil
if opts.OutFile != "" {
logger.Printf("writing detailed responses to %s", opts.OutFile)
output, err := os.Create(opts.OutFile)
if err != nil {
logger.Fatalf("cannot write to file %s: %s", opts.OutFile, err.Error())
}
fout = bufio.NewWriter(output)
defer output.Close()
defer fout.Flush()
}
detailedOutput := fout != nil
getHIBPAccountsLeaks(fin, fout, detailedOutput, opts.RequestDelay)
}
func main() {
logger = log.New(os.Stderr, "", log.Ltime|log.Lshortfile)
opts := parseArgs(os.Args)
printHIBPLeaks(opts)
}