File size: 11,879 Bytes
bb0d7fd 4cc2696 bb0d7fd e49ecc4 bb0d7fd e49ecc4 bb0d7fd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | #!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
"""
CyberSOCEnv Baseline Inference Script.
HACKATHON RULES:
- File must be named inference.py in the project root
- Must use OpenAI Client for all LLM calls
- Must emit structured stdout logs: [START], [STEP], [END]
- Runtime < 20 minutes
- Must work on vcpu=2, memory=8gb
Environment Variables:
API_BASE_URL - The API endpoint for the LLM
MODEL_NAME - The model identifier to use for inference
HF_TOKEN - Your Hugging Face / API key
"""
import asyncio
import json
import os
import textwrap
from typing import Any, Dict, List, Optional
from openai import OpenAI
from models import SOCActionWrapper, SOCObservation
from server.play_environment import CyberSOCEnvironment
# =============================================================================
# Configuration (from environment variables)
# =============================================================================
API_BASE_URL = os.getenv("API_BASE_URL", "https://router.huggingface.co/v1")
MODEL_NAME = os.getenv("MODEL_NAME", "Qwen/Qwen2.5-72B-Instruct")
HF_TOKEN = os.getenv("HF_TOKEN")
BENCHMARK = "cybersocenv"
TASKS = ["easy", "medium", "hard"]
MAX_STEPS = {"easy": 15, "medium": 25, "hard": 30}
TEMPERATURE = 0.1
MAX_TOKENS = 1024
# Scoring: normalize rewards to [0, 1]
MAX_POSSIBLE_REWARD = 2.0 # Approximate max reward per episode
SUCCESS_SCORE_THRESHOLD = 0.3
# =============================================================================
# System Prompt
# =============================================================================
SYSTEM_PROMPT = textwrap.dedent("""
You are an expert Cybersecurity SOC (Security Operations Center) Analyst AI.
You are responding to security incidents on a 500-node enterprise network.
Your goal: Investigate alerts, contain all threats, and submit a containment plan — while minimizing business downtime.
Available Actions (respond with exactly ONE JSON object per turn):
1. Query a host: {"type": "query_host", "hostname": "<HOST>"}
2. Isolate a segment (causes downtime): {"type": "isolate_segment", "subnet": "<SUBNET>", "reason": "<WHY>"}
3. Block an IOC: {"type": "block_ioc", "ioc_value": "<VALUE>", "ioc_type": "ip|domain|hash"}
4. Run forensics: {"type": "run_forensics", "hostname": "<HOST>"}
5. Kill a process: {"type": "kill_process", "hostname": "<HOST>", "process_name": "<PROC>"}
6. Submit containment plan (ends episode): {"type": "submit_containment_plan", "plan": [{"threat_id": "<ID>", "actions_taken": [...], "root_cause": "<CAUSE>", "confidence": 0.0-1.0}], "executive_summary": "<SUMMARY>"}
Rules:
- Respond with ONLY a valid JSON object. No markdown, no explanation.
- Investigate before acting. Query hosts and run forensics to gather evidence.
- Block IOCs (IPs, domains, hashes) found in alerts and forensics.
- Kill malicious processes found via forensics.
- Avoid unnecessary subnet isolation — it increases business impact.
- Submit the containment plan once you've contained all threats.
- You have a limited number of steps. Be efficient.
""").strip()
# =============================================================================
# Logging Helpers (EXACT hackathon format — lowercase booleans, null errors)
# =============================================================================
def log_start(task: str, env: str, model: str) -> None:
print(f"[START] task={task} env={env} model={model}", flush=True)
def log_step(step: int, action: str, reward: float, done: bool, error: Optional[str]) -> None:
error_val = error if error else "null"
done_val = str(done).lower()
print(
f"[STEP] step={step} action={action} reward={reward:.2f} done={done_val} error={error_val}",
flush=True,
)
def log_end(success: bool, steps: int, score: float, rewards: List[float]) -> None:
rewards_str = ",".join(f"{r:.2f}" for r in rewards)
print(
f"[END] success={str(success).lower()} steps={steps} score={score:.3f} rewards={rewards_str}",
flush=True,
)
# =============================================================================
# Observation Formatting for LLM
# =============================================================================
def format_observation(obs: SOCObservation) -> str:
"""Format observation into readable text for the LLM."""
parts = []
# Alert queue
if obs.alert_queue:
parts.append(f"## Active Alerts ({len(obs.alert_queue)}):")
for a in obs.alert_queue:
parts.append(
f" - [{a.severity.value.upper()}] {a.alert_id} "
f"on {a.source_host} ({a.subnet}): {a.description}"
)
if a.ioc_indicators:
parts.append(f" IOCs: {', '.join(a.ioc_indicators)}")
# Network topology
topo = obs.network_topology
parts.append(f"\n## Network Status:")
parts.append(f" Compromised: {topo.compromised_count} | "
f"Isolated: {topo.isolated_count} | "
f"Online: {topo.online_count}")
# Forensics
if obs.host_forensics:
f = obs.host_forensics
parts.append(f"\n## Forensics Result ({f.hostname}):")
parts.append(f" Compromised: {f.is_compromised}")
parts.append(f" Malicious processes: {f.malicious_processes}")
parts.append(f" Suspicious files: {f.suspicious_files}")
parts.append(f" Network connections: {f.network_connections}")
parts.append(f" Memory artifacts: {f.memory_artifacts}")
# Active threats
parts.append(f"\n## Active Threats: {obs.active_threats if obs.active_threats else 'None (all contained!)'}")
parts.append(f"## Business Impact: {obs.business_impact_score:.2f}")
parts.append(f"## Step: {obs.step_count} / {obs.max_steps}")
# Timeline (last 5)
if obs.timeline:
parts.append(f"\n## Recent Actions:")
for t in obs.timeline[-5:]:
parts.append(f" Step {t.step}: {t.action_type} -> {t.target} (reward={t.reward:.2f})")
return "\n".join(parts)
def parse_llm_action(content: str) -> Dict[str, Any]:
"""Parse the LLM's response into a valid action dict."""
content = content.strip()
if content.startswith("```"):
lines = content.split("\n")
lines = [l for l in lines if not l.strip().startswith("```")]
content = "\n".join(lines).strip()
try:
action = json.loads(content)
if isinstance(action, dict) and "type" in action:
return action
except json.JSONDecodeError:
pass
# Try to find JSON in the response
for start in range(len(content)):
if content[start] == "{":
for end in range(len(content), start, -1):
if content[end - 1] == "}":
try:
action = json.loads(content[start:end])
if isinstance(action, dict) and "type" in action:
return action
except json.JSONDecodeError:
continue
raise ValueError(f"Could not parse action from LLM response: {content[:200]}")
def get_model_action(
client: OpenAI,
step: int,
obs: SOCObservation,
task_id: str,
history: List[str],
) -> str:
"""Get the next action from the LLM."""
obs_text = format_observation(obs)
if step == 1:
user_content = (
f"## Incident Briefing (Task: {task_id.upper()})\n\n"
f"{obs_text}\n\n"
f"Analyze the alerts and begin your investigation. Respond with a single JSON action."
)
else:
user_content = (
f"## Observation after your action:\n\n"
f"{obs_text}\n\n"
f"Continue your investigation. Respond with a single JSON action."
)
try:
completion = client.chat.completions.create(
model=MODEL_NAME,
messages=[
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": user_content},
],
temperature=TEMPERATURE,
max_tokens=MAX_TOKENS,
stream=False,
)
text = (completion.choices[0].message.content or "").strip()
return text if text else '{"type": "query_host", "hostname": "WS-001"}'
except Exception as exc:
if "429" in str(exc) or "RateLimit" in str(exc):
raise # Let the batch runner handle rate limits
print(f"[DEBUG] Model request failed: {exc}", flush=True)
return '{"type": "query_host", "hostname": "WS-001"}'
# =============================================================================
# Episode Runner
# =============================================================================
async def run_episode(client: OpenAI, task_id: str) -> tuple:
"""Run a single episode. Returns (success, steps, score, rewards)."""
env = CyberSOCEnvironment()
history: List[str] = []
rewards: List[float] = []
steps_taken = 0
score = 0.0
success = False
log_start(task=task_id, env=BENCHMARK, model=MODEL_NAME)
try:
# Reset environment
obs = env.reset(task_id=task_id)
max_steps = MAX_STEPS.get(task_id, 30)
for step in range(1, max_steps + 1):
if obs.done:
break
# Get action from LLM
llm_response = get_model_action(client, step, obs, task_id, history)
# Parse and execute
error = None
action_str = "unknown"
reward = 0.0
try:
action_dict = parse_llm_action(llm_response)
action_str = action_dict.get("type", "unknown")
action = SOCActionWrapper(**action_dict)
obs = env.step(action)
reward = obs.reward or 0.0
done = obs.done
except Exception as exc:
error = str(exc)[:200]
done = False
reward = 0.0
rewards.append(reward)
steps_taken = step
log_step(step=step, action=action_str, reward=reward, done=done, error=error)
history.append(f"Step {step}: {action_str} -> reward {reward:+.2f}")
if done:
break
# Calculate score from final_score if available, else normalize rewards
if obs.final_score is not None:
score = obs.final_score
else:
score = sum(rewards) / MAX_POSSIBLE_REWARD if MAX_POSSIBLE_REWARD > 0 else 0.0
score = min(max(score, 0.0), 1.0) # clamp to [0, 1]
success = score >= SUCCESS_SCORE_THRESHOLD
finally:
log_end(success=success, steps=steps_taken, score=score, rewards=rewards)
return success, steps_taken, score, rewards
# =============================================================================
# Main
# =============================================================================
async def main() -> None:
"""Run baseline inference across all tasks."""
client = OpenAI(base_url=API_BASE_URL, api_key=HF_TOKEN)
total_scores = {}
for task_id in TASKS:
success, steps, score, rewards = await run_episode(client, task_id)
total_scores[task_id] = score
# Print summary
avg = sum(total_scores.values()) / len(total_scores) if total_scores else 0.0
print(f"\n# Summary: avg_score={avg:.3f}", flush=True)
for tid, s in total_scores.items():
print(f"# {tid}: {s:.3f}", flush=True)
if __name__ == "__main__":
asyncio.run(main())
|