Views
No views yet
pip install pandas datasets huggingface_hub1huggingface-cli login
2# or
3hf auth logingit clone https://github.com/xashru/cti-bench.gitpython process_cti_bench_with_docs.py --username YOUR_HF_USERNAME--username: Your Hugging Face username (required)--token: Hugging Face token (optional if already logged in)--data-dir: Path to CTI-bench data directory (default: cti-bench/data)task_type field for identification1{
2 'url': str, # Source MITRE ATT&CK URL
3 'question': str, # The cybersecurity question
4 'option_a': str, # Multiple choice option A
5 'option_b': str, # Multiple choice option B
6 'option_c': str, # Multiple choice option C
7 'option_d': str, # Multiple choice option D
8 'prompt': str, # Full instruction prompt
9 'ground_truth': str, # Correct answer (A, B, C, or D)
10 'task_type': str # Always "multiple_choice_question"
11}1{
2 'url': str, # Source MITRE software URL
3 'platform': str, # Target platform (Enterprise, Mobile, etc.)
4 'description': str, # Malware/attack description
5 'prompt': str, # Full instruction with MITRE reference
6 'ground_truth': str, # MITRE technique IDs (e.g., "T1071, T1573")
7 'task_type': str # Always "attack_technique_extraction"
8}1{
2 'url': str, # CVE URL
3 'description': str, # CVE vulnerability description
4 'prompt': str, # CVSS instruction prompt
5 'cvss_vector': str, # CVSS v3.1 vector string
6 'task_type': str # Always "vulnerability_severity_prediction"
7}CTIBench: A Benchmark for Evaluating LLMs in Cyber Threat Intelligence
NeurIPS 2024
GitHub | Hugging Face
1@article{ctibench2024,
2 title={CTIBench: A Benchmark for Evaluating LLMs in Cyber Threat Intelligence},
3 author={[Authors]},
4 journal={NeurIPS 2024},
5 year={2024}
6}