@vulcn/engine 0.3.0 → 0.3.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/CHANGELOG.md +36 -0
- package/dist/index.cjs +86 -797
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +38 -585
- package/dist/index.d.ts +38 -585
- package/dist/index.js +83 -783
- package/dist/index.js.map +1 -1
- package/package.json +38 -33
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c62a3dc: ### `@vulcn/plugin-report` — New Package
|
|
8
|
+
|
|
9
|
+
Introducing the **Report Generation Plugin** — generate professional security reports at the end of every `vulcn run`.
|
|
10
|
+
- **HTML**: Modern dark-themed dashboard with risk gauge, severity breakdown bars, expandable finding cards, Vulcn branding, Inter + JetBrains Mono typography, and print-friendly CSS
|
|
11
|
+
- **JSON**: Machine-readable structured output for CI/CD pipelines — includes severity counts, risk score, vuln types, affected URLs
|
|
12
|
+
- **YAML**: Human-readable YAML with descriptive header comment — same data model as JSON
|
|
13
|
+
- Uses the `onRunEnd` plugin hook to intercept results after execution completes
|
|
14
|
+
- Exports `generateHtml`, `generateJson`, `generateYaml` for programmatic use
|
|
15
|
+
|
|
16
|
+
### `@vulcn/engine`
|
|
17
|
+
- **Plugin lifecycle hooks**: `DriverManager.execute()` now invokes `onRunStart` and `onRunEnd` plugin hooks around the driver runner, enabling plugins like the report generator to intercept and process results
|
|
18
|
+
- Removed legacy `Runner` and `Recorder` exports — all execution now goes through `DriverManager`
|
|
19
|
+
- Updated package description and SEO keywords for npm discoverability
|
|
20
|
+
|
|
21
|
+
### `vulcn` (CLI)
|
|
22
|
+
- Added `--report <format>` flag (`html`, `json`, `yaml`, `all`) to generate security reports after test runs
|
|
23
|
+
- Added `--report-output <dir>` flag to specify output directory for generated reports
|
|
24
|
+
- Report plugin is auto-loaded when `--report` flag is used
|
|
25
|
+
- Updated package description and SEO keywords — positioned as a modern, fast alternative to legacy security scanners
|
|
26
|
+
|
|
27
|
+
### `@vulcn/driver-browser`
|
|
28
|
+
- Updated package description, keywords, homepage, and bugs URL for npm discoverability
|
|
29
|
+
|
|
30
|
+
### `@vulcn/plugin-payloads`
|
|
31
|
+
- Updated package description, keywords, homepage, and bugs URL for npm discoverability
|
|
32
|
+
|
|
33
|
+
### `@vulcn/plugin-detect-xss`
|
|
34
|
+
- Updated package description, keywords, homepage, and bugs URL for npm discoverability
|
|
35
|
+
|
|
36
|
+
### `@vulcn/plugin-detect-reflection`
|
|
37
|
+
- Updated package description, keywords, homepage, and bugs URL for npm discoverability
|
|
38
|
+
|
|
3
39
|
## 0.3.0
|
|
4
40
|
|
|
5
41
|
### Minor Changes
|