--- license: cc0-1.0 language: - en tags: - binaries - cve - vulnerability - cross-build - binary-analysis - reverse-engineering size_categories: - 10K/[/]/` matches the `binaries.path` column. ELF binaries are stripped of symbols; for PE binaries the matching PDBs are held separately and referenced by the `pdbs` table. | | `deephistory.duckdb.tar.zst` | DuckDB database with all metadata. Tables: `binaries`, `functions`, `pdbs`, `rvas`, `lines`, `cve_binary_function`. | ## Loading ```bash # stream-extract directly (no intermediate .tar on disk) tar -I zstd -xf binaries.tar.zst tar -I zstd -xf deephistory.duckdb.tar.zst ``` ```python import duckdb con = duckdb.connect("deephistory.duckdb", read_only=True) # every build that contains the vulnerable functions for a given CVE con.execute(""" SELECT b.path, b.platform, b.optimization, b.toolset_version, b.package_name, b.version, c.function_name FROM cve_binary_function c JOIN binaries b ON b.id = c.binary_id WHERE c.cve_id = 'CVE-2013-0340' """).fetchall() ``` ## License CC0-1.0. Underlying source projects retain their original upstream licenses; per-binary license information is in `binaries.license`.