correctover-scan 1.7.1 → 1.7.3

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
@@ -159,7 +159,7 @@ The free-tier daily scan allowance applies to bundle scans too (counted the same
159
159
 
160
160
  ### Web Scanner
161
161
 
162
- Try the online version: [correctover.com/scan](https://correctover.com/scan/)
162
+ Try the no-install browser version (files never leave your machine): [in-browser scanner](https://correctover.com/scan.html)
163
163
 
164
164
  ## Standards Compliance
165
165
 
@@ -177,14 +177,14 @@ The free automated scan covers surface-level configuration checks. A manual Corr
177
177
 
178
178
  For first customers, if the manual audit finds no critical-severity issue, you pay nothing.
179
179
 
180
- - Get your free 1-page summary: email [234114134@coze.email](mailto:234114134@coze.email?subject=Free%20audit%20scan%20summary)
180
+ - Get your free 1-page summary: email [wangguigui@correctover.com](mailto:wangguigui@correctover.com?subject=Free%20Scan%20summary%20request)
181
181
  - Learn more about the manual audit: https://correctover.com/agent-audit.html
182
182
 
183
183
  ## Links
184
184
 
185
185
  - [correctover.com](https://correctover.com) — AI Agent Runtime Assurance
186
186
  - [CCS Standard](https://correctover.com/ccs) — Conformance Specification
187
- - [Web Scanner](https://correctover.com/scan/) — Online version
187
+ - [Web Scanner](https://correctover.com/scan.html) — In-browser version, no upload
188
188
  - [GitHub](https://github.com/DSHCorrectover) — Source code
189
189
  - [Conformance test vectors](https://github.com/DSHCorrectover/ccs-conformance-vectors) — 66 signed, reproducible
190
190
  - [EMILIA interoperability](https://github.com/emiliaprotocol/emilia-protocol/pull/693) — merged joint assessment
@@ -197,7 +197,11 @@ CCS (Correctover Conformance Shape) is published as an individual Internet-Draft
197
197
 
198
198
  An Internet-Draft is an individual submission. It is not an RFC, an adopted working-group item, or IETF endorsement; the Datatracker page is authoritative for revision and status.
199
199
 
200
- ## License
200
+ ## License & scope
201
201
 
202
- MIT © Correctover
202
+ MIT © Correctover.
203
+
204
+ This CLI is a **free, open-source lead-generation tool** (MIT-licensed): use it in your terminal, CI, and agent hooks (such as the [Kimi Code security hook](https://github.com/DSHCorrectover/kimi-code-security-hook)), fork it, and redistribute it under the MIT terms. External pull requests are welcome.
205
+
206
+ The commercial products — the hosted zero-upload scan platform, the CCS runtime verification engine, and the manual Agent Output Audit service — are proprietary and are not part of this open-source release. See [correctover.com](https://correctover.com) for those.
203
207
 
package/core/report.js CHANGED
File without changes
package/index.js CHANGED
@@ -14,7 +14,7 @@ const { runBundleScan, discoverBundleFiles } = require('./core/bundle-scanner');
14
14
  const { recordCall, getUpgradeMessage } = require('./core/license');
15
15
  const { formatHTMLReport, normalizeConfigFindings, normalizeBundleFindings, failHint } = require('./core/report');
16
16
 
17
- const VERSION = '1.7.1';
17
+ const VERSION = '1.7.3';
18
18
  const PRODUCT = 'correctover-scan';
19
19
  const JS_EXT = new Set(['.js', '.mjs', '.cjs', '.ts']);
20
20
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "correctover-scan",
3
- "version": "1.7.1",
3
+ "version": "1.7.3",
4
4
  "description": "Correctover Security Scanner — CCS audit for MCP configurations AND published JS bundles/npm packages. Detects hardcoded secrets, RCE, SSRF, credential hijacking against OWASP AISVS 1.0.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
- "correctover-scan": "./index.js"
7
+ "correctover-scan": "index.js"
8
8
  },
9
9
  "scripts": {
10
10
  "test": "node test.js",
@@ -47,7 +47,7 @@
47
47
  "license": "MIT",
48
48
  "repository": {
49
49
  "type": "git",
50
- "url": "https://github.com/DSHCorrectover/correctover-scan"
50
+ "url": "git+https://github.com/DSHCorrectover/correctover-scan.git"
51
51
  },
52
52
  "homepage": "https://correctover.com/scan",
53
53
  "bugs": {