vdb-vulns

List all known vulnerabilities for a specific package from the Vulnetix VDB with pagination support.

The vdb-vulns command lists all known vulnerabilities for a given package from the Vulnetix Vulnerability Database.

Invocation

/vulnetix:vdb-vulns <package-name> [flags]

Underlying Command

vulnetix vdb vulns $ARGUMENTS -o json

Flags

FlagTypeDefaultDescription
--limitint100Maximum number of results to return
--offsetint0Number of results to skip (for pagination)
-o, --outputstringprettyOutput format: json or pretty

Output

The command parses the JSON response and presents a table of vulnerabilities including:

  • Vulnerability ID
  • Severity
  • CVSS score
  • Affected version range
  • Fixed version
  • Description

Total count and pagination info are displayed alongside the results.

Examples

List all vulnerabilities for a package:

/vulnetix:vdb-vulns express

Limit results to 20:

/vulnetix:vdb-vulns lodash --limit 20

Paginate through results:

/vulnetix:vdb-vulns moment --offset 100