pqcheck 0.7.5 → 0.7.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 +9 -1
- package/bin/pqcheck.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,12 @@ The same scanner that powers [quantapact.com](https://quantapact.com), the brows
|
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
+
## What's new in 0.7.6
|
|
16
|
+
|
|
17
|
+
User-Agent now consistently tags the subcommand on every request (`pqcheck-cli/0.7.6 (scan)`, `(lock)`, `(deps)`, `(history)`, `(watch)`). Lets the server aggregate adoption by subcommand. No new data collected — the subcommand token rides inside the User-Agent header that has always been logged anonymously. See [privacy](https://quantapact.com/privacy) and [CHANGELOG.md](./CHANGELOG.md).
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
15
21
|
## What it does
|
|
16
22
|
|
|
17
23
|
`pqcheck` scans any HTTPS domain and computes its **Decryption Blast Radius score** — the first continuous metric for harvest-now-decrypt-later (HNDL) risk. Every other TLS scanner answers "is post-quantum cryptography enabled?" with yes/no. `pqcheck` answers the question that actually matters: *if an adversary harvests this traffic today and decrypts it in 2035, how much past + future data unlocks?*
|
|
@@ -233,6 +239,8 @@ MIT. © 2026 Quantapact.
|
|
|
233
239
|
|
|
234
240
|
---
|
|
235
241
|
|
|
236
|
-
**Source:** [github.com/quantapact/pqcheck](https://github.com/quantapact/pqcheck)
|
|
242
|
+
**Source:** [github.com/quantapact/pqcheck](https://github.com/quantapact/pqcheck)
|
|
243
|
+
|
|
244
|
+
**Changelog:** [CHANGELOG.md](./CHANGELOG.md) for version-by-version release notes.
|
|
237
245
|
|
|
238
246
|
**Issues / feedback:** [quantapact.com/feedback](https://quantapact.com/feedback) or open an issue on the repo.
|
package/bin/pqcheck.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
// =============================================================================
|
|
8
8
|
|
|
9
9
|
const API_BASE = process.env.PQCHECK_API_BASE || "https://quantapact.com";
|
|
10
|
-
const VERSION = "0.7.
|
|
10
|
+
const VERSION = "0.7.6";
|
|
11
11
|
|
|
12
12
|
const ANSI = {
|
|
13
13
|
reset: "\x1b[0m",
|
|
@@ -122,7 +122,7 @@ async function runOneScan({ domain, format, quiet, threshold, webhookUrl, multi
|
|
|
122
122
|
try {
|
|
123
123
|
const resp = await fetch(`${API_BASE}/api/scan?domain=${encodeURIComponent(domain)}`, {
|
|
124
124
|
method: "GET",
|
|
125
|
-
headers: { accept: "application/json", "user-agent": `pqcheck-cli/${VERSION}` },
|
|
125
|
+
headers: { accept: "application/json", "user-agent": `pqcheck-cli/${VERSION} (scan)` },
|
|
126
126
|
});
|
|
127
127
|
if (!quiet && format === "text") process.stderr.write("\r\x1b[K");
|
|
128
128
|
if (!resp.ok) {
|
|
@@ -215,7 +215,7 @@ async function runWatch({ domains, format, quiet, threshold, webhookUrl, interva
|
|
|
215
215
|
try {
|
|
216
216
|
const resp = await fetch(`${API_BASE}/api/scan?domain=${encodeURIComponent(domain)}`, {
|
|
217
217
|
method: "GET",
|
|
218
|
-
headers: { accept: "application/json", "user-agent": `pqcheck-cli/${VERSION}` },
|
|
218
|
+
headers: { accept: "application/json", "user-agent": `pqcheck-cli/${VERSION} (watch)` },
|
|
219
219
|
});
|
|
220
220
|
if (!resp.ok) continue;
|
|
221
221
|
const report = await resp.json();
|