Skip to content
Novus Examples
csv448 B

Vulnerability Summary (CSV)

The four SAMPLE advisories flattened to one row each — the export a security review circulates, and the reference answer for any converter run against the Trivy, Grype or OSV reports here. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

Preview — first 6 linescsv
advisory_id,alias,package,installed_version,fixed_version,severity,cvss_base_score,cwe
NOVUS-SAMPLE-2026-0001,SAMPLE-CVE-2026-0001,example-logger,3.4.1,3.5.0,HIGH,8.1,CWE-20
NOVUS-SAMPLE-2026-0002,SAMPLE-CVE-2026-0002,example-cache,0.9.2,0.9.5,CRITICAL,9.3,CWE-502
NOVUS-SAMPLE-2026-0003,SAMPLE-CVE-2026-0003,example-yaml-lite,1.1.7,1.2.0,MEDIUM,5.4,CWE-400
NOVUS-SAMPLE-2026-0004,SAMPLE-CVE-2026-0004,example-json-path,2.0.5,2.1.0,LOW,3.1,CWE-770

Specifications

Seed
51200
Sample Only
true
Format
CSV
Columns
8
Rows
4
Delimiter
,
Line Endings
LF (documented, not RFC 4180 CRLF)

Testing contract

Reference control
Scenario
Score a scanner-report-to-CSV converter against a known answer.
Expected result
Converted output matches these four rows exactly, including the CVSS base scores 8.1, 9.3, 5.4 and 3.1.

What is a .csv file?

CSV (Comma-Separated Values) is a plain-text tabular format where rows are lines and fields are separated by commas, with quoting rules for values that contain delimiters, quotes, or newlines. It has no formal type system and depends on encoding and dialect conventions. It is the most portable format for tabular data exchange.

How to use this file

Use an example CSV to test parsers against quoting and embedded-delimiter edge cases, header handling, encoding detection, and import pipelines into databases or spreadsheets.

How to use this file for testing

“Vulnerability Summary (CSV)” is a deterministic Novus Examples fixture for CSV parsing, Data import, Conversion testing. Clean and deliberately messy CSVs — quoted commas, embedded newlines, ragged rows, odd delimiters, and encodings.

Documented properties for this file: seed 51200 · 4 rows · 8 columns · LF (documented, not RFC 4180 CRLF). Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

SBOM, lockfile, provenance, and advisory fixtures describe the same fabricated component tree across formats, so a converter or scanner can be diffed against a known answer. Every package name, version, hash, and advisory ID is invented — never treat a finding here as real.

Feed the file to your parser and assert it handles the documented quirks — quoted delimiters, embedded newlines, ragged rows, or invalid syntax; the valid↔invalid distinction is labelled in the title.

Code examples

import pandas as pd

df = pd.read_csv("vulnerability-summary.csv")
print(df.head())
print(df.dtypes)

Generated by generation/supply_chain.py. Free for any use, no attribution required — license.