nsauditor-ai 0.2.17 → 0.2.19

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 CHANGED
@@ -17,7 +17,9 @@ NSAuditor AI is the open-source core of a privacy-first security intelligence pl
17
17
 
18
18
  ## What's New
19
19
 
20
- **Latest: CE 0.2.17 + Enterprise 0.31.4** (June 2026) — **CLI usability patch:** `--host aws,gcp,azure` now scans **one or more clouds in a single run** (comma-separated; `--host aws` for one cloud). Previously a comma list hit the SSRF guard (`getaddrinfo ENOTFOUND aws,gcp,azure`) there was no way to audit multiple clouds in one command. The `--host` `--help` now documents the comma form + warns that the `aws|gcp|azure` (pipe) form is notation (a shell treats `|` as a pipe). **CLI-only change (CE)**; Enterprise 0.31.4 unaffected (peer `nsauditor-ai >=0.2.8` unchanged). See [CHANGELOG.md](./CHANGELOG.md).
20
+ **Latest: CE 0.2.19 + Enterprise 0.31.5** (June 2026) — paired content bump for the Enterprise **"RDS Multi-AZ DB cluster REAL snapshot detection + at-rest snapshot routing fleet sweep"** cycle. The Enterprise engine promotes a non-Aurora **RDS Multi-AZ DB cluster** snapshot to real detection (public `restore=all` **CRITICAL**, cross-account / unencrypted **HIGH** — was a fail-closed residual gap) and closes a cross-framework **single-framework snapshot false-clean**: an unencrypted snapshot now routes to the at-rest control in **all seven** frameworks (was SOC 2 + HIPAA only — NIST PR.DS-01 · PCI 3.5.1 · ISO A.8.24 · CIS 3.11 + 11.3 recovery-data · GDPR Art.32(1)(a)); a public/cross-account share also routes to access-control (SOC 2 CC6.1 + the Required HIPAA §164.312(a)(1)). **No new framework, no new plugins (still 28), no coverage-matrix changes.** **No CE engine behavior change** (detection + routing live in the Enterprise engine — this is a paired content bump). Paired **EE 0.31.5** + agent-skill 0.2.17. **EE 0.31.5 requires CE 0.2.8+.** See [CHANGELOG.md](./CHANGELOG.md).
21
+
22
+ **Prior: CE 0.2.18 + Enterprise 0.31.4** (June 2026) — **CLI usability patch:** `--host aws,gcp,azure` now scans **one or more clouds in a single run** (comma-separated; `--host aws` for one cloud). Previously a comma list hit the SSRF guard (`getaddrinfo ENOTFOUND aws,gcp,azure`) — there was no way to audit multiple clouds in one command. The `--host` `--help` documents the comma form + warns that the `aws|gcp|azure` (pipe) form is notation (a shell treats `|` as a pipe). **0.2.18** also fixes the per-host auto-scope log line so it no longer implies other clouds are dropped on a multi-cloud run (they're scanned on their own pass). **CLI-only change (CE)**; Enterprise 0.31.4 unaffected (peer `nsauditor-ai >=0.2.8` unchanged). See [CHANGELOG.md](./CHANGELOG.md).
21
23
 
22
24
  **Prior: CE 0.2.16 + Enterprise 0.31.4** (June 2026) — paired content bump for the Enterprise **"Cloud-scan presentation false-clean fix + `--compliance all` / fail-fast validation"** cycle. A cloud scan (`--host aws|azure|gcp`) with real findings no longer surfaces the network concluder's *"Host is UP — No open services detected"* headline — the conclusion shows a cloud-appropriate summary (N findings by severity + top risks), and a plugin that **times out or errors** routes to **coverage UNVERIFIED** rather than an affirmative clean verdict. **`--compliance all`** expands to all seven frameworks and an unknown `--compliance` token now **fails fast** (no *"Framework load failed"* stub) — the CE `--help` now documents both (the only CE-side change). Detection is unchanged (oracle-validated). **No new framework, no new plugins (still 28), no coverage-matrix changes.** Paired **EE 0.31.4** + agent-skill 0.2.16. **EE 0.31.4 requires CE 0.2.8+.** See [CHANGELOG.md](./CHANGELOG.md).
23
25
 
package/cli.mjs CHANGED
@@ -922,8 +922,10 @@ Cloud-scan hosts:
922
922
  cloud-scanner plugins via the provider's control-plane
923
923
  API, and imply CLOUD_PROVIDER=<host> when unset. With
924
924
  --plugins all the scan AUTO-SCOPES to only that cloud's
925
- plugins (other clouds + non-cloud plugins are skipped and
926
- the skip is logged)so --plugins all is safe here.
925
+ plugins (plugins not applicable to this host are skipped +
926
+ logged — other-cloud plugins run on their OWN --host pass,
927
+ non-cloud plugins need a network host) — so --plugins all
928
+ is safe here.
927
929
  Note: the composite zero-trust checker (1023) has no
928
930
  single cloud and is therefore skipped under this
929
931
  auto-scope; to run it, select it explicitly
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nsauditor-ai",
3
- "version": "0.2.17",
3
+ "version": "0.2.19",
4
4
  "description": "Modular AI-assisted network security audit platform — Community Edition",
5
5
  "type": "module",
6
6
  "private": false,
@@ -784,7 +784,8 @@ export class PluginManager {
784
784
  console.error(
785
785
  `Cloud host '${scope.provider}' → running ${scope.selected.length} ` +
786
786
  `${scope.provider.toUpperCase()} plugin(s); skipping ${scope.skipped.length} ` +
787
- `non-${scope.provider} plugin(s) (other clouds + non-cloud).`,
787
+ `non-${scope.provider} plugin(s) not applicable to this host ` +
788
+ `(other-cloud plugins run on their own --host pass; non-cloud plugins need a network host/CIDR).`,
788
789
  );
789
790
  }
790
791
  }