correctover-scan 1.2.1 → 1.3.0

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.
Files changed (2) hide show
  1. package/README.md +1 -22
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -82,31 +82,10 @@ Try the online version: [correctover.com/scan](https://correctover.com/scan/)
82
82
  - **OWASP AISVS 1.0** — AI System Vulnerability Severity
83
83
  - **GB/T《智能体应用安全基本要求》** — Chinese National Mandatory Standard
84
84
 
85
- ## Free Tier
86
-
87
- 50 scans/day — no credit card required.
88
-
89
- Unlock unlimited: [correctover.com/checkout](https://correctover.com/checkout)
90
-
91
- ```bash
92
- export CORRECTOVER_LICENSE_KEY=your-key-here
93
- ```
94
-
95
- ## Related Correctover Tools
96
-
97
- | Tool | Install | Description |
98
- |------|---------|-------------|
99
- | **Security Scanner** | `npx correctover-scan` | MCP config security audit (14 checks) |
100
- | **Self-Healing Test** | `pip install correctover-test` | Agent self-healing test suite |
101
- | **Vulnerability Scan** | `pip install correctover-security-audit` | 215 fault type scanner |
102
- | **Compliance Check** | `pip install correctover-compliance-check` | OAuth 2.1 + CCS v1.0 |
103
- | **Runtime Guard** | `pip install correctover-runtime-guard` | 22µs RCE/SSRF interception |
104
- | **MCP Server** | `npm install correctover-mcp-server` | 6-dimension validation |
105
-
106
85
  ## Links
107
86
 
108
87
  - [correctover.com](https://correctover.com) — AI Agent Runtime Assurance
109
- - [CCS Standard](https://correctover.com/ccs) — Conformance Specification (DOI: 10.5281/zenodo.21234580)
88
+ - [CCS Standard](https://correctover.com/ccs) — Conformance Specification
110
89
  - [Web Scanner](https://correctover.com/scan/) — Online version
111
90
  - [GitHub](https://github.com/Correctover) — Source code
112
91
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "correctover-scan",
3
- "version": "1.2.1",
4
- "description": "MCP security scanner 1 command, 14 OWASP AISVS 1.0 checks. Detect RCE, SSRF, credential exposure in your Model Context Protocol configs. Free: 50 scans/day.",
3
+ "version": "1.3.0",
4
+ "description": "CCS Security Scanner for MCP \u2014 scan Agent configs for RCE, SSRF, credential hijacking. 16 security patterns mapped to OWASP AISVS 1.0. Free 50 scans/day.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "correctover-scan": "./index.js"
@@ -24,7 +24,12 @@
24
24
  "cursor",
25
25
  "model-context-protocol",
26
26
  "vulnerability",
27
- "audit"
27
+ "audit",
28
+ "runtime-security",
29
+ "rce-detection",
30
+ "ssrf-detection",
31
+ "credential-hijacking",
32
+ "guardrail"
28
33
  ],
29
34
  "author": "Correctover",
30
35
  "license": "MIT",
@@ -45,4 +50,4 @@
45
50
  "engines": {
46
51
  "node": ">=16.0.0"
47
52
  }
48
- }
53
+ }