mirror of
https://github.com/wneessen/go-hibp.git
synced 2024-11-14 17:32:53 +01:00
30 lines
514 B
Go
30 lines
514 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
hibp "github.com/wneessen/go-hibp"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
hc := hibp.New()
|
||
|
if hc == nil {
|
||
|
panic("failed to create HIBP client")
|
||
|
}
|
||
|
|
||
|
bl, _, err := hc.BreachApi.Breaches()
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
if bl != nil && len(bl) != 0 {
|
||
|
fmt.Printf("Found %d breaches total.\n", len(bl))
|
||
|
}
|
||
|
|
||
|
bl, _, err = hc.BreachApi.Breaches(hibp.WithoutUnverified())
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
if bl != nil && len(bl) != 0 {
|
||
|
fmt.Printf("Found %d verified breaches total.\n", len(bl))
|
||
|
}
|
||
|
}
|