agent_id stringlengths 16 16 | format_version stringclasses 1
value | format_type stringclasses 1
value | system_prompt stringclasses 8
values | tools listlengths 8 8 | task dict | ground_truth dict | evaluation dict | few_shot_examples listlengths 3 3 | metadata dict | split stringclasses 3
values |
|---|---|---|---|---|---|---|---|---|---|---|
CTF-AGENT-000001 | 2.0 | agent_training_v2 | You are a CTF binary exploitation agent. Your goal is to capture the flag by exploiting binary vulnerabilities.
Follow this methodology:
1. BINARY ANALYSIS: Analyze file type, security protections (checksec), and symbols
2. VULNERABILITY IDENTIFICATION: Disassemble functions to find buffer overflows, format strings, h... | [
{
"type": "function",
"function": {
"name": "execute_python",
"description": "Execute Python code for computation",
"parameters": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Python code to execute"
... | {
"id": "TASK-000001",
"instruction": "A binary challenge awaits. Use Stack Pivot to gain code execution on the target. The binary has PIE enabled, requiring advanced bypass techniques.",
"category": "pwn",
"technique": "Stack Pivot",
"cwe": "CWE-121",
"difficulty": "insane",
"points": 542,
"challenge_n... | {
"flag": "flag{sh3ll3d_15#}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "check_binary_security",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "send_payload",
"description": "Apply Stack Pivot technique"
}... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 50,
"success_criteria": "flag_found_tool_called",
"partial_credit": false,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Original",
"author": "s3cur1ty_r3s34rch3r",
"created_at": "2025-04-22T02:36:00",
"tags": [
"pwn",
"insane",
"Stack Pivot",
"buffer-overflow"
],
"solved_count": 43
} | test |
CTF-AGENT-000002 | 2.0 | agent_training_v2 | You are a CTF binary exploitation agent. Your goal is to capture the flag by exploiting binary vulnerabilities.
Follow this methodology:
1. BINARY ANALYSIS: Analyze file type, security protections (checksec), and symbols
2. VULNERABILITY IDENTIFICATION: Disassemble functions to find buffer overflows, format strings, h... | [
{
"type": "function",
"function": {
"name": "disassemble_function",
"description": "Disassemble a specific function",
"parameters": {
"type": "object",
"properties": {
"binary_path": {
"type": "string"
},
"function_name": {
... | {
"id": "TASK-000002",
"instruction": "Mission: Exploit a binary service to capture the flag. The binary at the remote host is vulnerable to House of Orange. Analyze the binary's protections, reverse engineer the vulnerability, and craft an exploit to read the flag from the remote filesystem.",
"category": "pwn",... | {
"flag": "flag{1s_bin_4442}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "check_binary_security",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "disassemble_function",
"description": "Apply House of Orange tech... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 35,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "CTF-inspired",
"author": "s3cur1ty_r3s34rch3r",
"created_at": "2025-04-04T05:44:00",
"tags": [
"pwn",
"hard",
"House of Orange",
"sandbox-escape"
],
"solved_count": 204
} | validation |
CTF-AGENT-000003 | 2.0 | agent_training_v2 | You are a CTF cryptanalysis agent. Your goal is to capture the flag by breaking cryptographic implementations.
Follow this methodology:
1. ALGORITHM IDENTIFICATION: Determine cipher type from ciphertext characteristics
2. KEY RECOVERY: Use known attacks (brute force, frequency analysis, factorization, oracle)
3. DECRY... | [
{
"type": "function",
"function": {
"name": "execute_python",
"description": "Execute Python code for computation",
"parameters": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Python code to execute"
... | {
"id": "TASK-000003",
"instruction": "Break this crypto implementation. The ciphertext was generated with a flawed implementation of RSA (Wiener). Recover the key or directly decrypt to reveal the flag.",
"category": "crypto",
"technique": "RSA (Wiener)",
"cwe": "CWE-326",
"difficulty": "medium",
"points... | {
"flag": "flag{94eb375102183845c233dd06}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "identify_cipher",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "padding_oracle_decrypt",
"description": "Apply RSA (Wiener... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.5,
"reward_correct_tool": 0.1,
"max_steps": 20,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "HackTheBox style",
"author": "wh1t3_h4t",
"created_at": "2025-01-15T03:47:00",
"tags": [
"crypto",
"medium",
"RSA (Wiener)",
"cryptography"
],
"solved_count": 1073
} | train |
CTF-AGENT-000004 | 2.0 | agent_training_v2 | You are a CTF reverse engineering agent. Your goal is to capture the flag by analyzing and understanding binary code.
Follow this methodology:
1. INITIAL ANALYSIS: File type detection, strings extraction, and high-level inspection
2. STATIC ANALYSIS: Decompile binaries to understand the algorithm
3. DYNAMIC ANALYSIS: ... | [
{
"type": "function",
"function": {
"name": "search_web",
"description": "Search the web for information",
"parameters": {
"type": "object",
"properties": {
"query": {
"type": "string"
},
"source": {
"type": "string",
... | {
"id": "TASK-000004",
"instruction": "The flag is hidden inside this binary. Use Python Bytecode RE to understand the protection mechanism and extract the hidden data. The binary uses packers (UPX).",
"category": "rev",
"technique": "Python Bytecode RE",
"cwe": "CWE-200",
"difficulty": "hard",
"points": ... | {
"flag": "flag{h4rd3r_k3y_3745}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "analyze_file",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "dynamic_trace",
"description": "Apply Python Bytecode RE technique"
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 35,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Original",
"author": "r00tk1t",
"created_at": "2025-01-18T15:30:00",
"tags": [
"rev",
"hard",
"Python Bytecode RE"
],
"solved_count": 62
} | validation |
CTF-AGENT-000005 | 2.0 | agent_training_v2 | You are a CTF digital forensics agent. Your goal is to capture the flag by analyzing forensic artifacts.
Follow this methodology:
1. EVIDENCE ACQUISITION: Identify file types and extract basic metadata
2. DEEP SCAN: Carve files, analyze PCAPs, dump memory
3. CORRELATION: Cross-reference timestamps, processes, network ... | [
{
"type": "function",
"function": {
"name": "execute_python",
"description": "Execute Python code for computation",
"parameters": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Python code to execute"
... | {
"id": "TASK-000005",
"instruction": "A security incident occurred. Analyze the forensic artifacts using NTFS Alt Streams to reconstruct the attack timeline and recover the flag left behind by the attacker.",
"category": "forensics",
"technique": "NTFS Alt Streams",
"cwe": "CWE-200",
"difficulty": "hard",
... | {
"flag": "flag{b3tt3r_bin_2525}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "analyze_file_type",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "volatility_analyze",
"description": "Apply NTFS Alt Streams techn... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 35,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "c4ptur3",
"created_at": "2025-05-25T15:18:00",
"tags": [
"forensics",
"hard",
"NTFS Alt Streams"
],
"solved_count": 227
} | validation |
CTF-AGENT-000006 | 2.0 | agent_training_v2 | You are a CTF steganography agent. Your goal is to capture the flag hidden in media files.
Follow this methodology:
1. FILE ANALYSIS: Check file type, size anomalies, and metadata
2. STEGO DETECTION: Test for LSB, spectrogram, chunk analysis, and known tools
3. DATA EXTRACTION: Extract hidden data using appropriate te... | [
{
"type": "function",
"function": {
"name": "steghide_extract",
"description": "Extract hidden data with steghide",
"parameters": {
"type": "object",
"properties": {
"file_path": {
"type": "string"
},
"password": {
"type... | {
"id": "TASK-000006",
"instruction": "Find the hidden message in this media file using Histogram Analysis. The flag is concealed using steganography techniques. Apply appropriate detection and extraction methods to recover it.",
"category": "stego",
"technique": "Histogram Analysis",
"cwe": "CWE-200",
"dif... | {
"flag": "flag{8957c4cfb808379e43902294b829c1e9}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "extract_exif",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "steghide_extract",
"description": "Apply Histogram An... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.5,
"reward_correct_tool": 0.1,
"max_steps": 20,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Original",
"author": "wh1t3_h4t",
"created_at": "2025-06-22T16:38:00",
"tags": [
"stego",
"medium",
"Histogram Analysis"
],
"solved_count": 1475
} | train |
CTF-AGENT-000007 | 2.0 | agent_training_v2 | You are a CTF binary exploitation agent. Your goal is to capture the flag by exploiting binary vulnerabilities.
Follow this methodology:
1. BINARY ANALYSIS: Analyze file type, security protections (checksec), and symbols
2. VULNERABILITY IDENTIFICATION: Disassemble functions to find buffer overflows, format strings, h... | [
{
"type": "function",
"function": {
"name": "send_payload",
"description": "Send exploit payload to remote target",
"parameters": {
"type": "object",
"properties": {
"host": {
"type": "string"
},
"port": {
"type": "integ... | {
"id": "TASK-000007",
"instruction": "A binary challenge awaits. Use Dirty Pipe (CVE-2022-0847) to gain code execution on the target. The binary has stack canaries enabled, requiring advanced bypass techniques.",
"category": "pwn",
"technique": "Dirty Pipe (CVE-2022-0847)",
"cwe": "CWE-59",
"difficulty": "... | {
"flag": "flag{c5ccb5fb6af6235297497afdd0}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "check_binary_security",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "send_payload",
"description": "Apply Dirty Pipe (C... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.5,
"reward_correct_tool": 0.1,
"max_steps": 20,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "s3cur1ty_r3s34rch3r",
"created_at": "2025-11-17T13:33:00",
"tags": [
"pwn",
"medium",
"Dirty Pipe (CVE-2022",
"sandbox-escape"
],
"solved_count": 594
} | train |
CTF-AGENT-000008 | 2.0 | agent_training_v2 | You are a CTF binary exploitation agent. Your goal is to capture the flag by exploiting binary vulnerabilities.
Follow this methodology:
1. BINARY ANALYSIS: Analyze file type, security protections (checksec), and symbols
2. VULNERABILITY IDENTIFICATION: Disassemble functions to find buffer overflows, format strings, h... | [
{
"type": "function",
"function": {
"name": "disassemble_function",
"description": "Disassemble a specific function",
"parameters": {
"type": "object",
"properties": {
"binary_path": {
"type": "string"
},
"function_name": {
... | {
"id": "TASK-000008",
"instruction": "Mission: Exploit a binary service to capture the flag. The binary at the remote host is vulnerable to Canary Bypass (Leak). Analyze the binary's protections, reverse engineer the vulnerability, and craft an exploit to read the flag from the remote filesystem.",
"category": "... | {
"flag": "flag{h4ck_th3_w0rld6117}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "check_binary_security",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "disassemble_function",
"description": "Apply Canary Bypass... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 1,
"reward_correct_tool": 0.1,
"max_steps": 10,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": false
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "HackTheBox style",
"author": "h4ck3rm4n",
"created_at": "2025-03-28T08:55:00",
"tags": [
"pwn",
"easy",
"Canary Bypass (Leak)"
],
"solved_count": 2489
} | train |
CTF-AGENT-000009 | 2.0 | agent_training_v2 | You are a CTF reverse engineering agent. Your goal is to capture the flag by analyzing and understanding binary code.
Follow this methodology:
1. INITIAL ANALYSIS: File type detection, strings extraction, and high-level inspection
2. STATIC ANALYSIS: Decompile binaries to understand the algorithm
3. DYNAMIC ANALYSIS: ... | [
{
"type": "function",
"function": {
"name": "execute_python",
"description": "Execute Python code for computation",
"parameters": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Python code to execute"
... | {
"id": "TASK-000009",
"instruction": "Reverse engineer this medium binary to recover the flag. The binary implements a Anti-Debug Bypass-based validation routine. Analyze the algorithm, reverse the operations, and compute the correct input that produces the flag.",
"category": "rev",
"technique": "Anti-Debug B... | {
"flag": "flag{60f828aff57b287785972edafba9c0}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "analyze_file",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "solve_z3",
"description": "Apply Anti-Debug Bypass tech... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.5,
"reward_correct_tool": 0.1,
"max_steps": 20,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "c4ptur3",
"created_at": "2025-11-23T17:07:00",
"tags": [
"rev",
"medium",
"Anti-Debug Bypass"
],
"solved_count": 337
} | train |
CTF-AGENT-000010 | 2.0 | agent_training_v2 | You are a CTF cryptanalysis agent. Your goal is to capture the flag by breaking cryptographic implementations.
Follow this methodology:
1. ALGORITHM IDENTIFICATION: Determine cipher type from ciphertext characteristics
2. KEY RECOVERY: Use known attacks (brute force, frequency analysis, factorization, oracle)
3. DECRY... | [
{
"type": "function",
"function": {
"name": "flag_found",
"description": "Submit the discovered flag",
"parameters": {
"type": "object",
"properties": {
"flag": {
"type": "string",
"description": "The captured flag"
}
},
... | {
"id": "TASK-000010",
"instruction": "Cryptographic challenge: Decrypt the ciphertext using PRNG Seed Recovery. The encryption scheme has a known weakness that allows key recovery or plaintext extraction without the key. Apply the appropriate cryptanalysis technique.",
"category": "crypto",
"technique": "PRNG ... | {
"flag": "flag{h4ck3d8253}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "identify_cipher",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "brute_xor",
"description": "Apply PRNG Seed Recovery technique"
},
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 1,
"reward_correct_tool": 0.1,
"max_steps": 10,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": false
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "c4ptur3",
"created_at": "2025-01-01T16:51:00",
"tags": [
"crypto",
"easy",
"PRNG Seed Recovery",
"cryptography"
],
"solved_count": 1181
} | train |
CTF-AGENT-000011 | 2.0 | agent_training_v2 | You are a CTF binary exploitation agent. Your goal is to capture the flag by exploiting binary vulnerabilities.
Follow this methodology:
1. BINARY ANALYSIS: Analyze file type, security protections (checksec), and symbols
2. VULNERABILITY IDENTIFICATION: Disassemble functions to find buffer overflows, format strings, h... | [
{
"type": "function",
"function": {
"name": "disassemble_function",
"description": "Disassemble a specific function",
"parameters": {
"type": "object",
"properties": {
"binary_path": {
"type": "string"
},
"function_name": {
... | {
"id": "TASK-000011",
"instruction": "Mission: Exploit a binary service to capture the flag. The binary at the remote host is vulnerable to Dirty Pipe (CVE-2022-0847). Analyze the binary's protections, reverse engineer the vulnerability, and craft an exploit to read the flag from the remote filesystem.",
"catego... | {
"flag": "flag{89c9aa5e29124635}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "check_binary_security",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "disassemble_function",
"description": "Apply Dirty Pipe (CVE... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.5,
"reward_correct_tool": 0.1,
"max_steps": 20,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "CTF-inspired",
"author": "h4ck3rm4n",
"created_at": "2025-01-05T20:16:00",
"tags": [
"pwn",
"medium",
"Dirty Pipe (CVE-2022"
],
"solved_count": 650
} | train |
CTF-AGENT-000012 | 2.0 | agent_training_v2 | You are a CTF web exploitation agent. Your goal is to capture the flag by identifying and exploiting web vulnerabilities.
Follow this methodology:
1. RECONNAISSANCE: Identify server technology, endpoints, parameters, and authentication mechanisms
2. VULNERABILITY SCANNING: Test for SQL injection, XSS, SSTI, LFI, SSRF,... | [
{
"type": "function",
"function": {
"name": "analyze_strings",
"description": "Extract strings from data/file",
"parameters": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"min_length": {
"type": "int... | {
"id": "TASK-000012",
"instruction": "Task: Capture the flag from a medium web application vulnerable to File Upload Bypass. The flag is stored in the admin-only endpoint. Bypass security controls using File Upload Bypass to access it.",
"category": "web",
"technique": "File Upload Bypass",
"cwe": "CWE-434",... | {
"flag": "flag{71b99d6050f04eceba73aadffa0e}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "curl_request",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "sql_inject",
"description": "Apply File Upload Bypass tec... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.5,
"reward_correct_tool": 0.1,
"max_steps": 20,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "HackTheBox style",
"author": "wh1t3_h4t",
"created_at": "2025-04-01T06:24:00",
"tags": [
"web",
"medium",
"File Upload Bypass",
"sqli"
],
"solved_count": 342
} | train |
CTF-AGENT-000013 | 2.0 | agent_training_v2 | You are a CTF OSINT agent. Your goal is to capture the flag by gathering and analyzing publicly available information.
Follow this methodology:
1. DOMAIN RECON: WHOIS, DNS enumeration, subdomain discovery
2. TECHNICAL OSINT: Certificate transparency, Shodan, GitHub repositories
3. SOCIAL OSINT: Social media, image met... | [
{
"type": "function",
"function": {
"name": "flag_found",
"description": "Submit the discovered flag",
"parameters": {
"type": "object",
"properties": {
"flag": {
"type": "string",
"description": "The captured flag"
}
},
... | {
"id": "TASK-000013",
"instruction": "The flag is out there in the open. Use Social Links techniques to find it. The target may have left traces across public datasets.",
"category": "osint",
"technique": "Social Links",
"cwe": "CWE-200",
"difficulty": "hard",
"points": 406,
"challenge_name": "LinkedIn... | {
"flag": "flag{h4rd3r_k3y_4548}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "dns_lookup",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "reverse_image_search",
"description": "Apply Social Links technique"
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 35,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "h4ck3rm4n",
"created_at": "2025-04-07T15:54:00",
"tags": [
"osint",
"hard",
"Social Links",
"recon"
],
"solved_count": 189
} | validation |
CTF-AGENT-000014 | 2.0 | agent_training_v2 | You are a CTF cryptanalysis agent. Your goal is to capture the flag by breaking cryptographic implementations.
Follow this methodology:
1. ALGORITHM IDENTIFICATION: Determine cipher type from ciphertext characteristics
2. KEY RECOVERY: Use known attacks (brute force, frequency analysis, factorization, oracle)
3. DECRY... | [
{
"type": "function",
"function": {
"name": "factor_integer",
"description": "Factor integer using various methods",
"parameters": {
"type": "object",
"properties": {
"n": {
"type": "string",
"description": "Integer to factor (decimal strin... | {
"id": "TASK-000014",
"instruction": "Cryptographic challenge: Decrypt the ciphertext using Feistel Cipher RE. The encryption scheme has a known weakness that allows key recovery or plaintext extraction without the key. Apply the appropriate cryptanalysis technique.",
"category": "crypto",
"technique": "Feiste... | {
"flag": "flag{30c85cf5d659afc566e0}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "identify_cipher",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "factor_integer",
"description": "Apply Feistel Cipher RE techn... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.5,
"reward_correct_tool": 0.1,
"max_steps": 20,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Original",
"author": "wh1t3_h4t",
"created_at": "2025-03-21T04:43:00",
"tags": [
"crypto",
"medium",
"Feistel Cipher RE"
],
"solved_count": 1641
} | train |
CTF-AGENT-000015 | 2.0 | agent_training_v2 | You are a CTF web exploitation agent. Your goal is to capture the flag by identifying and exploiting web vulnerabilities.
Follow this methodology:
1. RECONNAISSANCE: Identify server technology, endpoints, parameters, and authentication mechanisms
2. VULNERABILITY SCANNING: Test for SQL injection, XSS, SSTI, LFI, SSRF,... | [
{
"type": "function",
"function": {
"name": "decode_jwt",
"description": "Decode and analyze a JWT token",
"parameters": {
"type": "object",
"properties": {
"token": {
"type": "string",
"description": "JWT token string"
},
... | {
"id": "TASK-000015",
"instruction": "A web application is running with a known DomClobbering vulnerability. Perform recon, identify the injectable parameter, and exploit it to retrieve the flag. The target is protected by session cookies.",
"category": "web",
"technique": "DomClobbering",
"cwe": "CWE-79",
... | {
"flag": "flag{cr4ck_h4sh_751}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "curl_request",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "decode_jwt",
"description": "Apply DomClobbering technique"
},
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 35,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Original",
"author": "wh1t3_h4t",
"created_at": "2025-08-13T02:52:00",
"tags": [
"web",
"hard",
"DomClobbering"
],
"solved_count": 453
} | validation |
CTF-AGENT-000016 | 2.0 | agent_training_v2 | You are a CTF OSINT agent. Your goal is to capture the flag by gathering and analyzing publicly available information.
Follow this methodology:
1. DOMAIN RECON: WHOIS, DNS enumeration, subdomain discovery
2. TECHNICAL OSINT: Certificate transparency, Shodan, GitHub repositories
3. SOCIAL OSINT: Social media, image met... | [
{
"type": "function",
"function": {
"name": "subdomain_enum",
"description": "Enumerate subdomains",
"parameters": {
"type": "object",
"properties": {
"domain": {
"type": "string"
},
"method": {
"type": "string",
... | {
"id": "TASK-000016",
"instruction": "Conduct an OSINT investigation to locate the flag. Use Phone OSINT to gather intelligence. The flag is hidden somewhere in publicly available information about the target. Follow the digital trail.",
"category": "osint",
"technique": "Phone OSINT",
"cwe": "CWE-200",
"d... | {
"flag": "flag{sh3ll3d_72?}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "dns_lookup",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "subdomain_enum",
"description": "Apply Phone OSINT technique"
},
{
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 50,
"success_criteria": "flag_found_tool_called",
"partial_credit": false,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "s3cur1ty_r3s34rch3r",
"created_at": "2025-11-15T10:57:00",
"tags": [
"osint",
"insane",
"Phone OSINT"
],
"solved_count": 64
} | test |
CTF-AGENT-000017 | 2.0 | agent_training_v2 | You are a CTF cryptanalysis agent. Your goal is to capture the flag by breaking cryptographic implementations.
Follow this methodology:
1. ALGORITHM IDENTIFICATION: Determine cipher type from ciphertext characteristics
2. KEY RECOVERY: Use known attacks (brute force, frequency analysis, factorization, oracle)
3. DECRY... | [
{
"type": "function",
"function": {
"name": "identify_cipher",
"description": "Identify type of cipher/ciphertext",
"parameters": {
"type": "object",
"properties": {
"ciphertext": {
"type": "string"
},
"hint": {
"type": ... | {
"id": "TASK-000017",
"instruction": "Break this crypto implementation. The ciphertext was generated with a flawed implementation of ECDSA Nonce Reuse. Recover the key or directly decrypt to reveal the flag.",
"category": "crypto",
"technique": "ECDSA Nonce Reuse",
"cwe": "CWE-326",
"difficulty": "easy",
... | {
"flag": "flag{0v3rfl0w1444}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "identify_cipher",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "factor_integer",
"description": "Apply ECDSA Nonce Reuse technique"
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 1,
"reward_correct_tool": 0.1,
"max_steps": 10,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": false
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "CTF-inspired",
"author": "r00tk1t",
"created_at": "2025-07-19T20:49:00",
"tags": [
"crypto",
"easy",
"ECDSA Nonce Reuse",
"cryptography"
],
"solved_count": 1139
} | train |
CTF-AGENT-000018 | 2.0 | agent_training_v2 | You are a CTF binary exploitation agent. Your goal is to capture the flag by exploiting binary vulnerabilities.
Follow this methodology:
1. BINARY ANALYSIS: Analyze file type, security protections (checksec), and symbols
2. VULNERABILITY IDENTIFICATION: Disassemble functions to find buffer overflows, format strings, h... | [
{
"type": "function",
"function": {
"name": "analyze_strings",
"description": "Extract strings from data/file",
"parameters": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"min_length": {
"type": "int... | {
"id": "TASK-000018",
"instruction": "A binary challenge awaits. Use Stack Pivot to gain code execution on the target. The binary has full RELRO enabled, requiring advanced bypass techniques.",
"category": "pwn",
"technique": "Stack Pivot",
"cwe": "CWE-121",
"difficulty": "easy",
"points": 143,
"challe... | {
"flag": "flag{w1n8117}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "check_binary_security",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "disassemble_function",
"description": "Apply Stack Pivot technique"
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 1,
"reward_correct_tool": 0.1,
"max_steps": 10,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": false
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Original",
"author": "wh1t3_h4t",
"created_at": "2025-06-17T12:34:00",
"tags": [
"pwn",
"easy",
"Stack Pivot",
"sandbox-escape"
],
"solved_count": 3614
} | train |
CTF-AGENT-000019 | 2.0 | agent_training_v2 | You are a CTF web exploitation agent. Your goal is to capture the flag by identifying and exploiting web vulnerabilities.
Follow this methodology:
1. RECONNAISSANCE: Identify server technology, endpoints, parameters, and authentication mechanisms
2. VULNERABILITY SCANNING: Test for SQL injection, XSS, SSTI, LFI, SSRF,... | [
{
"type": "function",
"function": {
"name": "curl_request",
"description": "Send an HTTP request to a target URL",
"parameters": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Target URL"
},
... | {
"id": "TASK-000019",
"instruction": "A web application is running with a known HTTP Request Smuggling vulnerability. Perform recon, identify the injectable parameter, and exploit it to retrieve the flag. The target is protected by session cookies.",
"category": "web",
"technique": "HTTP Request Smuggling",
... | {
"flag": "flag{60d453e840036653b26a2b589b}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "curl_request",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "sql_inject",
"description": "Apply HTTP Request Smuggling t... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.5,
"reward_correct_tool": 0.1,
"max_steps": 20,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "wh1t3_h4t",
"created_at": "2025-02-16T08:03:00",
"tags": [
"web",
"medium",
"HTTP Request Smuggli"
],
"solved_count": 1931
} | train |
CTF-AGENT-000020 | 2.0 | agent_training_v2 | You are a CTF OSINT agent. Your goal is to capture the flag by gathering and analyzing publicly available information.
Follow this methodology:
1. DOMAIN RECON: WHOIS, DNS enumeration, subdomain discovery
2. TECHNICAL OSINT: Certificate transparency, Shodan, GitHub repositories
3. SOCIAL OSINT: Social media, image met... | [
{
"type": "function",
"function": {
"name": "dns_lookup",
"description": "DNS record lookup",
"parameters": {
"type": "object",
"properties": {
"domain": {
"type": "string"
},
"record_type": {
"type": "string",
... | {
"id": "TASK-000020",
"instruction": "Conduct an OSINT investigation to locate the flag. Use GitHub Recon to gather intelligence. The flag is hidden somewhere in publicly available information about the target. Follow the digital trail.",
"category": "osint",
"technique": "GitHub Recon",
"cwe": "CWE-200",
... | {
"flag": "flag{l33t_3tc_6218}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "dns_lookup",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "whois_query",
"description": "Apply GitHub Recon technique"
},
{
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 35,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "HackTheBox style",
"author": "c4ptur3",
"created_at": "2025-05-03T15:19:00",
"tags": [
"osint",
"hard",
"GitHub Recon"
],
"solved_count": 286
} | validation |
CTF-AGENT-000021 | 2.0 | agent_training_v2 | You are a CTF web exploitation agent. Your goal is to capture the flag by identifying and exploiting web vulnerabilities.
Follow this methodology:
1. RECONNAISSANCE: Identify server technology, endpoints, parameters, and authentication mechanisms
2. VULNERABILITY SCANNING: Test for SQL injection, XSS, SSTI, LFI, SSRF,... | [
{
"type": "function",
"function": {
"name": "curl_request",
"description": "Send an HTTP request to a target URL",
"parameters": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Target URL"
},
... | {
"id": "TASK-000021",
"instruction": "A web application is running with a known Deserialization (Python) vulnerability. Perform recon, identify the injectable parameter, and exploit it to retrieve the flag. The target is protected by input sanitization that is incomplete.",
"category": "web",
"technique": "Des... | {
"flag": "flag{f0und449}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "curl_request",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "sql_inject",
"description": "Apply Deserialization (Python) technique"
},... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 1,
"reward_correct_tool": 0.1,
"max_steps": 10,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": false
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "wh1t3_h4t",
"created_at": "2025-12-13T00:14:00",
"tags": [
"web",
"easy",
"Deserialization (Pyt"
],
"solved_count": 3697
} | train |
CTF-AGENT-000022 | 2.0 | agent_training_v2 | You are a CTF OSINT agent. Your goal is to capture the flag by gathering and analyzing publicly available information.
Follow this methodology:
1. DOMAIN RECON: WHOIS, DNS enumeration, subdomain discovery
2. TECHNICAL OSINT: Certificate transparency, Shodan, GitHub repositories
3. SOCIAL OSINT: Social media, image met... | [
{
"type": "function",
"function": {
"name": "search_web",
"description": "Search the web for information",
"parameters": {
"type": "object",
"properties": {
"query": {
"type": "string"
},
"source": {
"type": "string",
... | {
"id": "TASK-000022",
"instruction": "The flag is out there in the open. Use Phone OSINT techniques to find it. The target may have left traces across certificate logs.",
"category": "osint",
"technique": "Phone OSINT",
"cwe": "CWE-200",
"difficulty": "insane",
"points": 703,
"challenge_name": "Faceboo... | {
"flag": "flag{y0l0_98%}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "dns_lookup",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "reverse_image_search",
"description": "Apply Phone OSINT technique"
},
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 50,
"success_criteria": "flag_found_tool_called",
"partial_credit": false,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "HackTheBox style",
"author": "wh1t3_h4t",
"created_at": "2025-01-19T19:40:00",
"tags": [
"osint",
"insane",
"Phone OSINT",
"recon"
],
"solved_count": 1
} | test |
CTF-AGENT-000023 | 2.0 | agent_training_v2 | You are a CTF steganography agent. Your goal is to capture the flag hidden in media files.
Follow this methodology:
1. FILE ANALYSIS: Check file type, size anomalies, and metadata
2. STEGO DETECTION: Test for LSB, spectrogram, chunk analysis, and known tools
3. DATA EXTRACTION: Extract hidden data using appropriate te... | [
{
"type": "function",
"function": {
"name": "analyze_lsb",
"description": "Extract LSB data from image",
"parameters": {
"type": "object",
"properties": {
"file_path": {
"type": "string"
},
"bit_plane": {
"type": "intege... | {
"id": "TASK-000023",
"instruction": "Find the hidden message in this media file using Pixel Value Differencing. The flag is concealed using steganography techniques. Apply appropriate detection and extraction methods to recover it.",
"category": "stego",
"technique": "Pixel Value Differencing",
"cwe": "CWE-... | {
"flag": "flag{c0ngr4ts8686}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "extract_exif",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "analyze_lsb",
"description": "Apply Pixel Value Differencing technique"
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 1,
"reward_correct_tool": 0.1,
"max_steps": 10,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": false
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "c4ptur3",
"created_at": "2025-07-25T08:46:00",
"tags": [
"stego",
"easy",
"Pixel Value Differen"
],
"solved_count": 2769
} | train |
CTF-AGENT-000024 | 2.0 | agent_training_v2 | You are a CTF cryptanalysis agent. Your goal is to capture the flag by breaking cryptographic implementations.
Follow this methodology:
1. ALGORITHM IDENTIFICATION: Determine cipher type from ciphertext characteristics
2. KEY RECOVERY: Use known attacks (brute force, frequency analysis, factorization, oracle)
3. DECRY... | [
{
"type": "function",
"function": {
"name": "analyze_strings",
"description": "Extract strings from data/file",
"parameters": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"min_length": {
"type": "int... | {
"id": "TASK-000024",
"instruction": "Break this crypto implementation. The ciphertext was generated with a flawed implementation of RSA (Boneh-Durfee). Recover the key or directly decrypt to reveal the flag.",
"category": "crypto",
"technique": "RSA (Boneh-Durfee)",
"cwe": "CWE-326",
"difficulty": "hard",... | {
"flag": "flag{cr4ck_h4sh_5395}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "identify_cipher",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "brute_xor",
"description": "Apply RSA (Boneh-Durfee) technique"
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 35,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Original",
"author": "wh1t3_h4t",
"created_at": "2025-04-03T07:51:00",
"tags": [
"crypto",
"hard",
"RSA (Boneh-Durfee)"
],
"solved_count": 101
} | validation |
CTF-AGENT-000025 | 2.0 | agent_training_v2 | You are a CTF cryptanalysis agent. Your goal is to capture the flag by breaking cryptographic implementations.
Follow this methodology:
1. ALGORITHM IDENTIFICATION: Determine cipher type from ciphertext characteristics
2. KEY RECOVERY: Use known attacks (brute force, frequency analysis, factorization, oracle)
3. DECRY... | [
{
"type": "function",
"function": {
"name": "analyze_strings",
"description": "Extract strings from data/file",
"parameters": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"min_length": {
"type": "int... | {
"id": "TASK-000025",
"instruction": "Cryptographic challenge: Decrypt the ciphertext using RSA (Fermat). The encryption scheme has a known weakness that allows key recovery or plaintext extraction without the key. Apply the appropriate cryptanalysis technique.",
"category": "crypto",
"technique": "RSA (Fermat... | {
"flag": "flag{b3tt3r_l0ck_6119}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "identify_cipher",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "brute_xor",
"description": "Apply RSA (Fermat) technique"
},
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 35,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "CTF-inspired",
"author": "wh1t3_h4t",
"created_at": "2025-02-21T11:01:00",
"tags": [
"crypto",
"hard",
"RSA (Fermat)"
],
"solved_count": 77
} | validation |
CTF-AGENT-000026 | 2.0 | agent_training_v2 | You are a CTF web exploitation agent. Your goal is to capture the flag by identifying and exploiting web vulnerabilities.
Follow this methodology:
1. RECONNAISSANCE: Identify server technology, endpoints, parameters, and authentication mechanisms
2. VULNERABILITY SCANNING: Test for SQL injection, XSS, SSTI, LFI, SSRF,... | [
{
"type": "function",
"function": {
"name": "analyze_strings",
"description": "Extract strings from data/file",
"parameters": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"min_length": {
"type": "int... | {
"id": "TASK-000026",
"instruction": "A web application is running with a known SSRF vulnerability. Perform recon, identify the injectable parameter, and exploit it to retrieve the flag. The target is protected by basic auth.",
"category": "web",
"technique": "SSRF",
"cwe": "CWE-918",
"difficulty": "insane... | {
"flag": "flag{h4x0r_81$}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "curl_request",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "analyze_response",
"description": "Apply SSRF technique"
},
{
... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 50,
"success_criteria": "flag_found_tool_called",
"partial_credit": false,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Community submission",
"author": "h4ck3rm4n",
"created_at": "2025-07-22T08:58:00",
"tags": [
"web",
"insane",
"SSRF"
],
"solved_count": 56
} | test |
CTF-AGENT-000027 | 2.0 | agent_training_v2 | You are a CTF binary exploitation agent. Your goal is to capture the flag by exploiting binary vulnerabilities.
Follow this methodology:
1. BINARY ANALYSIS: Analyze file type, security protections (checksec), and symbols
2. VULNERABILITY IDENTIFICATION: Disassemble functions to find buffer overflows, format strings, h... | [
{
"type": "function",
"function": {
"name": "flag_found",
"description": "Submit the discovered flag",
"parameters": {
"type": "object",
"properties": {
"flag": {
"type": "string",
"description": "The captured flag"
}
},
... | {
"id": "TASK-000027",
"instruction": "Mission: Exploit a binary service to capture the flag. The binary at the remote host is vulnerable to File Stream OP. Analyze the binary's protections, reverse engineer the vulnerability, and craft an exploit to read the flag from the remote filesystem.",
"category": "pwn",
... | {
"flag": "flag{1s_c0d3_4416}",
"expected_action_sequence": [
{
"phase": "reconnaissance",
"tool": "check_binary_security",
"description": "Initial target analysis"
},
{
"phase": "exploitation",
"tool": "disassemble_function",
"description": "Apply File Stream OP tech... | {
"type": "sparse",
"reward_flag_found": 100,
"penalty_per_step": 0.25,
"reward_correct_tool": 0.1,
"max_steps": 35,
"success_criteria": "flag_found_tool_called",
"partial_credit": true,
"strategy_guidance": true
} | [
{
"scenario": "Basic reconnaissance",
"observation": "Target is a web server running at http://target:8080",
"thought": "Start with basic curl to identify the server and endpoints.",
"action": "curl_request(url=\"http://target:8080\")",
"result": "Server: nginx/1.18. Found /login.php endpoint."
... | {
"challenge_source": "Original",
"author": "h4ck3rm4n",
"created_at": "2025-12-15T06:56:00",
"tags": [
"pwn",
"hard",
"File Stream OP",
"sandbox-escape"
],
"solved_count": 382
} | validation |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 199