nsauditor-ai 0.1.23 → 0.1.25
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 +5 -4
- package/cli.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ NSAuditor AI is the open-source core of a privacy-first security intelligence pl
|
|
|
21
21
|
Scan → Verify → Prioritize → Track → Act
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
- **
|
|
24
|
+
- **27 scanner plugins** probe networks across ICMP, TCP, UDP, HTTP, TLS, SNMP, DNS, SMB, RPC, mDNS, UPnP, WS-Discovery, MCP (Model Context Protocol), and more
|
|
25
25
|
- **Smart result fusion** — the Result Concluder merges all plugin outputs into a normalized view with OS detection, service fingerprinting, and evidence linking
|
|
26
26
|
- **Structured finding format** — all findings use a common schema with category, severity, evidence, and remediation — enabling consistent SARIF export and MCP integration
|
|
27
27
|
- **AI-powered analysis** — send redacted scan results to OpenAI or Claude (your keys, your choice) for vulnerability assessments and remediation guidance
|
|
@@ -36,7 +36,7 @@ NSAuditor AI is available in three editions:
|
|
|
36
36
|
|
|
37
37
|
| | Community (Free) | Pro ($49/mo) | Enterprise ($2k+/yr) |
|
|
38
38
|
|---|:---:|:---:|:---:|
|
|
39
|
-
|
|
|
39
|
+
| 27 scanner plugins | ✅ | ✅ | ✅ |
|
|
40
40
|
| AI analysis (OpenAI, Claude, Ollama) | ✅ (basic prompts) | ✅ (enriched) | ✅ (enriched) |
|
|
41
41
|
| Structured finding format | ✅ | ✅ | ✅ |
|
|
42
42
|
| CTEM watch mode | ✅ | ✅ | ✅ |
|
|
@@ -144,6 +144,7 @@ Results land in `./out/<host>_<timestamp>/`:
|
|
|
144
144
|
| 040 | TLS Certificate & Cipher Auditor | TCP:443+ | Cert expiry, chain integrity, hostname mismatch, weak ciphers, deprecated protocols, key strength |
|
|
145
145
|
| 050 | TRIBE v2 Neural API Security Probe | TCP/HTTP:8080 | Debug leak detection, stack traces in errors, header security, CORS misconfiguration, unauthenticated routes |
|
|
146
146
|
| 060 | DNS Security Auditor | DNS/UDP:53 | SPF/DKIM/DMARC, dangling CNAMEs, DNSSEC, NS delegation, zone transfer exposure, MX security, CAA records |
|
|
147
|
+
| 070 | MCP Scanner | TCP/HTTP+SSE | Detects MCP (Model Context Protocol) servers on candidate ports (1967, 3000, 3005, 5173, 6274, 6277, 8000, 8090). Audits for cleartext transport (HTTP not HTTPS), missing/anonymous auth, anonymous tool enumeration, deprecated protocol versions, and Inspector exposure on non-loopback. Maps findings to CWE/OWASP/MITRE per the FindingSchema. STDIO-transport MCP servers are out of scope (no network port). |
|
|
147
148
|
|
|
148
149
|
### Discovery Plugins
|
|
149
150
|
|
|
@@ -197,7 +198,7 @@ NSAuditor AI supports three AI providers for vulnerability analysis. **All provi
|
|
|
197
198
|
# .env
|
|
198
199
|
AI_PROVIDER=claude
|
|
199
200
|
ANTHROPIC_API_KEY=sk-ant-... # Your key — never sent to Nsasoft
|
|
200
|
-
ANTHROPIC_MODEL=claude-sonnet-4-
|
|
201
|
+
ANTHROPIC_MODEL=claude-sonnet-4-6
|
|
201
202
|
OPENAI_PROMPT_MODE=optimized
|
|
202
203
|
OPENAI_REDACT=true
|
|
203
204
|
```
|
|
@@ -443,7 +444,7 @@ AI_PROVIDER=openai # openai | claude | ollama
|
|
|
443
444
|
OPENAI_API_KEY=sk-... # Your OpenAI key
|
|
444
445
|
OPENAI_MODEL=gpt-4o-mini
|
|
445
446
|
ANTHROPIC_API_KEY=sk-ant-... # Your Claude key
|
|
446
|
-
ANTHROPIC_MODEL=claude-sonnet-4-
|
|
447
|
+
ANTHROPIC_MODEL=claude-sonnet-4-6
|
|
447
448
|
OPENAI_PROMPT_MODE=optimized # basic | pro | optimized
|
|
448
449
|
OPENAI_REDACT=true # Redact before sending to AI
|
|
449
450
|
CONFIDENTIAL_KEYWORDS=serial,password,token,secret
|
package/cli.mjs
CHANGED
|
@@ -96,7 +96,7 @@ async function maybeSendToOpenAI({ host, results, conclusion, promptMode = 'basi
|
|
|
96
96
|
const redactEnabled = parseBool(process.env.OPENAI_REDACT, true);
|
|
97
97
|
const aiProvider = (process.env.AI_PROVIDER || 'openai').toLowerCase().trim();
|
|
98
98
|
const model = aiProvider === 'claude'
|
|
99
|
-
? toCleanPath(process.env.ANTHROPIC_MODEL || 'claude-sonnet-4-
|
|
99
|
+
? toCleanPath(process.env.ANTHROPIC_MODEL || 'claude-sonnet-4-6')
|
|
100
100
|
: aiProvider === 'ollama'
|
|
101
101
|
? toCleanPath(process.env.OLLAMA_MODEL || 'llama3')
|
|
102
102
|
: toCleanPath(process.env.OPENAI_MODEL || 'gpt-4o-mini');
|