vigile-scan 0.2.4 → 0.2.5
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 +18 -17
- package/dist/index.js +413 -95
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,30 +11,30 @@
|
|
|
11
11
|
npx vigile-scan
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
That's it. No install, no config. Vigile discovers your MCP server configurations and agent skill files, scans them against
|
|
14
|
+
That's it. No install, no config. Vigile discovers your MCP server configurations and agent skill files, scans them against 54 detection rules, and gives you a trust score for each one.
|
|
15
15
|
|
|
16
16
|
## What It Detects
|
|
17
17
|
|
|
18
|
-
### MCP Server Threats (
|
|
18
|
+
### MCP Server Threats (22 patterns + 5 inline checks)
|
|
19
19
|
|
|
20
20
|
| ID | Category | What It Catches |
|
|
21
21
|
|----|----------|-----------------|
|
|
22
|
-
| TP-001–
|
|
23
|
-
|
|
|
24
|
-
|
|
|
25
|
-
|
|
|
26
|
-
|
|
|
22
|
+
| TP-001–008 | Tool Poisoning | Prompt overrides, hidden manipulation, cross-tool injection, whitespace hiding, system prompt references, secrecy directives |
|
|
23
|
+
| EX-001–007 | Data Exfiltration | SSH key access, AWS credentials, .env files, credential files, suspicious URLs, crypto wallet access, browser data |
|
|
24
|
+
| PM-001–004 | Permission Abuse | Code execution (eval/spawn), unrestricted filesystem, network requests, sensitive path access |
|
|
25
|
+
| OB-001–004 | Obfuscation | Base64 content, zero-width Unicode, hex-encoded strings, Unicode escapes |
|
|
26
|
+
| EV/AR/CM | Inline Checks | Sensitive env vars, security bypass flags, sensitive directory args, auto-install (npx -y), typosquatting |
|
|
27
27
|
|
|
28
28
|
### Agent Skill Threats (27 patterns)
|
|
29
29
|
|
|
30
30
|
| ID | Category | What It Catches |
|
|
31
31
|
|----|----------|-----------------|
|
|
32
|
-
| SK-001–
|
|
33
|
-
| SK-
|
|
34
|
-
| SK-
|
|
35
|
-
| SK-
|
|
36
|
-
| SK-
|
|
37
|
-
| SK-
|
|
32
|
+
| SK-001–006 | Instruction Injection | Role hijacking, instruction override, hidden markdown instructions, conditional triggers, cross-skill poisoning, invisible Unicode |
|
|
33
|
+
| SK-010–014 | Malware Delivery | Remote script piping, reverse shells, suspicious install prerequisites, encoded payloads, typosquatted packages |
|
|
34
|
+
| SK-020–023 | Stealth Operations | Silent action directives, output suppression, history/log evasion, deceptive user responses |
|
|
35
|
+
| SK-030–033 | Safety Bypass | Confirmation bypass, safety feature disable, force flags, root/sudo escalation |
|
|
36
|
+
| SK-040–043 | Persistence Abuse | Startup file modification, memory file tampering, cron jobs, git hook injection |
|
|
37
|
+
| SK-050–053 | Data Exfiltration | Credential harvesting, URL-based exfiltration, filesystem enumeration, env var dumping |
|
|
38
38
|
|
|
39
39
|
## Platforms
|
|
40
40
|
|
|
@@ -43,9 +43,10 @@ Vigile auto-discovers configurations from:
|
|
|
43
43
|
- **Claude Desktop** — `claude_desktop_config.json`
|
|
44
44
|
- **Claude Code** — `CLAUDE.md`, `.claude/` skill files
|
|
45
45
|
- **Cursor** — `.cursor/rules/*.mdc`, `.cursorrules`
|
|
46
|
-
- **GitHub Copilot** — `.github/copilot/**/*.md`
|
|
47
|
-
- **Windsurf** — `windsurf.json`
|
|
48
|
-
- **VS Code** —
|
|
46
|
+
- **GitHub Copilot** — `.github/copilot/**/*.md`, `copilot-instructions.md`
|
|
47
|
+
- **Windsurf** — `windsurf.json`, `.windsurfrules`
|
|
48
|
+
- **VS Code** — `.vscode/mcp.json`
|
|
49
|
+
- **OpenClaw** — `~/.openclaw/openclaw.json`, `openclaw.config.json`
|
|
49
50
|
|
|
50
51
|
## Usage
|
|
51
52
|
|
|
@@ -64,7 +65,7 @@ vigile-scan [options]
|
|
|
64
65
|
| `-v, --verbose` | Show detailed findings and score breakdown |
|
|
65
66
|
| `-c, --config <path>` | Path to a custom MCP config file |
|
|
66
67
|
| `-o, --output <path>` | Write results to a file |
|
|
67
|
-
| `--client <name>` | Only scan a specific client (claude-desktop, cursor, claude-code, windsurf, vscode) |
|
|
68
|
+
| `--client <name>` | Only scan a specific client (claude-desktop, cursor, claude-code, windsurf, vscode, openclaw) |
|
|
68
69
|
| `--no-upload` | Skip uploading scan results to Vigile API |
|
|
69
70
|
|
|
70
71
|
### Sentinel Runtime Monitoring (Pro)
|