vulkro catalogue
Export a contributor, module, or endpoint catalogue as CSV. Handy for spreadsheets, inventory reviews, and hand-off documents.
Usage
vulkro catalogue [PATH] --target endpoints -o endpoints.csv
| Argument | Description | Default |
|---|---|---|
PATH | Path to the project root. | . |
Flags
| Flag | Description |
|---|---|
--target <TARGET> | What to export: endpoints (default), findings, or contributors. |
--output, -o <OUTPUT> | Write to a file instead of stdout. |
Examples
# Endpoint inventory as CSV.
vulkro catalogue . --target endpoints -o endpoints.csv
# Findings as CSV for a spreadsheet triage.
vulkro catalogue . --target findings -o findings.csv
Related
vulkro contributors- ownership analytics.vulkro discover- the endpoint map.vulkro graph- the module dependency graph.
Command reference
Generated from vulkro help catalogue on vulkro 0.26.0. This block is the
authoritative flag, usage, and exit-code reference for this command; the
prose above is the friendly explanation. Do not edit this block by hand;
run npm run docs:cli after a release.
[Pro] Export contributors, modules and endpoints as CSV.
[Pro] Export contributor / module / endpoint catalogue as CSV. CSV is an evidence format, so every target needs the same `evidence-formats` entitlement as `scan --format csv`; `--target contributors` also needs the `hotspots` entitlement that `vulkro contributors` requires.
`--target findings` exports the same finding set `vulkro scan` shows; pass `--all-confidence` for the unfiltered finding set.
Exit code: 0 CSV written (to stdout or `--output`), 1 the entitlement is missing, 2 scan / IO error.
Usage: vulkro catalogue [OPTIONS] [PATH]
Arguments:
[PATH]
[default: .]
Options:
--offline
Hard-disable every outbound network call for this run (sets VULKRO_OFFLINE=1). Blocks the CVE feed, the license heartbeat, the update check, webhooks, and any cloud AI endpoint; a loopback model (http://127.0.0.1, http://localhost) is still allowed. Equivalent to exporting VULKRO_OFFLINE=1, and the flag wins when both are set
--target <TARGET>
What to export: endpoints | findings | contributors
[default: endpoints]
[possible values: endpoints, findings, contributors]
--all-confidence
Export every finding instead of the set `vulkro scan` shows by default (`--target findings` only)
-o, --output <OUTPUT>
Write to file instead of stdout
-h, --help
Print help (see a summary with '-h')