https://github.com/pnelson/top95
Package top95 tests strings against a popular wordlist.
https://github.com/pnelson/top95
password security
Last synced: 6 months ago
JSON representation
Package top95 tests strings against a popular wordlist.
- Host: GitHub
- URL: https://github.com/pnelson/top95
- Owner: pnelson
- License: bsd-3-clause
- Created: 2018-02-19T17:13:45.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2021-11-20T05:41:32.000Z (over 4 years ago)
- Last Synced: 2025-10-13T05:13:03.572Z (9 months ago)
- Topics: password, security
- Language: Go
- Homepage: https://godoc.org/github.com/pnelson/top95
- Size: 610 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# top95
Package top95 tests strings against a popular wordlist.
## Usage
```go
if top95.Include("hunter2") {
log.Fatal("https://www.xkcd.com/936/")
}
```
## Benchmarks
Blazing fast!
```
$ go test -bench .
goos: linux
goarch: amd64
pkg: github.com/pnelson/top95
BenchmarkInclude-4 3000000 420 ns/op
PASS
ok github.com/pnelson/top95 1.748s
```
## Licenses
Package top95 and the command line application are licensed under the terms
described in [LICENSE](https://github.com/pnelson/top95/blob/master/LICENSE).
Function `Include` depends on data generated from a subset of
[berzerk0/Probable-Wordlists](https://github.com/berzerk0/Probable-Wordlists)
and is licensed under the terms described in
[LICENSE.top95](https://github.com/pnelson/top95/blob/master/LICENSE.top95).