| ---
|
| license: mit
|
| configs:
|
| - config_name: default
|
| data_files:
|
| - split: cve
|
| path: data/cve-*
|
| ---
|
|
|
| ## Data Instances
|
|
|
| ```
|
| instance_id: (str) - A unique identifier for the instance
|
| repo: (str) - The repository name including the owner
|
| base_commit: (str) - The base commit hash where the reproduction is tested
|
| date: (timestamp) - The date of the commit
|
| project_name: (str) - The name of the project without owner
|
| lang: (str) - The programming language of the repository
|
| dockerfile: (str) - Dockerfile content
|
| build_sh: (str) - Build script content
|
| work_dir: (str) - Working directory path
|
| sanitizer: (str) - The type of sanitizer used for testing (e.g., Address, Memory, Undefined)
|
| bug_description: (str) - Detailed description of the vulnerability
|
| additional_files: (list[str]) - List of additional files related to the instance for building a Docker image
|
| candidate_fixes: (list[str]) - List of potential code fixes or patches for the identified vulnerability
|
| ```
|
|
|