haveibeenfiltered 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -10
- package/lib/datasets.js +7 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
Offline password breach checking using [ribbon filters](https://engineering.fb.com/2021/07/09/core-infra/ribbon-filter/). Check passwords against the [Have I Been Pwned](https://haveibeenpwned.com/) dataset (2B+ passwords) locally, with no API calls.
|
|
8
8
|
|
|
9
|
-
See [
|
|
9
|
+
See [fedorov.net/projects/hibf](https://fedorov.net/projects/hibf/) for more information about the project.
|
|
10
10
|
|
|
11
11
|
## Why?
|
|
12
12
|
|
|
@@ -202,17 +202,17 @@ npx haveibeenfiltered status
|
|
|
202
202
|
|
|
203
203
|
### CDN
|
|
204
204
|
|
|
205
|
-
Filter binaries are hosted at `https://
|
|
205
|
+
Filter binaries are hosted at `https://bits.fedorov.net/v0.1/`:
|
|
206
206
|
|
|
207
207
|
| File | Size | SHA-256 |
|
|
208
208
|
|------|------|---------|
|
|
209
|
-
| [`ribbon-hibp-v1.bin`](https://
|
|
210
|
-
| [`ribbon-hibp-v1-min5.bin`](https://
|
|
211
|
-
| [`ribbon-hibp-v1-min10.bin`](https://
|
|
212
|
-
| [`ribbon-hibp-v1-min20.bin`](https://
|
|
213
|
-
| [`ribbon-rockyou-v1.bin`](https://
|
|
214
|
-
| [`ribbon-top1m-v1.bin`](https://
|
|
215
|
-
| [`ribbon-top10m-v1.bin`](https://
|
|
209
|
+
| [`ribbon-hibp-v1.bin`](https://bits.fedorov.net/v0.1/ribbon-hibp-v1.bin) | 1.8 GB | `4eeb8608fa8541a51a952ecda91ad2f86e6f7457b0dbe34b88ba8a7ed33750ce` |
|
|
210
|
+
| [`ribbon-hibp-v1-min5.bin`](https://bits.fedorov.net/v0.1/ribbon-hibp-v1-min5.bin) | 726 MB | `4422f5659cb5fe39cf284b844328bfd3f7ab37fac0fe649b4cff216ffd2ac5da` |
|
|
211
|
+
| [`ribbon-hibp-v1-min10.bin`](https://bits.fedorov.net/v0.1/ribbon-hibp-v1-min10.bin) | 435 MB | `8c71d6a3696d27bcf21a30ddcd67f7e290a71210800db86810ffb84a426fe93e` |
|
|
212
|
+
| [`ribbon-hibp-v1-min20.bin`](https://bits.fedorov.net/v0.1/ribbon-hibp-v1-min20.bin) | 259 MB | `31a2c7942698fce74d95ce54dfb61f383ef1a33dce496b88c672e1ac07c71c43` |
|
|
213
|
+
| [`ribbon-rockyou-v1.bin`](https://bits.fedorov.net/v0.1/ribbon-rockyou-v1.bin) | 12.8 MB | `777d3c1640e7067bc7fb222488199c3371de5360639561f1f082db6b7c16a447` |
|
|
214
|
+
| [`ribbon-top1m-v1.bin`](https://bits.fedorov.net/v0.1/ribbon-top1m-v1.bin) | 0.9 MB | `44f03ee81d777b42ba96deabde394f8aca8b8ef99134e15121c4e0c3fb3547c1` |
|
|
215
|
+
| [`ribbon-top10m-v1.bin`](https://bits.fedorov.net/v0.1/ribbon-top10m-v1.bin) | 9.0 MB | `bdc40e88abf427354d408d67e79a31f7e2987dac0f1130c4d30f396062a9cd96` |
|
|
216
216
|
|
|
217
217
|
The CLI downloads to `~/.haveibeenfiltered/` by default. Integrity is verified via SHA-256 after each download.
|
|
218
218
|
|
|
@@ -259,7 +259,7 @@ Benchmarked on a single core. The filter loads into memory once (~1.8 GB RAM for
|
|
|
259
259
|
|
|
260
260
|
## Links
|
|
261
261
|
|
|
262
|
-
- [
|
|
262
|
+
- [fedorov.net/projects/hibf](https://fedorov.net/projects/hibf/) — Project homepage
|
|
263
263
|
- [GitHub](https://github.com/kolobus/haveibeenfiltered) — Source code
|
|
264
264
|
- [npm](https://www.npmjs.com/package/haveibeenfiltered) — Package registry
|
|
265
265
|
- [Have I Been Pwned](https://haveibeenpwned.com/) — Password breach data source
|
package/lib/datasets.js
CHANGED
|
@@ -5,7 +5,7 @@ const DATASETS = {
|
|
|
5
5
|
name: 'hibp',
|
|
6
6
|
version: 1,
|
|
7
7
|
filename: 'ribbon-hibp-v1.bin',
|
|
8
|
-
url: 'https://
|
|
8
|
+
url: 'https://bits.fedorov.net/v0.1/ribbon-hibp-v1.bin',
|
|
9
9
|
expectedBytes: 1918974105,
|
|
10
10
|
sha256: '4eeb8608fa8541a51a952ecda91ad2f86e6f7457b0dbe34b88ba8a7ed33750ce',
|
|
11
11
|
},
|
|
@@ -13,7 +13,7 @@ const DATASETS = {
|
|
|
13
13
|
name: 'hibp-min5',
|
|
14
14
|
version: 1,
|
|
15
15
|
filename: 'ribbon-hibp-v1-min5.bin',
|
|
16
|
-
url: 'https://
|
|
16
|
+
url: 'https://bits.fedorov.net/v0.1/ribbon-hibp-v1-min5.bin',
|
|
17
17
|
expectedBytes: 760791541,
|
|
18
18
|
sha256: '4422f5659cb5fe39cf284b844328bfd3f7ab37fac0fe649b4cff216ffd2ac5da',
|
|
19
19
|
},
|
|
@@ -21,7 +21,7 @@ const DATASETS = {
|
|
|
21
21
|
name: 'hibp-min10',
|
|
22
22
|
version: 1,
|
|
23
23
|
filename: 'ribbon-hibp-v1-min10.bin',
|
|
24
|
-
url: 'https://
|
|
24
|
+
url: 'https://bits.fedorov.net/v0.1/ribbon-hibp-v1-min10.bin',
|
|
25
25
|
expectedBytes: 455760736,
|
|
26
26
|
sha256: '8c71d6a3696d27bcf21a30ddcd67f7e290a71210800db86810ffb84a426fe93e',
|
|
27
27
|
},
|
|
@@ -29,7 +29,7 @@ const DATASETS = {
|
|
|
29
29
|
name: 'hibp-min20',
|
|
30
30
|
version: 1,
|
|
31
31
|
filename: 'ribbon-hibp-v1-min20.bin',
|
|
32
|
-
url: 'https://
|
|
32
|
+
url: 'https://bits.fedorov.net/v0.1/ribbon-hibp-v1-min20.bin',
|
|
33
33
|
expectedBytes: 271649178,
|
|
34
34
|
sha256: '31a2c7942698fce74d95ce54dfb61f383ef1a33dce496b88c672e1ac07c71c43',
|
|
35
35
|
},
|
|
@@ -37,7 +37,7 @@ const DATASETS = {
|
|
|
37
37
|
name: 'rockyou',
|
|
38
38
|
version: 1,
|
|
39
39
|
filename: 'ribbon-rockyou-v1.bin',
|
|
40
|
-
url: 'https://
|
|
40
|
+
url: 'https://bits.fedorov.net/v0.1/ribbon-rockyou-v1.bin',
|
|
41
41
|
expectedBytes: 13456384,
|
|
42
42
|
sha256: '777d3c1640e7067bc7fb222488199c3371de5360639561f1f082db6b7c16a447',
|
|
43
43
|
},
|
|
@@ -45,7 +45,7 @@ const DATASETS = {
|
|
|
45
45
|
name: 'top1m',
|
|
46
46
|
version: 1,
|
|
47
47
|
filename: 'ribbon-top1m-v1.bin',
|
|
48
|
-
url: 'https://
|
|
48
|
+
url: 'https://bits.fedorov.net/v0.1/ribbon-top1m-v1.bin',
|
|
49
49
|
expectedBytes: 956220,
|
|
50
50
|
sha256: '44f03ee81d777b42ba96deabde394f8aca8b8ef99134e15121c4e0c3fb3547c1',
|
|
51
51
|
},
|
|
@@ -53,7 +53,7 @@ const DATASETS = {
|
|
|
53
53
|
name: 'top10m',
|
|
54
54
|
version: 1,
|
|
55
55
|
filename: 'ribbon-top10m-v1.bin',
|
|
56
|
-
url: 'https://
|
|
56
|
+
url: 'https://bits.fedorov.net/v0.1/ribbon-top10m-v1.bin',
|
|
57
57
|
expectedBytes: 9386327,
|
|
58
58
|
sha256: 'bdc40e88abf427354d408d67e79a31f7e2987dac0f1130c4d30f396062a9cd96',
|
|
59
59
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "haveibeenfiltered",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Offline password breach checking using ribbon filters. Check passwords against HIBP (2B+ passwords) and other breach datasets locally, with zero API calls.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"type": "individual",
|
|
43
43
|
"url": "https://buymeacoffee.com/kolobus"
|
|
44
44
|
},
|
|
45
|
-
"homepage": "https://
|
|
45
|
+
"homepage": "https://fedorov.net/projects/hibf/",
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=16.0.0"
|
|
48
48
|
}
|