@scanrail/cli 0.1.4 → 0.2.1
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 +2 -2
- package/package.json +9 -7
package/README.md
CHANGED
|
@@ -24,11 +24,11 @@ npx scanrail doctor
|
|
|
24
24
|
## First Scan
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
scanrail init --non-interactive --project-name demo --target https://example.com
|
|
27
|
+
scanrail init --non-interactive --project-name demo --target https://example.com --openapi ./openapi.yaml
|
|
28
28
|
scanrail run --profile quick
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
The current MVP includes the CLI scaffold, config generation, workspace setup, JSON/HTML reporting,
|
|
31
|
+
The current MVP includes the CLI scaffold, config generation, workspace setup, JSON/HTML reporting, native security headers, TLS certificate, and local OpenAPI baseline scanners, and a Docker-backed Gitleaks secrets adapter. Use `scanrail run --only headers`, `scanrail run --only tls`, or `scanrail run --only openapi` without Docker, or `scanrail run --only gitleaks` for the secrets scan only. Trivy and Semgrep adapters are planned.
|
|
32
32
|
|
|
33
33
|
## MCP
|
|
34
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scanrail/cli",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Developer-first security scan orchestrator",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"README.md"
|
|
21
21
|
],
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@scanrail/cli-darwin-arm64": "0.1
|
|
24
|
-
"@scanrail/cli-darwin-x64": "0.1
|
|
25
|
-
"@scanrail/cli-linux-arm64": "0.1
|
|
26
|
-
"@scanrail/cli-linux-x64": "0.1
|
|
27
|
-
"@scanrail/cli-win32-arm64": "0.1
|
|
28
|
-
"@scanrail/cli-win32-x64": "0.1
|
|
23
|
+
"@scanrail/cli-darwin-arm64": "0.2.1",
|
|
24
|
+
"@scanrail/cli-darwin-x64": "0.2.1",
|
|
25
|
+
"@scanrail/cli-linux-arm64": "0.2.1",
|
|
26
|
+
"@scanrail/cli-linux-x64": "0.2.1",
|
|
27
|
+
"@scanrail/cli-win32-arm64": "0.2.1",
|
|
28
|
+
"@scanrail/cli-win32-x64": "0.2.1"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
|
@@ -36,6 +36,8 @@
|
|
|
36
36
|
"devsecops",
|
|
37
37
|
"sast",
|
|
38
38
|
"dast",
|
|
39
|
+
"tls",
|
|
40
|
+
"certificate",
|
|
39
41
|
"semgrep",
|
|
40
42
|
"trivy",
|
|
41
43
|
"gitleaks",
|