Spaces:
Sleeping
Sleeping
File size: 33,158 Bytes
cb16781 8ed9b92 cb16781 082c217 8eea7a7 cb16781 5c14256 cb16781 8eea7a7 cb16781 8eea7a7 cb16781 8eea7a7 cb16781 8eea7a7 cb16781 8eea7a7 cb16781 8eea7a7 cb16781 8eea7a7 cb16781 5c14256 cb16781 5c14256 cb16781 5c14256 cb16781 5c14256 cb16781 6c11144 5c14256 6c11144 cb16781 | 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 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 | """
Web Exploitation generator (Red Team) โ produces diverse web-attack scenarios
with realistic HTTP request/response pairs, vulnerability descriptions, and
a flag-based answer.
The generator cycles through 10 attack types (XSS, SQLi, CSRF, SSRF, IDOR,
LFI, XXE, CMDi, Auth Bypass, File Upload) using creative seeds and AI calls.
"""
## Generators AGENTS.md contract:
## POOL_TARGET / POOL_THRESHOLD / POOL_BATCH (module-level)
## async get_pool_count(team_role) -> int
## async refill_pool(team_role, count) -> int
## async start_pool_watcher(team_role) # long-running asyncio Task
import asyncio
import hashlib
import json
import logging
import random
import time
from dataclasses import dataclass
from typing import Optional
import httpx
from app.core.config import (
SUPABASE_URL, SUPABASE_ANON_KEY,
CLOUDFLARE_API_TOKEN, CLOUDFLARE_ACCOUNT_ID, CLOUDFLARE_URL,
GROQ_API_KEY, GROQ_API_URL,
NVIDIA_API_KEY, NVIDIA_MODEL, NVIDIA_URL,
MISTRAL_API_KEY, MISTRAL_MODEL, MISTRAL_API_URL,
)
# โโ Pool tuning โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
POOL_TARGET = 5
POOL_THRESHOLD = 2
POOL_BATCH = 3
# โโ AI backoff โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
_AI_BACKOFF_UNTIL: dict[str, float] = {}
# Concurrency control
_POOL_LOCKS: dict[str, asyncio.Lock] = {}
def _get_pool_lock(team_role: str) -> asyncio.Lock:
if team_role not in _POOL_LOCKS:
_POOL_LOCKS[team_role] = asyncio.Lock()
return _POOL_LOCKS[team_role]
# โโ Topic rotation โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
WEB_EXPLOIT_TOPICS = [
"xss", "sqli", "csrf", "ssrf", "idor",
"lfi", "xxe", "cmdi", "auth", "upload",
]
_TOPIC_INDEX: dict[str, int] = {} # team_role -> last index
# Cloudflare model fallback chain (same as code_fixing.py)
CLOUDFLARE_MODEL_FALLBACKS = [
"@cf/qwen/qwen2.5-coder-32b-instruct",
"@cf/meta/llama-3.3-70b-instruct-fp8-fast",
"@cf/meta/llama-3.1-70b-instruct",
"@cf/mistralai/mistral-small-3.1-24b-instruct",
"@cf/openai/gpt-oss-120b",
"@cf/openai/gpt-oss-20b",
"@cf/meta/llama-3.1-8b-instruct",
]
_CURATED_SEEDS: list[dict] = []
# โโ Data model โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@dataclass
class WebExploitChallenge:
title: str
story: str
task_outline: str
vulnerability_type: str
vulnerability_class: str
vulnerability_description: str
http_request: str
http_response: str
flag_preview: str
flag_hash: str
hints: list[dict]
difficulty: str
xp_reward: int = 200
topic: str = ""
team_role: str = "red"
module: str = "web-exploitation"
# โโ Helpers โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _sb_headers(content_type: bool = False) -> dict:
h = {
"apikey": SUPABASE_ANON_KEY,
"Authorization": f"Bearer {SUPABASE_ANON_KEY}",
}
if content_type:
h["Content-Type"] = "application/json"
h["Prefer"] = "return=representation"
return h
async def _supabase_select(table: str, query: str) -> list[dict]:
url = f"{SUPABASE_URL}/rest/v1/{table}?{query}"
async with httpx.AsyncClient(timeout=20) as client:
r = await client.get(url, headers=_sb_headers())
if r.status_code == 200:
return r.json()
return []
async def _supabase_insert(table: str, row: dict) -> Optional[dict]:
url = f"{SUPABASE_URL}/rest/v1/{table}"
async with httpx.AsyncClient(timeout=20) as client:
r = await client.post(url, json=row, headers=_sb_headers(content_type=True))
if r.status_code in (200, 201):
rows = r.json()
return rows[0] if rows else None
logging.error(f"[web_exploit] insert error {r.status_code}: {r.text[:300]}")
return None
def _compute_flag_hash(flag: str) -> str:
return hashlib.sha256(flag.encode("utf-8")).hexdigest()
def _generate_flag() -> str:
"""Generate a unique CyberArena{...} flag."""
rand_hex = hashlib.sha256(str(random.getrandbits(256)).encode()).hexdigest()[:16]
return f"CyberArena{{{rand_hex}}}"
def _extract_json(text: str) -> Optional[dict]:
"""Robust JSON extraction from LLM response."""
import re as _re
text = text.strip()
# Try direct parse
try:
return json.loads(text)
except json.JSONDecodeError:
pass
# Try to find JSON block
m = _re.search(r"\{[\s\S]*\}", text)
if m:
try:
return json.loads(m.group())
except json.JSONDecodeError:
pass
return None
# โโ Curated Seeds (6 diverse scenarios, one per method) โโโโโโโโโโโโโโโ
def _build_seeds() -> list[dict]:
seeds = []
# 1. SQLi
flag1 = _generate_flag()
seeds.append({
"title": "ุซุบุฑุฉ ุญูู SQL ูู ููุญุฉ ุชุญูู
ุงูู
ุฎุฒูู",
"story": "ุฃุซูุงุก ุงุฎุชุจุงุฑ ุงุฎุชุฑุงู ูู
ููุน ู
ุชุฌุฑ ุฅููุชุฑูููุ ุงูุชุดูุช ุฃู ุตูุญุฉ ุนุฑุถ ุงูู
ูุชุฌุงุช ุชุณุชุฎุฏู
ู
ุนุงู
ู `id` ูู ุนููุงู URL ุจุดูู ู
ุจุงุดุฑ ูู ุงุณุชุนูุงู
SQL ุฏูู ุชูููุฉ. ูู
ููู ุงุณุชุบูุงู ูุฐู ุงูุซุบุฑุฉ ูุณุญุจ ุฌู
ูุน ุงูู
ูุชุฌุงุช ุงูู
ุฎููุฉ ูุงูุจูุงูุงุช ุงูุญุณุงุณุฉ.",
"task_outline": "ุญุงูู ุงุณุชุบูุงู ุซุบุฑุฉ SQL Injection ูู ู
ุนุงู
ู id ุจุงูุฑุงุจุท /api/products?id=1. ุงุณุชุฎุฏู
ุชูููุฉ UNION ูุนุฑุถ ุฌู
ูุน ุงูู
ูุชุฌุงุช ุงูู
ุฎููุฉ ูุงุณุชุฎุฑุฌ ุงูุนููู
.",
"vulnerability_type": "sql-injection",
"vulnerability_class": "Injection",
"vulnerability_description": "ุซุบุฑุฉ SQL Injection ุชุณู
ุญ ููู
ูุงุฌู
ุจุญูู ุงุณุชุนูุงู
ุงุช SQL ุฎุจูุซุฉ ุนุจุฑ ู
ุฏุฎูุงุช ุงูู
ุณุชุฎุฏู
ุ ู
ู
ุง ูุฏ ูุคุฏู ุฅูู ุชุณุฑุจ ุงูุจูุงูุงุช ุฃู ุชุฏู
ูุฑ ูุงุนุฏุฉ ุงูุจูุงูุงุช.",
"http_request": "GET /api/products?id=1 UNION SELECT 1,2,3,4,5,6-- HTTP/1.1\nHost: target.apex-train.com\nUser-Agent: Mozilla/5.0\nAccept: application/json",
"http_response": "HTTP/1.1 200 OK\nContent-Type: application/json\n\n[{\"id\":1,\"name\":\"ูุงุจุชูุจ\",\"price\":2500},{\"id\":2,\"name\":\"ูุงุชู\",\"price\":1200},{\"id\":999,\"name\":\"FLAG_PLACEHOLDER\",\"price\":0}]",
"flag_preview": flag1,
"flag_hash": _compute_flag_hash(flag1),
"hints": [
{"level": 1, "text": "ุงูุญูู ู
ูุฌูุฏ ูู ู
ุนุงู
ู id. ุฌุฑุจ ุฅุถุงูุฉ ุนูุงู
ุงุช ุงูุชุจุงุณ ุจุณูุทุฉ ูุชูุณูุฑ ุงูุงุณุชุนูุงู
.", "xp_cost": 10},
{"level": 2, "text": "ุงุณุชุฎุฏู
UNION SELECT ูุชูุญูุฏ ูุชุงุฆุฌ ุงุณุชุนูุงู
ู ู
ุน ุงูุงุณุชุนูุงู
ุงูุฃุตูู. ุฌุฑุจ: 1 UNION SELECT 1,2,3,4,5,6--", "xp_cost": 20},
{"level": 3, "text": "ูุฏ ุชุญุชุงุฌ ุฅูู ุชุญุฏูุฏ ุนุฏุฏ ุงูุฃุนู
ุฏุฉ ุฃููุงู ุจุงุณุชุฎุฏุงู
ORDER BY. ุงูุนูู
ู
ูุฌูุฏ ูู ุฃุญุฏ ุงูุตููู ุงูู
ุฎููุฉ.", "xp_cost": 30},
],
"difficulty": "ู
ุชูุณุท",
})
# 2. XSS
flag2 = _generate_flag()
seeds.append({
"title": "ุซุบุฑุฉ XSS ูู ู
ูุตุฉ ุงูุชุนูููุงุช",
"story": "ุชุชุถู
ู ู
ูุชุฏูุงุช ุงูููุงุด ุงูุนุงู
ุฉ ุซุบุฑุฉ ู
ู ููุน Cross-Site Scripting ุญูุซ ูุชู
ุนุฑุถ ู
ุญุชูู ุงูุชุนูููุงุช ุฏูู ุชุนููู
. ูู
ููู ุญูู ุญู
ููุฉ XSS ูุณุฑูุฉ ุฌูุณุฉ ุงูู
ุณุคูู.",
"task_outline": "ุฃุฑุณู ุชุนูููุงู ูุญุชูู ุนูู ุญู
ููุฉ XSS ูุชูุจูู ูุงูุฐุฉ ุชุญุชูู ุนูู ุงูุนููู
. ุงุณุชุฎุฏู
<script> ุฃู <img onerror>.",
"vulnerability_type": "xss",
"vulnerability_class": "Injection",
"vulnerability_description": "ุซุบุฑุฉ XSS ุชุณู
ุญ ููู
ูุงุฌู
ุจุญูู ูุตูุต ุจุฑู
ุฌูุฉ ูู ุตูุญุงุช ุงูููุจ ุงูุชู ูุดุงูุฏูุง ู
ุณุชุฎุฏู
ูู ุขุฎุฑููุ ู
ู
ุง ูุฏ ูุคุฏู ุฅูู ุณุฑูุฉ ุงูุฌูุณุงุช ุฃู ุฅุนุงุฏุฉ ุงูุชูุฌูู ูู
ูุงูุน ุถุงุฑุฉ.",
"http_request": "POST /api/comments HTTP/1.1\nHost: forum.apex-train.com\nContent-Type: application/json\n\n{\"comment\":\"<script>alert('XSS')</script>\"}",
"http_response": "HTTP/1.1 201 Created\nContent-Type: application/json\n\n{\"status\":\"ok\",\"comment\":\"<script>alert('XSS')</script>\"}",
"flag_preview": flag2,
"flag_hash": _compute_flag_hash(flag2),
"hints": [
{"level": 1, "text": "ุงุจุญุซ ุนู ุญูู ุงูุฅุฏุฎุงู ุงูุฐู ูุฑุณู ุงููุต ุฏูู ุชูููุฉ. ุฌุฑุจ <script>alert(1)</script>.", "xp_cost": 10},
{"level": 2, "text": "ุฅุฐุง ูุงู <script> ู
ุญุธูุฑุงูุ ุงุณุชุฎุฏู
<img src=x onerror=alert(1)>.", "xp_cost": 20},
{"level": 3, "text": "ูุฏ ุชุญุชุงุฌ ุฅูู ุงุณุชุนู
ุงู ุญู
ููุฉ <svg onload=alert(1)> ุฅุฐุง ุชู
ุญุธุฑ img.", "xp_cost": 30},
],
"difficulty": "ุณูู",
})
# 3. IDOR
flag3 = _generate_flag()
seeds.append({
"title": "ุซุบุฑุฉ IDOR ูู ู
ููุงุช ุงูู
ุณุชุฎุฏู
ูู",
"story": "ูุชูุญ ูุธุงู
ุฅุฏุงุฑุฉ ุงูู
ููุงุช ููู
ุณุชุฎุฏู
ูู ุชุญู
ูู ูุงุณุชุนุฑุงุถ ู
ููุงุชูู
ุนุจุฑ ุฑุงุจุท ู
ุจุงุดุฑ. ูุงุญุธุช ุฃู ู
ุนุฑููุงุช ุงูู
ููุงุช ูู ุฃุฑูุงู
ู
ุชุณูุณูุฉ ูู
ูู ุงูุชููู ุจูุง ุจุณูููุฉ.",
"task_outline": "ุฌุฑุจ ุงููุตูู ุฅูู ู
ููุงุช ู
ุณุชุฎุฏู
ูู ุขุฎุฑูู ุนุจุฑ ุชุบููุฑ ู
ุนุฑู ุงูู
ูู ูู ุงูุฑุงุจุท /files/1. ุงุจุญุซ ุนู ุงูู
ูู ุงูุฐู ูุญุชูู ุนูู ุงูุนููู
.",
"vulnerability_type": "idor",
"vulnerability_class": "Broken Access Control",
"vulnerability_description": "ุซุบุฑุฉ IDOR (Insecure Direct Object Reference) ุชุญุฏุซ ุนูุฏู
ุง ูุนุฑุถ ุงูุชุทุจูู ู
ุฑุฌุนุงู ู
ุจุงุดุฑุงู ููุงุฆู ุฏุงุฎูู (ู
ุซู ู
ุนุฑู ู
ูู) ุฏูู ุงูุชุญูู ู
ู ุตูุงุญูุฉ ุงููุตูู.",
"http_request": "GET /files/42 HTTP/1.1\nHost: cloud.apex-train.com\nCookie: session=abc123",
"http_response": "HTTP/1.1 200 OK\nContent-Type: text/plain\n\nFLAG_CONTENT_HERE",
"flag_preview": flag3,
"flag_hash": _compute_flag_hash(flag3),
"hints": [
{"level": 1, "text": "ูุงุญุธ ุฃู ู
ุนุฑูุงุช ุงูู
ููุงุช ูู ุฃุฑูุงู
ู
ุชุณูุณูุฉ (1, 2, 3...).", "xp_cost": 10},
{"level": 2, "text": "ุฌุฑุจ ุงููุตูู ููู
ูู ุฑูู
42 ุฃู 99 ุฃู 100.", "xp_cost": 20},
{"level": 3, "text": "ูุฏ ุชุฌุฏ ุงูุนูู
ูู ู
ูู ูุตู ุจุงุณู
flag.txt ุฃู secret.txt.", "xp_cost": 30},
],
"difficulty": "ุณูู",
})
# 4. SSRF
flag4 = _generate_flag()
seeds.append({
"title": "ุซุบุฑุฉ SSRF ูู ุฎุฏู
ุฉ ุฌูุจ ุงูุตูุฑ",
"story": "ุชุทุจูู ููุจ ูุณู
ุญ ูู ุจุฅุฏุฎุงู ุฑุงุจุท ุตูุฑุฉ ูุนุฑุถูุง. ูููู
ุงูุฎุงุฏู
ุจุฌูุจ ุงูุตูุฑุฉ ู
ู ุงูุฑุงุจุท ููุงุจุฉ ุนูู. ูู
ููู ุงุณุชุบูุงู ูุฐู ุงูู
ูุฒุฉ ูุฌูุจ ู
ูุงุฑุฏ ุฏุงุฎููุฉ.",
"task_outline": "ุงุณุชุบู ุซุบุฑุฉ Server-Side Request Forgery ูุฌูุจ ุงูู
ูู ุงูุฏุงุฎูู http://localhost:8080/admin/flag ุงูุฐู ูุญุชูู ุนูู ุงูุนููู
.",
"vulnerability_type": "ssrf",
"vulnerability_class": "Server-Side Request Forgery",
"vulnerability_description": "ุซุบุฑุฉ SSRF ุชุณู
ุญ ููู
ูุงุฌู
ุจุฅุฌุจุงุฑ ุงูุฎุงุฏู
ุนูู ุฅุฑุณุงู ุทูุจุงุช ุฅูู ุนูุงููู ุฏุงุฎููุฉ ุฃู ุฎุงุฑุฌูุฉ ุบูุฑ ู
ูุตูุฏุฉุ ู
ู
ุง ูุฏ ููุดู ุฎุฏู
ุงุช ุฏุงุฎููุฉ ู
ุญู
ูุฉ.",
"http_request": "POST /api/fetch-image HTTP/1.1\nHost: img.apex-train.com\nContent-Type: application/json\n\n{\"url\":\"http://localhost:8080/admin/flag\"}",
"http_response": "HTTP/1.1 200 OK\nContent-Type: text/plain\n\nFLAG_CONTENT_HERE",
"flag_preview": flag4,
"flag_hash": _compute_flag_hash(flag4),
"hints": [
{"level": 1, "text": "ุงูุฎุฏู
ุฉ ุชุฌูุจ ุงูุตูุฑ ู
ู ุฃู URL ุชุนุทูู ุฅูุงู. ุฌุฑุจ ุฅุฏุฎุงู http://localhost/.", "xp_cost": 10},
{"level": 2, "text": "ุงููุฏู ู
ูุฌูุฏ ุนูู ู
ููุฐ ุฏุงุฎูู. ุฌุฑุจ http://localhost:8080/admin.", "xp_cost": 20},
{"level": 3, "text": "ุฌุฑุจ http://localhost:8080/admin/flag.", "xp_cost": 30},
],
"difficulty": "ู
ุชูุณุท",
})
# 5. Command Injection (CMDi)
flag5 = _generate_flag()
seeds.append({
"title": "ุซุบุฑุฉ ุญูู ุฃูุงู
ุฑ ูู ุฃุฏุงุฉ ping",
"story": "ุชููุฑ ููุญุฉ ุชุญูู
ุงูุดุจูุฉ ุฃุฏุงุฉ ping ูุงุฎุชุจุงุฑ ุงูุงุชุตุงู ุจุงูุฎูุงุฏู
. ุงูู
ุฏุฎู ูุง ูุชู
ุชูููุชู ุจุดูู ุตุญูุญุ ู
ู
ุง ูุณู
ุญ ุจุชูููุฐ ุฃูุงู
ุฑ ูุธุงู
ุฅุถุงููุฉ.",
"task_outline": "ุงุณุชุบู ุซุบุฑุฉ Command Injection ูู ุญูู ping ุจุชูููุฐ ุฃู
ุฑ ls ุฃู dir ููุนุซูุฑ ุนูู ู
ูู flag ูู ุงููุธุงู
.",
"vulnerability_type": "command-injection",
"vulnerability_class": "Injection",
"vulnerability_description": "ุซุบุฑุฉ Command Injection ุชุญุฏุซ ุนูุฏู
ุง ูู
ุฑุฑ ุงูุชุทุจูู ู
ุฏุฎูุงุช ุงูู
ุณุชุฎุฏู
ู
ุจุงุดุฑุฉ ุฅูู shell ุงููุธุงู
ุฏูู ุชูููุฉุ ู
ู
ุง ูุณู
ุญ ุจุชูููุฐ ุฃูุงู
ุฑ ุชุนุณููุฉ.",
"http_request": "POST /api/ping HTTP/1.1\nHost: admin.apex-train.com\nContent-Type: application/json\n\n{\"host\":\"8.8.8.8; ls -la\"}",
"http_response": "HTTP/1.1 200 OK\nContent-Type: application/json\n\n{\"output\":\"PING 8.8.8.8...\\nflag.txt\\nindex.php\\n\"}",
"flag_preview": flag5,
"flag_hash": _compute_flag_hash(flag5),
"hints": [
{"level": 1, "text": "ุฌุฑุจ ุฅุถุงูุฉ (;) ุฃู (&&) ุจุนุฏ ุงูุฃู
ุฑ ุงูุฃุตูู ูุชูููุฐ ุฃู
ุฑ ุฅุถุงูู.", "xp_cost": 10},
{"level": 2, "text": "ุฌุฑุจ: 8.8.8.8; ls", "xp_cost": 20},
{"level": 3, "text": "ุจุนุฏ ุฑุคูุฉ ุงูู
ููุงุชุ ุงูุฑุฃ ู
ุญุชูู ุงูุนูู
ุจู: 8.8.8.8; cat flag.txt", "xp_cost": 30},
],
"difficulty": "ู
ุชูุณุท",
})
# 6. CSRF
flag6 = _generate_flag()
seeds.append({
"title": "ุซุบุฑุฉ CSRF ูู ุชุบููุฑ ููู
ุฉ ุงูู
ุฑูุฑ",
"story": "ูุณู
ุญ ู
ููุน ุฅุฏุงุฑุฉ ุงูู
ุณุชุฎุฏู
ูู ุจุชุบููุฑ ููู
ุฉ ุงูู
ุฑูุฑ ุนุจุฑ ุทูุจ GET ุฏูู ุฑู
ุฒ ุญู
ุงูุฉ CSRF. ูู
ููู ุฅูุดุงุก ุฑุงุจุท ุฎุจูุซ ูุบูุฑ ููู
ุฉ ู
ุฑูุฑ ุงูู
ุณุคูู.",
"task_outline": "ูู
ุจุฅูุดุงุก ุญู
ููุฉ CSRF ุชูุบูููุฑ ููู
ุฉ ู
ุฑูุฑ ุงูู
ุณุคูู ุฅูู 'hacked123' ุนุจุฑ ุฅุฑุณุงู ุทูุจ GET ุฅูู /change-password.",
"vulnerability_type": "csrf",
"vulnerability_class": "Broken Access Control",
"vulnerability_description": "ุซุบุฑุฉ CSRF (Cross-Site Request Forgery) ุชุณู
ุญ ููู
ูุงุฌู
ุจุฅุฌุจุงุฑ ุถุญูุฉ ุนูู ุชูููุฐ ุฅุฌุฑุงุกุงุช ุบูุฑ ู
ุฑุบูุจ ูููุง ูู ุชุทุจูู ููุจ ุชู
ุช ู
ุตุงุฏูุชู.",
"http_request": "GET /change-password?newPass=hacked123&confirm=hacked123 HTTP/1.1\nHost: admin.apex-train.com\nCookie: session=admin_session",
"http_response": "HTTP/1.1 200 OK\nContent-Type: application/json\n\n{\"status\":\"password changed successfully\"}",
"flag_preview": flag6,
"flag_hash": _compute_flag_hash(flag6),
"hints": [
{"level": 1, "text": "ุงูุชุทุจูู ูุง ูุณุชุฎุฏู
ุฑู
ุฒ CSRF. ุฃู ุทูุจ ุชุบููุฑ ููู
ุฉ ู
ุฑูุฑ ูุชู
ุชูููุฐู ููุฑุงู.", "xp_cost": 10},
{"level": 2, "text": "ุฌุฑุจ ุฅุฑุณุงู ุทูุจ GET ู
ุจุงุดุฑุฉ ุฅูู /change-password?newPass=test123&confirm=test123", "xp_cost": 20},
{"level": 3, "text": "ุงูุญู
ููุฉ ูุฏ ุชุญุชุงุฌ ุฅูู ุชุถู
ูููุง ูู <img> ุฃู <form> ู
ุฎูู.", "xp_cost": 30},
],
"difficulty": "ุณูู",
})
for s in seeds:
flag = s["flag_preview"]
s["flag_hash"] = _compute_flag_hash(flag)
return seeds
_CURATED_SEEDS = _build_seeds()
# โโ Pool info โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async def get_pool_count(team_role: str) -> int:
rows = await _supabase_select(
"web_exploitation_challenges",
f"select=id&team_role=eq.{team_role}",
)
return len(rows)
# โโ AI Generation โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
_WEB_EXPLOIT_PROMPT = (
"You are a senior penetration tester specializing in web application security.\n"
"\n"
"Your task: generate a unique and creative web exploitation challenge. "
"The challenge MUST be different from any previous one.\n"
"\n"
"Strict requirements:\n"
"- Topic: {topic}\n"
"- Difficulty: {difficulty}\n"
"- Write title, story, task_outline, and vulnerability_description in ARABIC only\n"
"- Pick vulnerability_type from: xss, sqli, csrf, ssrf, idor, lfi, xxe, cmdi, auth, upload\n"
"- Pick vulnerability_class from: Injection, Broken Access Control, ...\n"
"\n"
"The challenge must contain:\n"
"1. **http_request**: A realistic HTTP request showing how the exploit works (with Host header, body, etc.)\n"
"2. **http_response**: A realistic HTTP response from the server\n"
"3. **flag_preview**: A unique flag in format CyberArena{{<hex>}} - MUST be different every time\n"
"\n"
"Return ONLY valid JSON with this exact shape:\n"
'{{\n'
' "title": "Arabic challenge title",\n'
' "story": "Arabic scenario story",\n'
' "task_outline": "Arabic task description for the student",\n'
' "vulnerability_type": "xss",\n'
' "vulnerability_class": "Injection",\n'
' "vulnerability_description": "Arabic description of the vulnerability",\n'
' "http_request": "GET /path HTTP/1.1\\nHost: target.com\\n...",\n'
' "http_response": "HTTP/1.1 200 OK\\nContent-Type: ...\\n\\nBody",\n'
' "flag_preview": "CyberArena{{unique_hex_here}}",\n'
' "difficulty": "{difficulty}",\n'
' "hints": [\n'
' {{"level":1,"text":"First hint in Arabic","xp_cost":10}},\n'
' {{"level":2,"text":"Second hint in Arabic","xp_cost":20}},\n'
' {{"level":3,"text":"Third hint in Arabic","xp_cost":30}}\n'
" ]\n"
"}}\n"
"\n"
"IMPORTANT: Do NOT repeat any previously generated challenge. "
"Every call must produce a fresh, unique scenario with a different vulnerability type, "
"different HTTP traffic, and a different context."
)
async def _call_cloudflare(prompt: str, timeout: int = 45) -> Optional[str]:
"""Try Cloudflare models in order, cycling through fallbacks."""
if not CLOUDFLARE_API_TOKEN or not CLOUDFLARE_ACCOUNT_ID:
return None
for model in CLOUDFLARE_MODEL_FALLBACKS:
url = f"https://api.cloudflare.com/client/v4/accounts/{CLOUDFLARE_ACCOUNT_ID}/ai/run/{model}"
payload = {
"messages": [
{"role": "system", "content": "ุฃูุช ุฎุจูุฑ ุฃู
ู ุณูุจุฑุงูู. ุฃุนุฏ JSON ููุท."},
{"role": "user", "content": prompt},
],
}
try:
async with httpx.AsyncClient(timeout=timeout) as client:
resp = await client.post(
url,
json={**payload, "response_format": {"type": "json_object"}},
headers={"Authorization": f"Bearer {CLOUDFLARE_API_TOKEN}"},
)
if resp.status_code == 200:
data = resp.json()
if data.get("success") and data.get("result"):
return data["result"]["response"]
if resp.status_code in (400, 404, 422):
# Retry without response_format
resp2 = await client.post(
url,
json=payload,
headers={"Authorization": f"Bearer {CLOUDFLARE_API_TOKEN}"},
)
if resp2.status_code == 200:
data = resp2.json()
if data.get("success") and data.get("result"):
return data["result"]["response"]
if resp.status_code == 429:
return None # Hard backoff
except Exception as e:
logging.warning(f"[web_exploit] CF model {model} error: {e}")
continue
return None
async def _call_groq(prompt: str, timeout: int = 60) -> Optional[str]:
if not GROQ_API_KEY:
return None
try:
async with httpx.AsyncClient(timeout=timeout) as client:
resp = await client.post(
GROQ_API_URL,
json={
"model": "llama-3.3-70b-versatile",
"messages": [
{"role": "system", "content": "ุฃูุช ุฎุจูุฑ ุฃู
ู ุณูุจุฑุงูู. ุฃุนุฏ JSON ููุท."},
{"role": "user", "content": prompt},
],
"temperature": 0.8,
"max_tokens": 2048,
"response_format": {"type": "json_object"},
},
headers={
"Content-Type": "application/json",
"Authorization": f"Bearer {GROQ_API_KEY}",
},
)
if resp.status_code == 200:
return resp.json()["choices"][0]["message"]["content"]
except Exception as e:
logging.warning(f"[web_exploit] Groq error: {e}")
return None
async def _call_nvidia(prompt: str, timeout: int = 60) -> Optional[str]:
if not NVIDIA_API_KEY:
return None
try:
async with httpx.AsyncClient(timeout=timeout) as client:
resp = await client.post(
"https://integrate.api.nvidia.com/v1/chat/completions",
json={
"model": NVIDIA_MODEL or "deepseek-ai/deepseek-v4-pro",
"messages": [
{"role": "system", "content": "ุฃูุช ุฎุจูุฑ ุฃู
ู ุณูุจุฑุงูู. ุฃุนุฏ JSON ููุท."},
{"role": "user", "content": prompt},
],
"temperature": 0.8,
"max_tokens": 2048,
"response_format": {"type": "json_object"},
},
headers={
"Content-Type": "application/json",
"Authorization": f"Bearer {NVIDIA_API_KEY}",
},
)
if resp.status_code == 200:
return resp.json()["choices"][0]["message"]["content"]
except Exception as e:
logging.warning(f"[web_exploit] NVIDIA error: {e}")
return None
async def _call_mistral(prompt: str) -> Optional[str]:
if not MISTRAL_API_KEY:
print("[mistral] no API key set, skipping")
return None
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {MISTRAL_API_KEY}",
}
payload = {
"model": MISTRAL_MODEL,
"messages": [{"role": "user", "content": prompt}],
"max_tokens": 2048,
"temperature": 0.7,
}
print(f"[mistral] calling {MISTRAL_MODEL}...")
try:
async with httpx.AsyncClient(timeout=60) as client:
resp = await client.post(MISTRAL_API_URL, json=payload, headers=headers)
if resp.status_code == 200:
text = resp.json()["choices"][0]["message"]["content"]
print("[mistral] success")
return text
print(f"[mistral] HTTP {resp.status_code}: {resp.text[:200]}")
return None
except Exception as e:
print(f"[mistral] error: {e}")
return None
async def _generate_one_challenge(team_role: str, topic: str, difficulty: str) -> Optional[WebExploitChallenge]:
"""Try AI providers in order, fall back to curated seed."""
prompt = _WEB_EXPLOIT_PROMPT.format(topic=topic, difficulty=difficulty)
# Tier 1: Mistral
content = await _call_mistral(prompt)
# Tier 2: Cloudflare
if not content:
print("[gen] Mistral failed, trying Cloudflare...")
content = await _call_cloudflare(prompt)
# Tier 3: Groq
if not content:
print("[gen] Cloudflare failed, trying Groq...")
content = await _call_groq(prompt)
# Tier 4: NVIDIA
if not content:
print("[gen] Groq failed, trying NVIDIA...")
content = await _call_nvidia(prompt)
if content:
data = _extract_json(content)
if data:
return _dict_to_challenge(data, topic)
print("[gen] extracted JSON is None, falling back to seed")
# Tier 5: Curated seed
print("[gen] all AI tiers exhausted, using curated seed")
seed = random.choice(_CURATED_SEEDS)
seed_copy = dict(seed)
flag = _generate_flag()
seed_copy["flag_preview"] = flag
seed_copy["flag_hash"] = _compute_flag_hash(flag)
seed_copy["topic"] = topic
seed_copy["team_role"] = team_role
return WebExploitChallenge(**seed_copy)
def _dict_to_challenge(data: dict, topic: str) -> Optional[WebExploitChallenge]:
try:
hints = data.get("hints", [])
if not isinstance(hints, list):
hints = []
flag = data.get("flag_preview", _generate_flag())
return WebExploitChallenge(
title=str(data.get("title", ""))[:200],
story=str(data.get("story", ""))[:1000],
task_outline=str(data.get("task_outline", ""))[:1000],
vulnerability_type=str(data.get("vulnerability_type", "xss"))[:50],
vulnerability_class=str(data.get("vulnerability_class", "Injection"))[:50],
vulnerability_description=str(data.get("vulnerability_description", ""))[:1000],
http_request=str(data.get("http_request", ""))[:2000],
http_response=str(data.get("http_response", ""))[:2000],
flag_preview=flag,
flag_hash=_compute_flag_hash(flag),
hints=hints[:3],
difficulty=str(data.get("difficulty", "ู
ุชูุณุท"))[:20],
topic=topic,
)
except Exception as e:
logging.error(f"[web_exploit] dict_to_challenge error: {e}")
return None
# โโ DB Insert โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async def _insert_to_db(challenge: WebExploitChallenge) -> Optional[dict]:
from app.services.insert_guard import atomic_insert
from app.services.dedup import is_duplicate_web_exploit
row = {
"team_role": "red",
"module": "web-exploitation",
"topic": challenge.topic,
"title": challenge.title,
"story": challenge.story,
"task_outline": challenge.task_outline,
"vulnerability_type": challenge.vulnerability_type,
"vulnerability_class": challenge.vulnerability_class,
"vulnerability_description": challenge.vulnerability_description,
"http_request": challenge.http_request,
"http_response": challenge.http_response,
"flag_preview": challenge.flag_preview,
"flag_hash": challenge.flag_hash,
"hints": json.dumps(challenge.hints, ensure_ascii=False),
"difficulty": challenge.difficulty,
"xp_reward": challenge.xp_reward,
}
ok = await atomic_insert(
table="web_exploitation_challenges",
team_role="red",
row=row,
dedup_func=is_duplicate_web_exploit,
dedup_args=[
row.get("title", ""),
row.get("http_request", ""),
row.get("task_outline", ""),
],
dedup_kwargs={"role_filter": "red"},
)
return row if ok else None
# โโ Pool refill โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async def _refill_pool_inner(team_role: str, count: int) -> int:
"""Unlocked inner โ caller must hold _get_pool_lock(team_role)."""
now = time.time()
backoff = _AI_BACKOFF_UNTIL.get(team_role, 0)
if now < backoff:
logging.info(f"[web_exploit] backoff active for {team_role}, skipping")
return 0
inserted = 0
idx = _TOPIC_INDEX.get(team_role, 0)
difficulties = ["ุณูู", "ุณูู", "ู
ุชูุณุท", "ู
ุชูุณุท", "ุตุนุจ"]
for i in range(count):
topic = WEB_EXPLOIT_TOPICS[idx % len(WEB_EXPLOIT_TOPICS)]
idx += 1
difficulty = random.choice(difficulties)
challenge = await _generate_one_challenge(team_role, topic, difficulty)
if challenge:
result = await _insert_to_db(challenge)
if result:
inserted += 1
await asyncio.sleep(1)
if i < count - 1:
await asyncio.sleep(0.5)
_TOPIC_INDEX[team_role] = idx
return inserted
async def refill_pool(team_role: str, count: int) -> int:
async with _get_pool_lock(team_role):
return await _refill_pool_inner(team_role, count)
# โโ Pool watcher โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
_WATCHER_STARTED: set[tuple[str, str]] = set()
async def start_pool_watcher(team_role: str) -> None:
key = ("web-exploitation", team_role)
if key in _WATCHER_STARTED:
print(f"[web-exploit:{team_role}] watcher already running โ skipping duplicate start.")
return
_WATCHER_STARTED.add(key)
try:
label = f"[web-exploit:{team_role}]"
print(f"{label} watcher started (target={POOL_TARGET}).")
while True:
try:
sleep_secs = 30
async with _get_pool_lock(team_role):
count = await get_pool_count(team_role)
if count < POOL_TARGET:
needed = POOL_TARGET - count
print(f"{label} pool below target ({count}/{POOL_TARGET}) โ refilling {needed}โฆ")
added = await _refill_pool_inner(team_role, needed)
new_count = count + added
print(f"{label} refilled: {count} โ {new_count} (target {POOL_TARGET}).")
sleep_secs = 5
await asyncio.sleep(sleep_secs)
except Exception as e:
import traceback
print(f"{label} watcher error: {e}")
traceback.print_exc()
await asyncio.sleep(10)
finally:
_WATCHER_STARTED.discard(key)
# โโ CLI entry (for testing) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if __name__ == "__main__":
import sys
async def _main():
team_role = sys.argv[2] if len(sys.argv) > 2 else "red"
if "--refill" in sys.argv:
n = int(sys.argv[sys.argv.index("--refill") + 1]) if "--refill" in sys.argv and len(sys.argv) > sys.argv.index("--refill") + 1 else 3
inserted = await refill_pool(team_role, n)
print(f"Inserted {inserted} challenges for {team_role}")
elif "--seed-only" in sys.argv:
for s in _CURATED_SEEDS:
c = WebExploitChallenge(
title=s["title"], story=s["story"], task_outline=s["task_outline"],
vulnerability_type=s["vulnerability_type"], vulnerability_class=s["vulnerability_class"],
vulnerability_description=s["vulnerability_description"],
http_request=s["http_request"], http_response=s["http_response"],
flag_preview=s["flag_preview"], flag_hash=s["flag_hash"],
hints=s["hints"], difficulty=s["difficulty"], topic=s.get("vulnerability_type", "xss"),
)
r = await _insert_to_db(c)
if r:
print(f"Inserted seed: {c.title}")
else:
print(f"Skipped (dup): {c.title}")
else:
print("Usage: python -m app.generators.web_exploitation --refill N [--team red]")
print(" python -m app.generators.web_exploitation --seed-only [--team red]")
asyncio.run(_main())
|