blackveil-dns 2.3.5 → 2.6.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.
- package/LICENSE +2 -2
- package/README.md +2 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/stdio.js +93 -60
- package/dist/stdio.js.map +1 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -3,8 +3,8 @@ Business Source License 1.1
|
|
|
3
3
|
Parameters
|
|
4
4
|
|
|
5
5
|
Licensor: BLACKVEIL Security
|
|
6
|
-
Licensed Work: Blackveil DNS
|
|
7
|
-
The Licensed Work is (c) 2026 BLACKVEIL Security
|
|
6
|
+
Licensed Work: Blackveil DNS
|
|
7
|
+
The Licensed Work is (c) 2025-2026 BLACKVEIL Security
|
|
8
8
|
Additional Use Grant: You may make non-commercial use of the Licensed Work.
|
|
9
9
|
"Non-commercial use" means use that is not intended for
|
|
10
10
|
or directed toward commercial advantage or monetary
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Open-source DNS & email security scanner for Claude, Cursor, VS Code, and MCP cl
|
|
|
9
9
|
[](https://github.com/MadaBurns/bv-mcp/stargazers)
|
|
10
10
|
[](https://www.npmjs.com/package/blackveil-dns)
|
|
11
11
|
[](https://www.npmjs.com/package/blackveil-dns)
|
|
12
|
-
[](https://github.com/MadaBurns/bv-mcp/actions)
|
|
13
13
|
[](https://github.com/MadaBurns/bv-mcp/actions)
|
|
14
14
|
[](LICENSE)
|
|
15
15
|
[](https://modelcontextprotocol.io/)
|
|
@@ -74,6 +74,7 @@ Transport support:
|
|
|
74
74
|
- **Attack path simulation** — `simulate_attack_paths` enumerates specific paths (spoofing, takeover, hijack) with severity, steps, and mitigations
|
|
75
75
|
- **Compliance mapping** — `map_compliance` maps scan findings to NIST 800-177, PCI DSS 4.0, SOC 2, and CIS Controls
|
|
76
76
|
- **Self-tuning scoring** — adaptive weights adjust category importance based on patterns seen across scans via Durable Object telemetry
|
|
77
|
+
- **Per-tier analytics** — usage tracking by auth tier with operator API for tier summaries, key-level usage, and daily digests
|
|
77
78
|
- **Passive and read-only** — all checks use public Cloudflare DNS-over-HTTPS; no authorization required from the target
|
|
78
79
|
|
|
79
80
|
---
|
package/dist/index.d.ts
CHANGED
|
@@ -191,7 +191,7 @@ declare function sanitizeDomain(input: string): string;
|
|
|
191
191
|
declare function sanitizeInput(input: string, maxLength?: number): string;
|
|
192
192
|
|
|
193
193
|
/** Server version — keep in sync with package.json */
|
|
194
|
-
declare const SERVER_VERSION = "2.
|
|
194
|
+
declare const SERVER_VERSION = "2.6.0";
|
|
195
195
|
|
|
196
196
|
/**
|
|
197
197
|
* Map of every tool name to its Zod argument schema.
|
package/dist/index.js
CHANGED
|
@@ -571,7 +571,7 @@ function sanitizeInput(input, maxLength = 500) {
|
|
|
571
571
|
}
|
|
572
572
|
|
|
573
573
|
// src/lib/server-version.ts
|
|
574
|
-
var SERVER_VERSION = "2.
|
|
574
|
+
var SERVER_VERSION = "2.6.0";
|
|
575
575
|
var DomainSchema = z.string().min(1).max(253);
|
|
576
576
|
z.string().regex(/^[0-9a-f]{64}$/);
|
|
577
577
|
var DkimSelectorSchema = z.string().transform((s) => s.trim().toLowerCase()).pipe(z.string().max(63).regex(/^[a-z0-9]([a-z0-9-]*[a-z0-9])?$/));
|