[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-roo-code-security-review":3,"mdc-4jagsv-key":34,"related-org-roo-code-security-review":2162,"related-repo-roo-code-security-review":2322},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"security-review","perform security code reviews","Security code review for vulnerabilities. Use when asked to \"security review\", \"find vulnerabilities\", \"check for security issues\", \"audit security\", \"OWASP review\", or review code for injection, XSS, authentication, authorization, cryptography issues. Provides systematic review with confidence-based reporting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"roo-code","Roo Code","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Froo-code.png","RooCodeInc",[13,17,20],{"name":14,"slug":15,"type":16},"Security","security","tag",{"name":18,"slug":19,"type":16},"Audit","audit",{"name":21,"slug":22,"type":16},"Code Analysis","code-analysis",5,"https:\u002F\u002Fgithub.com\u002FRooCodeInc\u002FRoomote","2026-07-16T06:03:05.761256","LICENSE",0,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"Your own cloud coding agent. Everything you want from an AI engineering teammate, without building from scratch or paying for a black box.","https:\u002F\u002Fgithub.com\u002FRooCodeInc\u002FRoomote\u002Ftree\u002FHEAD\u002Fpackages\u002Fcloud-agents\u002Fsrc\u002Fserver\u002Fworkflows\u002Fskills\u002Fstandard\u002Fsecurity-review","---\nname: security-review\ndescription: Security code review for vulnerabilities. Use when asked to \"security review\", \"find vulnerabilities\", \"check for security issues\", \"audit security\", \"OWASP review\", or review code for injection, XSS, authentication, authorization, cryptography issues. Provides systematic review with confidence-based reporting.\nallowed-tools: Read, Grep, Glob, Bash, Task\nlicense: LICENSE\n---\n\n\u003C!--\nReference material based on OWASP Cheat Sheet Series (CC BY-SA 4.0)\nhttps:\u002F\u002Fcheatsheetseries.owasp.org\u002F\n-->\n\n# Security Review Skill\n\nIdentify exploitable security vulnerabilities in code. Report only **HIGH CONFIDENCE** findings—clear vulnerable patterns with attacker-controlled input.\n\n## Scope: Research vs. Reporting\n\n**CRITICAL DISTINCTION:**\n\n- **Report on**: Only the specific file, diff, or code provided by the user\n- **Research**: The ENTIRE codebase to build confidence before reporting\n\nBefore flagging any issue, you MUST research the codebase to understand:\n- Where does this input actually come from? (Trace data flow)\n- Is there validation\u002Fsanitization elsewhere?\n- How is this configured? (Check settings, config files, middleware)\n- What framework protections exist?\n\n**Do NOT report issues based solely on pattern matching.** Investigate first, then report only what you're confident is exploitable.\n\n## Confidence Levels\n\n| Level | Criteria | Action |\n|-------|----------|--------|\n| **HIGH** | Vulnerable pattern + attacker-controlled input confirmed | **Report** with severity |\n| **MEDIUM** | Vulnerable pattern, input source unclear | **Note** as \"Needs verification\" |\n| **LOW** | Theoretical, best practice, defense-in-depth | **Do not report** |\n\n## Do Not Flag\n\n### General Rules\n- Test files (unless explicitly reviewing test security)\n- Dead code, commented code, documentation strings\n- Patterns using **constants** or **server-controlled configuration**\n- Code paths that require prior authentication to reach (note the auth requirement instead)\n\n### Server-Controlled Values (NOT Attacker-Controlled)\n\nThese are configured by operators, not controlled by attackers:\n\n| Source | Example | Why It's Safe |\n|--------|---------|---------------|\n| Django settings | `settings.API_URL`, `settings.ALLOWED_HOSTS` | Set via config\u002Fenv at deployment |\n| Environment variables | `os.environ.get('DATABASE_URL')` | Deployment configuration |\n| Config files | `config.yaml`, `app.config['KEY']` | Server-side files |\n| Framework constants | `django.conf.settings.*` | Not user-modifiable |\n| Hardcoded values | `BASE_URL = \"https:\u002F\u002Fapi.internal\"` | Compile-time constants |\n\n**SSRF Example - NOT a vulnerability:**\n```python\n# SAFE: URL comes from Django settings (server-controlled)\nresponse = requests.get(f\"{settings.SEER_AUTOFIX_URL}{path}\")\n```\n\n**SSRF Example - IS a vulnerability:**\n```python\n# VULNERABLE: URL comes from request (attacker-controlled)\nresponse = requests.get(request.GET.get('url'))\n```\n\n### Framework-Mitigated Patterns\nCheck language guides before flagging. Common false positives:\n\n| Pattern | Why It's Usually Safe |\n|---------|----------------------|\n| Django `{{ variable }}` | Auto-escaped by default |\n| React `{variable}` | Auto-escaped by default |\n| Vue `{{ variable }}` | Auto-escaped by default |\n| `User.objects.filter(id=input)` | ORM parameterizes queries |\n| `cursor.execute(\"...%s\", (input,))` | Parameterized query |\n| `innerHTML = \"\u003Cb>Loading...\u003C\u002Fb>\"` | Constant string, no user input |\n\n**Only flag these when:**\n- Django: `{{ var|safe }}`, `{% autoescape off %}`, `mark_safe(user_input)`\n- React: `dangerouslySetInnerHTML={{__html: userInput}}`\n- Vue: `v-html=\"userInput\"`\n- ORM: `.raw()`, `.extra()`, `RawSQL()` with string interpolation\n\n## Review Process\n\n### 1. Detect Context\n\nWhat type of code am I reviewing?\n\n| Code Type | Load These References |\n|-----------|----------------------|\n| API endpoints, routes | `authorization.md`, `authentication.md`, `injection.md` |\n| Frontend, templates | `xss.md`, `csrf.md` |\n| File handling, uploads | `file-security.md` |\n| Crypto, secrets, tokens | `cryptography.md`, `data-protection.md` |\n| Data serialization | `deserialization.md` |\n| External requests | `ssrf.md` |\n| Business workflows | `business-logic.md` |\n| GraphQL, REST design | `api-security.md` |\n| Config, headers, CORS | `misconfiguration.md` |\n| CI\u002FCD, dependencies | `supply-chain.md` |\n| Error handling | `error-handling.md` |\n| Audit, logging | `logging.md` |\n\n### 2. Load Language Guide\n\nBased on file extension or imports:\n\n| Indicators | Guide |\n|------------|-------|\n| `.py`, `django`, `flask`, `fastapi` | `languages\u002Fpython.md` |\n| `.js`, `.ts`, `express`, `react`, `vue`, `next` | `languages\u002Fjavascript.md` |\n\n### 3. Load Infrastructure Guide (if applicable)\n\n| File Type | Guide |\n|-----------|-------|\n| `Dockerfile`, `.dockerignore` | `infrastructure\u002Fdocker.md` |\n\n### 4. Research Before Flagging\n\n**For each potential issue, research the codebase to build confidence:**\n\n- Where does this value actually come from? Trace the data flow.\n- Is it configured at deployment (settings, env vars) or from user input?\n- Is there validation, sanitization, or allowlisting elsewhere?\n- What framework protections apply?\n\nOnly report issues where you have HIGH confidence after understanding the broader context.\n\n### 5. Verify Exploitability\n\nFor each potential finding, confirm:\n\n**Is the input attacker-controlled?**\n\n| Attacker-Controlled (Investigate) | Server-Controlled (Usually Safe) |\n|-----------------------------------|----------------------------------|\n| `request.GET`, `request.POST`, `request.args` | `settings.X`, `app.config['X']` |\n| `request.json`, `request.data`, `request.body` | `os.environ.get('X')` |\n| `request.headers` (most headers) | Hardcoded constants |\n| `request.cookies` (unsigned) | Internal service URLs from config |\n| URL path segments: `\u002Fusers\u002F\u003Cid>\u002F` | Database content from admin\u002Fsystem |\n| File uploads (content and names) | Signed session data |\n| Database content from other users | Framework settings |\n| WebSocket messages | |\n\n**Does the framework mitigate this?**\n- Check language guide for auto-escaping, parameterization\n- Check for middleware\u002Fdecorators that sanitize\n\n**Is there validation upstream?**\n- Input validation before this code\n- Sanitization libraries (DOMPurify, bleach, etc.)\n\n### 6. Report HIGH Confidence Only\n\nSkip theoretical issues. Report only what you've confirmed is exploitable after research.\n\n---\n\n## Severity Classification\n\n| Severity | Impact | Examples |\n|----------|--------|----------|\n| **Critical** | Direct exploit, severe impact, no auth required | RCE, SQL injection to data, auth bypass, hardcoded secrets |\n| **High** | Exploitable with conditions, significant impact | Stored XSS, SSRF to metadata, IDOR to sensitive data |\n| **Medium** | Specific conditions required, moderate impact | Reflected XSS, CSRF on state-changing actions, path traversal |\n| **Low** | Defense-in-depth, minimal direct impact | Missing headers, verbose errors, weak algorithms in non-critical context |\n\n---\n\n## Quick Patterns Reference\n\n### Always Flag (Critical)\n```\neval(user_input)           # Any language\nexec(user_input)           # Any language\npickle.loads(user_data)    # Python\nyaml.load(user_data)       # Python (not safe_load)\nunserialize($user_data)    # PHP\ndeserialize(user_data)     # Java ObjectInputStream\nshell=True + user_input    # Python subprocess\nchild_process.exec(user)   # Node.js\n```\n\n### Always Flag (High)\n```\ninnerHTML = userInput              # DOM XSS\ndangerouslySetInnerHTML={user}     # React XSS\nv-html=\"userInput\"                 # Vue XSS\nf\"SELECT * FROM x WHERE {user}\"    # SQL injection\n`SELECT * FROM x WHERE ${user}`    # SQL injection\nos.system(f\"cmd {user_input}\")     # Command injection\n```\n\n### Always Flag (Secrets)\n```\npassword = \"hardcoded\"\napi_key = \"sk-...\"\nAWS_SECRET_ACCESS_KEY = \"...\"\nprivate_key = \"-----BEGIN\"\n```\n\n### Check Context First (MUST Investigate Before Flagging)\n```\n# SSRF - ONLY if URL is from user input, NOT from settings\u002Fconfig\nrequests.get(request.GET['url'])     # FLAG: User-controlled URL\nrequests.get(settings.API_URL)       # SAFE: Server-controlled config\nrequests.get(f\"{settings.BASE}\u002F{x}\") # CHECK: Is 'x' user input?\n\n# Path traversal - ONLY if path is from user input\nopen(request.GET['file'])            # FLAG: User-controlled path\nopen(settings.LOG_PATH)              # SAFE: Server-controlled config\nopen(f\"{BASE_DIR}\u002F{filename}\")       # CHECK: Is 'filename' user input?\n\n# Open redirect - ONLY if URL is from user input\nredirect(request.GET['next'])        # FLAG: User-controlled redirect\nredirect(settings.LOGIN_URL)         # SAFE: Server-controlled config\n\n# Weak crypto - ONLY if used for security purposes\nhashlib.md5(file_content)            # SAFE: File checksums, caching\nhashlib.md5(password)                # FLAG: Password hashing\nrandom.random()                      # SAFE: Non-security uses (UI, sampling)\nrandom.random() for token            # FLAG: Security tokens need secrets module\n```\n\n---\n\n## Output Format\n\n```markdown\n## Security Review: [File\u002FComponent Name]\n\n### Summary\n- **Findings**: X (Y Critical, Z High, ...)\n- **Risk Level**: Critical\u002FHigh\u002FMedium\u002FLow\n- **Confidence**: High\u002FMixed\n\n### Findings\n\n#### [VULN-001] [Vulnerability Type] (Severity)\n- **Location**: `file.py:123`\n- **Confidence**: High\n- **Issue**: [What the vulnerability is]\n- **Impact**: [What an attacker could do]\n- **Evidence**:\n  ```python\n  [Vulnerable code snippet]\n  ```\n- **Fix**: [How to remediate]\n\n### Needs Verification\n\n#### [VERIFY-001] [Potential Issue]\n- **Location**: `file.py:456`\n- **Question**: [What needs to be verified]\n```\n\nIf no vulnerabilities found, state: \"No high-confidence vulnerabilities identified.\"\n\n---\n\n## Reference Files\n\n### Core Vulnerabilities (`references\u002F`)\n| File | Covers |\n|------|--------|\n| `injection.md` | SQL, NoSQL, OS command, LDAP, template injection |\n| `xss.md` | Reflected, stored, DOM-based XSS |\n| `authorization.md` | Authorization, IDOR, privilege escalation |\n| `authentication.md` | Sessions, credentials, password storage |\n| `cryptography.md` | Algorithms, key management, randomness |\n| `deserialization.md` | Pickle, YAML, Java, PHP deserialization |\n| `file-security.md` | Path traversal, uploads, XXE |\n| `ssrf.md` | Server-side request forgery |\n| `csrf.md` | Cross-site request forgery |\n| `data-protection.md` | Secrets exposure, PII, logging |\n| `api-security.md` | REST, GraphQL, mass assignment |\n| `business-logic.md` | Race conditions, workflow bypass |\n| `modern-threats.md` | Prototype pollution, LLM injection, WebSocket |\n| `misconfiguration.md` | Headers, CORS, debug mode, defaults |\n| `error-handling.md` | Fail-open, information disclosure |\n| `supply-chain.md` | Dependencies, build security |\n| `logging.md` | Audit failures, log injection |\n\n### Language Guides (`languages\u002F`)\n- `python.md` - Django, Flask, FastAPI patterns\n- `javascript.md` - Node, Express, React, Vue, Next.js\n\n### Infrastructure (`infrastructure\u002F`)\n- `docker.md` - Container security\n",{"data":35,"body":37},{"name":4,"description":6,"allowed-tools":36,"license":26},"Read, Grep, Glob, Bash, Task",{"type":38,"children":39},"root",[40,49,63,70,78,103,108,131,141,147,256,262,269,304,310,315,468,476,507,515,538,544,549,676,684,761,767,773,778,1032,1038,1043,1163,1169,1218,1224,1232,1255,1260,1266,1271,1279,1472,1480,1493,1501,1514,1520,1525,1529,1535,1646,1649,1655,1661,1671,1677,1686,1692,1701,1707,1716,1719,1725,2076,2093,2099,2116,2147,2156],{"type":41,"tag":42,"props":43,"children":45},"element","h1",{"id":44},"security-review-skill",[46],{"type":47,"value":48},"text","Security Review Skill",{"type":41,"tag":50,"props":51,"children":52},"p",{},[53,55,61],{"type":47,"value":54},"Identify exploitable security vulnerabilities in code. Report only ",{"type":41,"tag":56,"props":57,"children":58},"strong",{},[59],{"type":47,"value":60},"HIGH CONFIDENCE",{"type":47,"value":62}," findings—clear vulnerable patterns with attacker-controlled input.",{"type":41,"tag":64,"props":65,"children":67},"h2",{"id":66},"scope-research-vs-reporting",[68],{"type":47,"value":69},"Scope: Research vs. Reporting",{"type":41,"tag":50,"props":71,"children":72},{},[73],{"type":41,"tag":56,"props":74,"children":75},{},[76],{"type":47,"value":77},"CRITICAL DISTINCTION:",{"type":41,"tag":79,"props":80,"children":81},"ul",{},[82,93],{"type":41,"tag":83,"props":84,"children":85},"li",{},[86,91],{"type":41,"tag":56,"props":87,"children":88},{},[89],{"type":47,"value":90},"Report on",{"type":47,"value":92},": Only the specific file, diff, or code provided by the user",{"type":41,"tag":83,"props":94,"children":95},{},[96,101],{"type":41,"tag":56,"props":97,"children":98},{},[99],{"type":47,"value":100},"Research",{"type":47,"value":102},": The ENTIRE codebase to build confidence before reporting",{"type":41,"tag":50,"props":104,"children":105},{},[106],{"type":47,"value":107},"Before flagging any issue, you MUST research the codebase to understand:",{"type":41,"tag":79,"props":109,"children":110},{},[111,116,121,126],{"type":41,"tag":83,"props":112,"children":113},{},[114],{"type":47,"value":115},"Where does this input actually come from? (Trace data flow)",{"type":41,"tag":83,"props":117,"children":118},{},[119],{"type":47,"value":120},"Is there validation\u002Fsanitization elsewhere?",{"type":41,"tag":83,"props":122,"children":123},{},[124],{"type":47,"value":125},"How is this configured? (Check settings, config files, middleware)",{"type":41,"tag":83,"props":127,"children":128},{},[129],{"type":47,"value":130},"What framework protections exist?",{"type":41,"tag":50,"props":132,"children":133},{},[134,139],{"type":41,"tag":56,"props":135,"children":136},{},[137],{"type":47,"value":138},"Do NOT report issues based solely on pattern matching.",{"type":47,"value":140}," Investigate first, then report only what you're confident is exploitable.",{"type":41,"tag":64,"props":142,"children":144},{"id":143},"confidence-levels",[145],{"type":47,"value":146},"Confidence Levels",{"type":41,"tag":148,"props":149,"children":150},"table",{},[151,175],{"type":41,"tag":152,"props":153,"children":154},"thead",{},[155],{"type":41,"tag":156,"props":157,"children":158},"tr",{},[159,165,170],{"type":41,"tag":160,"props":161,"children":162},"th",{},[163],{"type":47,"value":164},"Level",{"type":41,"tag":160,"props":166,"children":167},{},[168],{"type":47,"value":169},"Criteria",{"type":41,"tag":160,"props":171,"children":172},{},[173],{"type":47,"value":174},"Action",{"type":41,"tag":176,"props":177,"children":178},"tbody",{},[179,206,232],{"type":41,"tag":156,"props":180,"children":181},{},[182,191,196],{"type":41,"tag":183,"props":184,"children":185},"td",{},[186],{"type":41,"tag":56,"props":187,"children":188},{},[189],{"type":47,"value":190},"HIGH",{"type":41,"tag":183,"props":192,"children":193},{},[194],{"type":47,"value":195},"Vulnerable pattern + attacker-controlled input confirmed",{"type":41,"tag":183,"props":197,"children":198},{},[199,204],{"type":41,"tag":56,"props":200,"children":201},{},[202],{"type":47,"value":203},"Report",{"type":47,"value":205}," with severity",{"type":41,"tag":156,"props":207,"children":208},{},[209,217,222],{"type":41,"tag":183,"props":210,"children":211},{},[212],{"type":41,"tag":56,"props":213,"children":214},{},[215],{"type":47,"value":216},"MEDIUM",{"type":41,"tag":183,"props":218,"children":219},{},[220],{"type":47,"value":221},"Vulnerable pattern, input source unclear",{"type":41,"tag":183,"props":223,"children":224},{},[225,230],{"type":41,"tag":56,"props":226,"children":227},{},[228],{"type":47,"value":229},"Note",{"type":47,"value":231}," as \"Needs verification\"",{"type":41,"tag":156,"props":233,"children":234},{},[235,243,248],{"type":41,"tag":183,"props":236,"children":237},{},[238],{"type":41,"tag":56,"props":239,"children":240},{},[241],{"type":47,"value":242},"LOW",{"type":41,"tag":183,"props":244,"children":245},{},[246],{"type":47,"value":247},"Theoretical, best practice, defense-in-depth",{"type":41,"tag":183,"props":249,"children":250},{},[251],{"type":41,"tag":56,"props":252,"children":253},{},[254],{"type":47,"value":255},"Do not report",{"type":41,"tag":64,"props":257,"children":259},{"id":258},"do-not-flag",[260],{"type":47,"value":261},"Do Not Flag",{"type":41,"tag":263,"props":264,"children":266},"h3",{"id":265},"general-rules",[267],{"type":47,"value":268},"General Rules",{"type":41,"tag":79,"props":270,"children":271},{},[272,277,282,299],{"type":41,"tag":83,"props":273,"children":274},{},[275],{"type":47,"value":276},"Test files (unless explicitly reviewing test security)",{"type":41,"tag":83,"props":278,"children":279},{},[280],{"type":47,"value":281},"Dead code, commented code, documentation strings",{"type":41,"tag":83,"props":283,"children":284},{},[285,287,292,294],{"type":47,"value":286},"Patterns using ",{"type":41,"tag":56,"props":288,"children":289},{},[290],{"type":47,"value":291},"constants",{"type":47,"value":293}," or ",{"type":41,"tag":56,"props":295,"children":296},{},[297],{"type":47,"value":298},"server-controlled configuration",{"type":41,"tag":83,"props":300,"children":301},{},[302],{"type":47,"value":303},"Code paths that require prior authentication to reach (note the auth requirement instead)",{"type":41,"tag":263,"props":305,"children":307},{"id":306},"server-controlled-values-not-attacker-controlled",[308],{"type":47,"value":309},"Server-Controlled Values (NOT Attacker-Controlled)",{"type":41,"tag":50,"props":311,"children":312},{},[313],{"type":47,"value":314},"These are configured by operators, not controlled by attackers:",{"type":41,"tag":148,"props":316,"children":317},{},[318,339],{"type":41,"tag":152,"props":319,"children":320},{},[321],{"type":41,"tag":156,"props":322,"children":323},{},[324,329,334],{"type":41,"tag":160,"props":325,"children":326},{},[327],{"type":47,"value":328},"Source",{"type":41,"tag":160,"props":330,"children":331},{},[332],{"type":47,"value":333},"Example",{"type":41,"tag":160,"props":335,"children":336},{},[337],{"type":47,"value":338},"Why It's Safe",{"type":41,"tag":176,"props":340,"children":341},{},[342,373,395,424,446],{"type":41,"tag":156,"props":343,"children":344},{},[345,350,368],{"type":41,"tag":183,"props":346,"children":347},{},[348],{"type":47,"value":349},"Django settings",{"type":41,"tag":183,"props":351,"children":352},{},[353,360,362],{"type":41,"tag":354,"props":355,"children":357},"code",{"className":356},[],[358],{"type":47,"value":359},"settings.API_URL",{"type":47,"value":361},", ",{"type":41,"tag":354,"props":363,"children":365},{"className":364},[],[366],{"type":47,"value":367},"settings.ALLOWED_HOSTS",{"type":41,"tag":183,"props":369,"children":370},{},[371],{"type":47,"value":372},"Set via config\u002Fenv at deployment",{"type":41,"tag":156,"props":374,"children":375},{},[376,381,390],{"type":41,"tag":183,"props":377,"children":378},{},[379],{"type":47,"value":380},"Environment variables",{"type":41,"tag":183,"props":382,"children":383},{},[384],{"type":41,"tag":354,"props":385,"children":387},{"className":386},[],[388],{"type":47,"value":389},"os.environ.get('DATABASE_URL')",{"type":41,"tag":183,"props":391,"children":392},{},[393],{"type":47,"value":394},"Deployment configuration",{"type":41,"tag":156,"props":396,"children":397},{},[398,403,419],{"type":41,"tag":183,"props":399,"children":400},{},[401],{"type":47,"value":402},"Config files",{"type":41,"tag":183,"props":404,"children":405},{},[406,412,413],{"type":41,"tag":354,"props":407,"children":409},{"className":408},[],[410],{"type":47,"value":411},"config.yaml",{"type":47,"value":361},{"type":41,"tag":354,"props":414,"children":416},{"className":415},[],[417],{"type":47,"value":418},"app.config['KEY']",{"type":41,"tag":183,"props":420,"children":421},{},[422],{"type":47,"value":423},"Server-side files",{"type":41,"tag":156,"props":425,"children":426},{},[427,432,441],{"type":41,"tag":183,"props":428,"children":429},{},[430],{"type":47,"value":431},"Framework constants",{"type":41,"tag":183,"props":433,"children":434},{},[435],{"type":41,"tag":354,"props":436,"children":438},{"className":437},[],[439],{"type":47,"value":440},"django.conf.settings.*",{"type":41,"tag":183,"props":442,"children":443},{},[444],{"type":47,"value":445},"Not user-modifiable",{"type":41,"tag":156,"props":447,"children":448},{},[449,454,463],{"type":41,"tag":183,"props":450,"children":451},{},[452],{"type":47,"value":453},"Hardcoded values",{"type":41,"tag":183,"props":455,"children":456},{},[457],{"type":41,"tag":354,"props":458,"children":460},{"className":459},[],[461],{"type":47,"value":462},"BASE_URL = \"https:\u002F\u002Fapi.internal\"",{"type":41,"tag":183,"props":464,"children":465},{},[466],{"type":47,"value":467},"Compile-time constants",{"type":41,"tag":50,"props":469,"children":470},{},[471],{"type":41,"tag":56,"props":472,"children":473},{},[474],{"type":47,"value":475},"SSRF Example - NOT a vulnerability:",{"type":41,"tag":477,"props":478,"children":483},"pre",{"className":479,"code":480,"language":481,"meta":482,"style":482},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# SAFE: URL comes from Django settings (server-controlled)\nresponse = requests.get(f\"{settings.SEER_AUTOFIX_URL}{path}\")\n","python","",[484],{"type":41,"tag":354,"props":485,"children":486},{"__ignoreMap":482},[487,498],{"type":41,"tag":488,"props":489,"children":492},"span",{"class":490,"line":491},"line",1,[493],{"type":41,"tag":488,"props":494,"children":495},{},[496],{"type":47,"value":497},"# SAFE: URL comes from Django settings (server-controlled)\n",{"type":41,"tag":488,"props":499,"children":501},{"class":490,"line":500},2,[502],{"type":41,"tag":488,"props":503,"children":504},{},[505],{"type":47,"value":506},"response = requests.get(f\"{settings.SEER_AUTOFIX_URL}{path}\")\n",{"type":41,"tag":50,"props":508,"children":509},{},[510],{"type":41,"tag":56,"props":511,"children":512},{},[513],{"type":47,"value":514},"SSRF Example - IS a vulnerability:",{"type":41,"tag":477,"props":516,"children":518},{"className":479,"code":517,"language":481,"meta":482,"style":482},"# VULNERABLE: URL comes from request (attacker-controlled)\nresponse = requests.get(request.GET.get('url'))\n",[519],{"type":41,"tag":354,"props":520,"children":521},{"__ignoreMap":482},[522,530],{"type":41,"tag":488,"props":523,"children":524},{"class":490,"line":491},[525],{"type":41,"tag":488,"props":526,"children":527},{},[528],{"type":47,"value":529},"# VULNERABLE: URL comes from request (attacker-controlled)\n",{"type":41,"tag":488,"props":531,"children":532},{"class":490,"line":500},[533],{"type":41,"tag":488,"props":534,"children":535},{},[536],{"type":47,"value":537},"response = requests.get(request.GET.get('url'))\n",{"type":41,"tag":263,"props":539,"children":541},{"id":540},"framework-mitigated-patterns",[542],{"type":47,"value":543},"Framework-Mitigated Patterns",{"type":41,"tag":50,"props":545,"children":546},{},[547],{"type":47,"value":548},"Check language guides before flagging. Common false positives:",{"type":41,"tag":148,"props":550,"children":551},{},[552,568],{"type":41,"tag":152,"props":553,"children":554},{},[555],{"type":41,"tag":156,"props":556,"children":557},{},[558,563],{"type":41,"tag":160,"props":559,"children":560},{},[561],{"type":47,"value":562},"Pattern",{"type":41,"tag":160,"props":564,"children":565},{},[566],{"type":47,"value":567},"Why It's Usually Safe",{"type":41,"tag":176,"props":569,"children":570},{},[571,590,608,625,642,659],{"type":41,"tag":156,"props":572,"children":573},{},[574,585],{"type":41,"tag":183,"props":575,"children":576},{},[577,579],{"type":47,"value":578},"Django ",{"type":41,"tag":354,"props":580,"children":582},{"className":581},[],[583],{"type":47,"value":584},"{{ variable }}",{"type":41,"tag":183,"props":586,"children":587},{},[588],{"type":47,"value":589},"Auto-escaped by default",{"type":41,"tag":156,"props":591,"children":592},{},[593,604],{"type":41,"tag":183,"props":594,"children":595},{},[596,598],{"type":47,"value":597},"React ",{"type":41,"tag":354,"props":599,"children":601},{"className":600},[],[602],{"type":47,"value":603},"{variable}",{"type":41,"tag":183,"props":605,"children":606},{},[607],{"type":47,"value":589},{"type":41,"tag":156,"props":609,"children":610},{},[611,621],{"type":41,"tag":183,"props":612,"children":613},{},[614,616],{"type":47,"value":615},"Vue ",{"type":41,"tag":354,"props":617,"children":619},{"className":618},[],[620],{"type":47,"value":584},{"type":41,"tag":183,"props":622,"children":623},{},[624],{"type":47,"value":589},{"type":41,"tag":156,"props":626,"children":627},{},[628,637],{"type":41,"tag":183,"props":629,"children":630},{},[631],{"type":41,"tag":354,"props":632,"children":634},{"className":633},[],[635],{"type":47,"value":636},"User.objects.filter(id=input)",{"type":41,"tag":183,"props":638,"children":639},{},[640],{"type":47,"value":641},"ORM parameterizes queries",{"type":41,"tag":156,"props":643,"children":644},{},[645,654],{"type":41,"tag":183,"props":646,"children":647},{},[648],{"type":41,"tag":354,"props":649,"children":651},{"className":650},[],[652],{"type":47,"value":653},"cursor.execute(\"...%s\", (input,))",{"type":41,"tag":183,"props":655,"children":656},{},[657],{"type":47,"value":658},"Parameterized query",{"type":41,"tag":156,"props":660,"children":661},{},[662,671],{"type":41,"tag":183,"props":663,"children":664},{},[665],{"type":41,"tag":354,"props":666,"children":668},{"className":667},[],[669],{"type":47,"value":670},"innerHTML = \"\u003Cb>Loading...\u003C\u002Fb>\"",{"type":41,"tag":183,"props":672,"children":673},{},[674],{"type":47,"value":675},"Constant string, no user input",{"type":41,"tag":50,"props":677,"children":678},{},[679],{"type":41,"tag":56,"props":680,"children":681},{},[682],{"type":47,"value":683},"Only flag these when:",{"type":41,"tag":79,"props":685,"children":686},{},[687,712,723,734],{"type":41,"tag":83,"props":688,"children":689},{},[690,692,698,699,705,706],{"type":47,"value":691},"Django: ",{"type":41,"tag":354,"props":693,"children":695},{"className":694},[],[696],{"type":47,"value":697},"{{ var|safe }}",{"type":47,"value":361},{"type":41,"tag":354,"props":700,"children":702},{"className":701},[],[703],{"type":47,"value":704},"{% autoescape off %}",{"type":47,"value":361},{"type":41,"tag":354,"props":707,"children":709},{"className":708},[],[710],{"type":47,"value":711},"mark_safe(user_input)",{"type":41,"tag":83,"props":713,"children":714},{},[715,717],{"type":47,"value":716},"React: ",{"type":41,"tag":354,"props":718,"children":720},{"className":719},[],[721],{"type":47,"value":722},"dangerouslySetInnerHTML={{__html: userInput}}",{"type":41,"tag":83,"props":724,"children":725},{},[726,728],{"type":47,"value":727},"Vue: ",{"type":41,"tag":354,"props":729,"children":731},{"className":730},[],[732],{"type":47,"value":733},"v-html=\"userInput\"",{"type":41,"tag":83,"props":735,"children":736},{},[737,739,745,746,752,753,759],{"type":47,"value":738},"ORM: ",{"type":41,"tag":354,"props":740,"children":742},{"className":741},[],[743],{"type":47,"value":744},".raw()",{"type":47,"value":361},{"type":41,"tag":354,"props":747,"children":749},{"className":748},[],[750],{"type":47,"value":751},".extra()",{"type":47,"value":361},{"type":41,"tag":354,"props":754,"children":756},{"className":755},[],[757],{"type":47,"value":758},"RawSQL()",{"type":47,"value":760}," with string interpolation",{"type":41,"tag":64,"props":762,"children":764},{"id":763},"review-process",[765],{"type":47,"value":766},"Review Process",{"type":41,"tag":263,"props":768,"children":770},{"id":769},"_1-detect-context",[771],{"type":47,"value":772},"1. Detect Context",{"type":41,"tag":50,"props":774,"children":775},{},[776],{"type":47,"value":777},"What type of code am I reviewing?",{"type":41,"tag":148,"props":779,"children":780},{},[781,797],{"type":41,"tag":152,"props":782,"children":783},{},[784],{"type":41,"tag":156,"props":785,"children":786},{},[787,792],{"type":41,"tag":160,"props":788,"children":789},{},[790],{"type":47,"value":791},"Code Type",{"type":41,"tag":160,"props":793,"children":794},{},[795],{"type":47,"value":796},"Load These References",{"type":41,"tag":176,"props":798,"children":799},{},[800,831,855,872,896,913,930,947,964,981,998,1015],{"type":41,"tag":156,"props":801,"children":802},{},[803,808],{"type":41,"tag":183,"props":804,"children":805},{},[806],{"type":47,"value":807},"API endpoints, routes",{"type":41,"tag":183,"props":809,"children":810},{},[811,817,818,824,825],{"type":41,"tag":354,"props":812,"children":814},{"className":813},[],[815],{"type":47,"value":816},"authorization.md",{"type":47,"value":361},{"type":41,"tag":354,"props":819,"children":821},{"className":820},[],[822],{"type":47,"value":823},"authentication.md",{"type":47,"value":361},{"type":41,"tag":354,"props":826,"children":828},{"className":827},[],[829],{"type":47,"value":830},"injection.md",{"type":41,"tag":156,"props":832,"children":833},{},[834,839],{"type":41,"tag":183,"props":835,"children":836},{},[837],{"type":47,"value":838},"Frontend, templates",{"type":41,"tag":183,"props":840,"children":841},{},[842,848,849],{"type":41,"tag":354,"props":843,"children":845},{"className":844},[],[846],{"type":47,"value":847},"xss.md",{"type":47,"value":361},{"type":41,"tag":354,"props":850,"children":852},{"className":851},[],[853],{"type":47,"value":854},"csrf.md",{"type":41,"tag":156,"props":856,"children":857},{},[858,863],{"type":41,"tag":183,"props":859,"children":860},{},[861],{"type":47,"value":862},"File handling, uploads",{"type":41,"tag":183,"props":864,"children":865},{},[866],{"type":41,"tag":354,"props":867,"children":869},{"className":868},[],[870],{"type":47,"value":871},"file-security.md",{"type":41,"tag":156,"props":873,"children":874},{},[875,880],{"type":41,"tag":183,"props":876,"children":877},{},[878],{"type":47,"value":879},"Crypto, secrets, tokens",{"type":41,"tag":183,"props":881,"children":882},{},[883,889,890],{"type":41,"tag":354,"props":884,"children":886},{"className":885},[],[887],{"type":47,"value":888},"cryptography.md",{"type":47,"value":361},{"type":41,"tag":354,"props":891,"children":893},{"className":892},[],[894],{"type":47,"value":895},"data-protection.md",{"type":41,"tag":156,"props":897,"children":898},{},[899,904],{"type":41,"tag":183,"props":900,"children":901},{},[902],{"type":47,"value":903},"Data serialization",{"type":41,"tag":183,"props":905,"children":906},{},[907],{"type":41,"tag":354,"props":908,"children":910},{"className":909},[],[911],{"type":47,"value":912},"deserialization.md",{"type":41,"tag":156,"props":914,"children":915},{},[916,921],{"type":41,"tag":183,"props":917,"children":918},{},[919],{"type":47,"value":920},"External requests",{"type":41,"tag":183,"props":922,"children":923},{},[924],{"type":41,"tag":354,"props":925,"children":927},{"className":926},[],[928],{"type":47,"value":929},"ssrf.md",{"type":41,"tag":156,"props":931,"children":932},{},[933,938],{"type":41,"tag":183,"props":934,"children":935},{},[936],{"type":47,"value":937},"Business workflows",{"type":41,"tag":183,"props":939,"children":940},{},[941],{"type":41,"tag":354,"props":942,"children":944},{"className":943},[],[945],{"type":47,"value":946},"business-logic.md",{"type":41,"tag":156,"props":948,"children":949},{},[950,955],{"type":41,"tag":183,"props":951,"children":952},{},[953],{"type":47,"value":954},"GraphQL, REST design",{"type":41,"tag":183,"props":956,"children":957},{},[958],{"type":41,"tag":354,"props":959,"children":961},{"className":960},[],[962],{"type":47,"value":963},"api-security.md",{"type":41,"tag":156,"props":965,"children":966},{},[967,972],{"type":41,"tag":183,"props":968,"children":969},{},[970],{"type":47,"value":971},"Config, headers, CORS",{"type":41,"tag":183,"props":973,"children":974},{},[975],{"type":41,"tag":354,"props":976,"children":978},{"className":977},[],[979],{"type":47,"value":980},"misconfiguration.md",{"type":41,"tag":156,"props":982,"children":983},{},[984,989],{"type":41,"tag":183,"props":985,"children":986},{},[987],{"type":47,"value":988},"CI\u002FCD, dependencies",{"type":41,"tag":183,"props":990,"children":991},{},[992],{"type":41,"tag":354,"props":993,"children":995},{"className":994},[],[996],{"type":47,"value":997},"supply-chain.md",{"type":41,"tag":156,"props":999,"children":1000},{},[1001,1006],{"type":41,"tag":183,"props":1002,"children":1003},{},[1004],{"type":47,"value":1005},"Error handling",{"type":41,"tag":183,"props":1007,"children":1008},{},[1009],{"type":41,"tag":354,"props":1010,"children":1012},{"className":1011},[],[1013],{"type":47,"value":1014},"error-handling.md",{"type":41,"tag":156,"props":1016,"children":1017},{},[1018,1023],{"type":41,"tag":183,"props":1019,"children":1020},{},[1021],{"type":47,"value":1022},"Audit, logging",{"type":41,"tag":183,"props":1024,"children":1025},{},[1026],{"type":41,"tag":354,"props":1027,"children":1029},{"className":1028},[],[1030],{"type":47,"value":1031},"logging.md",{"type":41,"tag":263,"props":1033,"children":1035},{"id":1034},"_2-load-language-guide",[1036],{"type":47,"value":1037},"2. Load Language Guide",{"type":41,"tag":50,"props":1039,"children":1040},{},[1041],{"type":47,"value":1042},"Based on file extension or imports:",{"type":41,"tag":148,"props":1044,"children":1045},{},[1046,1062],{"type":41,"tag":152,"props":1047,"children":1048},{},[1049],{"type":41,"tag":156,"props":1050,"children":1051},{},[1052,1057],{"type":41,"tag":160,"props":1053,"children":1054},{},[1055],{"type":47,"value":1056},"Indicators",{"type":41,"tag":160,"props":1058,"children":1059},{},[1060],{"type":47,"value":1061},"Guide",{"type":41,"tag":176,"props":1063,"children":1064},{},[1065,1107],{"type":41,"tag":156,"props":1066,"children":1067},{},[1068,1098],{"type":41,"tag":183,"props":1069,"children":1070},{},[1071,1077,1078,1084,1085,1091,1092],{"type":41,"tag":354,"props":1072,"children":1074},{"className":1073},[],[1075],{"type":47,"value":1076},".py",{"type":47,"value":361},{"type":41,"tag":354,"props":1079,"children":1081},{"className":1080},[],[1082],{"type":47,"value":1083},"django",{"type":47,"value":361},{"type":41,"tag":354,"props":1086,"children":1088},{"className":1087},[],[1089],{"type":47,"value":1090},"flask",{"type":47,"value":361},{"type":41,"tag":354,"props":1093,"children":1095},{"className":1094},[],[1096],{"type":47,"value":1097},"fastapi",{"type":41,"tag":183,"props":1099,"children":1100},{},[1101],{"type":41,"tag":354,"props":1102,"children":1104},{"className":1103},[],[1105],{"type":47,"value":1106},"languages\u002Fpython.md",{"type":41,"tag":156,"props":1108,"children":1109},{},[1110,1154],{"type":41,"tag":183,"props":1111,"children":1112},{},[1113,1119,1120,1126,1127,1133,1134,1140,1141,1147,1148],{"type":41,"tag":354,"props":1114,"children":1116},{"className":1115},[],[1117],{"type":47,"value":1118},".js",{"type":47,"value":361},{"type":41,"tag":354,"props":1121,"children":1123},{"className":1122},[],[1124],{"type":47,"value":1125},".ts",{"type":47,"value":361},{"type":41,"tag":354,"props":1128,"children":1130},{"className":1129},[],[1131],{"type":47,"value":1132},"express",{"type":47,"value":361},{"type":41,"tag":354,"props":1135,"children":1137},{"className":1136},[],[1138],{"type":47,"value":1139},"react",{"type":47,"value":361},{"type":41,"tag":354,"props":1142,"children":1144},{"className":1143},[],[1145],{"type":47,"value":1146},"vue",{"type":47,"value":361},{"type":41,"tag":354,"props":1149,"children":1151},{"className":1150},[],[1152],{"type":47,"value":1153},"next",{"type":41,"tag":183,"props":1155,"children":1156},{},[1157],{"type":41,"tag":354,"props":1158,"children":1160},{"className":1159},[],[1161],{"type":47,"value":1162},"languages\u002Fjavascript.md",{"type":41,"tag":263,"props":1164,"children":1166},{"id":1165},"_3-load-infrastructure-guide-if-applicable",[1167],{"type":47,"value":1168},"3. Load Infrastructure Guide (if applicable)",{"type":41,"tag":148,"props":1170,"children":1171},{},[1172,1187],{"type":41,"tag":152,"props":1173,"children":1174},{},[1175],{"type":41,"tag":156,"props":1176,"children":1177},{},[1178,1183],{"type":41,"tag":160,"props":1179,"children":1180},{},[1181],{"type":47,"value":1182},"File Type",{"type":41,"tag":160,"props":1184,"children":1185},{},[1186],{"type":47,"value":1061},{"type":41,"tag":176,"props":1188,"children":1189},{},[1190],{"type":41,"tag":156,"props":1191,"children":1192},{},[1193,1209],{"type":41,"tag":183,"props":1194,"children":1195},{},[1196,1202,1203],{"type":41,"tag":354,"props":1197,"children":1199},{"className":1198},[],[1200],{"type":47,"value":1201},"Dockerfile",{"type":47,"value":361},{"type":41,"tag":354,"props":1204,"children":1206},{"className":1205},[],[1207],{"type":47,"value":1208},".dockerignore",{"type":41,"tag":183,"props":1210,"children":1211},{},[1212],{"type":41,"tag":354,"props":1213,"children":1215},{"className":1214},[],[1216],{"type":47,"value":1217},"infrastructure\u002Fdocker.md",{"type":41,"tag":263,"props":1219,"children":1221},{"id":1220},"_4-research-before-flagging",[1222],{"type":47,"value":1223},"4. Research Before Flagging",{"type":41,"tag":50,"props":1225,"children":1226},{},[1227],{"type":41,"tag":56,"props":1228,"children":1229},{},[1230],{"type":47,"value":1231},"For each potential issue, research the codebase to build confidence:",{"type":41,"tag":79,"props":1233,"children":1234},{},[1235,1240,1245,1250],{"type":41,"tag":83,"props":1236,"children":1237},{},[1238],{"type":47,"value":1239},"Where does this value actually come from? Trace the data flow.",{"type":41,"tag":83,"props":1241,"children":1242},{},[1243],{"type":47,"value":1244},"Is it configured at deployment (settings, env vars) or from user input?",{"type":41,"tag":83,"props":1246,"children":1247},{},[1248],{"type":47,"value":1249},"Is there validation, sanitization, or allowlisting elsewhere?",{"type":41,"tag":83,"props":1251,"children":1252},{},[1253],{"type":47,"value":1254},"What framework protections apply?",{"type":41,"tag":50,"props":1256,"children":1257},{},[1258],{"type":47,"value":1259},"Only report issues where you have HIGH confidence after understanding the broader context.",{"type":41,"tag":263,"props":1261,"children":1263},{"id":1262},"_5-verify-exploitability",[1264],{"type":47,"value":1265},"5. Verify Exploitability",{"type":41,"tag":50,"props":1267,"children":1268},{},[1269],{"type":47,"value":1270},"For each potential finding, confirm:",{"type":41,"tag":50,"props":1272,"children":1273},{},[1274],{"type":41,"tag":56,"props":1275,"children":1276},{},[1277],{"type":47,"value":1278},"Is the input attacker-controlled?",{"type":41,"tag":148,"props":1280,"children":1281},{},[1282,1298],{"type":41,"tag":152,"props":1283,"children":1284},{},[1285],{"type":41,"tag":156,"props":1286,"children":1287},{},[1288,1293],{"type":41,"tag":160,"props":1289,"children":1290},{},[1291],{"type":47,"value":1292},"Attacker-Controlled (Investigate)",{"type":41,"tag":160,"props":1294,"children":1295},{},[1296],{"type":47,"value":1297},"Server-Controlled (Usually Safe)",{"type":41,"tag":176,"props":1299,"children":1300},{},[1301,1343,1378,1397,1416,1435,1448,1461],{"type":41,"tag":156,"props":1302,"children":1303},{},[1304,1327],{"type":41,"tag":183,"props":1305,"children":1306},{},[1307,1313,1314,1320,1321],{"type":41,"tag":354,"props":1308,"children":1310},{"className":1309},[],[1311],{"type":47,"value":1312},"request.GET",{"type":47,"value":361},{"type":41,"tag":354,"props":1315,"children":1317},{"className":1316},[],[1318],{"type":47,"value":1319},"request.POST",{"type":47,"value":361},{"type":41,"tag":354,"props":1322,"children":1324},{"className":1323},[],[1325],{"type":47,"value":1326},"request.args",{"type":41,"tag":183,"props":1328,"children":1329},{},[1330,1336,1337],{"type":41,"tag":354,"props":1331,"children":1333},{"className":1332},[],[1334],{"type":47,"value":1335},"settings.X",{"type":47,"value":361},{"type":41,"tag":354,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":47,"value":1342},"app.config['X']",{"type":41,"tag":156,"props":1344,"children":1345},{},[1346,1369],{"type":41,"tag":183,"props":1347,"children":1348},{},[1349,1355,1356,1362,1363],{"type":41,"tag":354,"props":1350,"children":1352},{"className":1351},[],[1353],{"type":47,"value":1354},"request.json",{"type":47,"value":361},{"type":41,"tag":354,"props":1357,"children":1359},{"className":1358},[],[1360],{"type":47,"value":1361},"request.data",{"type":47,"value":361},{"type":41,"tag":354,"props":1364,"children":1366},{"className":1365},[],[1367],{"type":47,"value":1368},"request.body",{"type":41,"tag":183,"props":1370,"children":1371},{},[1372],{"type":41,"tag":354,"props":1373,"children":1375},{"className":1374},[],[1376],{"type":47,"value":1377},"os.environ.get('X')",{"type":41,"tag":156,"props":1379,"children":1380},{},[1381,1392],{"type":41,"tag":183,"props":1382,"children":1383},{},[1384,1390],{"type":41,"tag":354,"props":1385,"children":1387},{"className":1386},[],[1388],{"type":47,"value":1389},"request.headers",{"type":47,"value":1391}," (most headers)",{"type":41,"tag":183,"props":1393,"children":1394},{},[1395],{"type":47,"value":1396},"Hardcoded constants",{"type":41,"tag":156,"props":1398,"children":1399},{},[1400,1411],{"type":41,"tag":183,"props":1401,"children":1402},{},[1403,1409],{"type":41,"tag":354,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":47,"value":1408},"request.cookies",{"type":47,"value":1410}," (unsigned)",{"type":41,"tag":183,"props":1412,"children":1413},{},[1414],{"type":47,"value":1415},"Internal service URLs from config",{"type":41,"tag":156,"props":1417,"children":1418},{},[1419,1430],{"type":41,"tag":183,"props":1420,"children":1421},{},[1422,1424],{"type":47,"value":1423},"URL path segments: ",{"type":41,"tag":354,"props":1425,"children":1427},{"className":1426},[],[1428],{"type":47,"value":1429},"\u002Fusers\u002F\u003Cid>\u002F",{"type":41,"tag":183,"props":1431,"children":1432},{},[1433],{"type":47,"value":1434},"Database content from admin\u002Fsystem",{"type":41,"tag":156,"props":1436,"children":1437},{},[1438,1443],{"type":41,"tag":183,"props":1439,"children":1440},{},[1441],{"type":47,"value":1442},"File uploads (content and names)",{"type":41,"tag":183,"props":1444,"children":1445},{},[1446],{"type":47,"value":1447},"Signed session data",{"type":41,"tag":156,"props":1449,"children":1450},{},[1451,1456],{"type":41,"tag":183,"props":1452,"children":1453},{},[1454],{"type":47,"value":1455},"Database content from other users",{"type":41,"tag":183,"props":1457,"children":1458},{},[1459],{"type":47,"value":1460},"Framework settings",{"type":41,"tag":156,"props":1462,"children":1463},{},[1464,1469],{"type":41,"tag":183,"props":1465,"children":1466},{},[1467],{"type":47,"value":1468},"WebSocket messages",{"type":41,"tag":183,"props":1470,"children":1471},{},[],{"type":41,"tag":50,"props":1473,"children":1474},{},[1475],{"type":41,"tag":56,"props":1476,"children":1477},{},[1478],{"type":47,"value":1479},"Does the framework mitigate this?",{"type":41,"tag":79,"props":1481,"children":1482},{},[1483,1488],{"type":41,"tag":83,"props":1484,"children":1485},{},[1486],{"type":47,"value":1487},"Check language guide for auto-escaping, parameterization",{"type":41,"tag":83,"props":1489,"children":1490},{},[1491],{"type":47,"value":1492},"Check for middleware\u002Fdecorators that sanitize",{"type":41,"tag":50,"props":1494,"children":1495},{},[1496],{"type":41,"tag":56,"props":1497,"children":1498},{},[1499],{"type":47,"value":1500},"Is there validation upstream?",{"type":41,"tag":79,"props":1502,"children":1503},{},[1504,1509],{"type":41,"tag":83,"props":1505,"children":1506},{},[1507],{"type":47,"value":1508},"Input validation before this code",{"type":41,"tag":83,"props":1510,"children":1511},{},[1512],{"type":47,"value":1513},"Sanitization libraries (DOMPurify, bleach, etc.)",{"type":41,"tag":263,"props":1515,"children":1517},{"id":1516},"_6-report-high-confidence-only",[1518],{"type":47,"value":1519},"6. Report HIGH Confidence Only",{"type":41,"tag":50,"props":1521,"children":1522},{},[1523],{"type":47,"value":1524},"Skip theoretical issues. Report only what you've confirmed is exploitable after research.",{"type":41,"tag":1526,"props":1527,"children":1528},"hr",{},[],{"type":41,"tag":64,"props":1530,"children":1532},{"id":1531},"severity-classification",[1533],{"type":47,"value":1534},"Severity Classification",{"type":41,"tag":148,"props":1536,"children":1537},{},[1538,1559],{"type":41,"tag":152,"props":1539,"children":1540},{},[1541],{"type":41,"tag":156,"props":1542,"children":1543},{},[1544,1549,1554],{"type":41,"tag":160,"props":1545,"children":1546},{},[1547],{"type":47,"value":1548},"Severity",{"type":41,"tag":160,"props":1550,"children":1551},{},[1552],{"type":47,"value":1553},"Impact",{"type":41,"tag":160,"props":1555,"children":1556},{},[1557],{"type":47,"value":1558},"Examples",{"type":41,"tag":176,"props":1560,"children":1561},{},[1562,1583,1604,1625],{"type":41,"tag":156,"props":1563,"children":1564},{},[1565,1573,1578],{"type":41,"tag":183,"props":1566,"children":1567},{},[1568],{"type":41,"tag":56,"props":1569,"children":1570},{},[1571],{"type":47,"value":1572},"Critical",{"type":41,"tag":183,"props":1574,"children":1575},{},[1576],{"type":47,"value":1577},"Direct exploit, severe impact, no auth required",{"type":41,"tag":183,"props":1579,"children":1580},{},[1581],{"type":47,"value":1582},"RCE, SQL injection to data, auth bypass, hardcoded secrets",{"type":41,"tag":156,"props":1584,"children":1585},{},[1586,1594,1599],{"type":41,"tag":183,"props":1587,"children":1588},{},[1589],{"type":41,"tag":56,"props":1590,"children":1591},{},[1592],{"type":47,"value":1593},"High",{"type":41,"tag":183,"props":1595,"children":1596},{},[1597],{"type":47,"value":1598},"Exploitable with conditions, significant impact",{"type":41,"tag":183,"props":1600,"children":1601},{},[1602],{"type":47,"value":1603},"Stored XSS, SSRF to metadata, IDOR to sensitive data",{"type":41,"tag":156,"props":1605,"children":1606},{},[1607,1615,1620],{"type":41,"tag":183,"props":1608,"children":1609},{},[1610],{"type":41,"tag":56,"props":1611,"children":1612},{},[1613],{"type":47,"value":1614},"Medium",{"type":41,"tag":183,"props":1616,"children":1617},{},[1618],{"type":47,"value":1619},"Specific conditions required, moderate impact",{"type":41,"tag":183,"props":1621,"children":1622},{},[1623],{"type":47,"value":1624},"Reflected XSS, CSRF on state-changing actions, path traversal",{"type":41,"tag":156,"props":1626,"children":1627},{},[1628,1636,1641],{"type":41,"tag":183,"props":1629,"children":1630},{},[1631],{"type":41,"tag":56,"props":1632,"children":1633},{},[1634],{"type":47,"value":1635},"Low",{"type":41,"tag":183,"props":1637,"children":1638},{},[1639],{"type":47,"value":1640},"Defense-in-depth, minimal direct impact",{"type":41,"tag":183,"props":1642,"children":1643},{},[1644],{"type":47,"value":1645},"Missing headers, verbose errors, weak algorithms in non-critical context",{"type":41,"tag":1526,"props":1647,"children":1648},{},[],{"type":41,"tag":64,"props":1650,"children":1652},{"id":1651},"quick-patterns-reference",[1653],{"type":47,"value":1654},"Quick Patterns Reference",{"type":41,"tag":263,"props":1656,"children":1658},{"id":1657},"always-flag-critical",[1659],{"type":47,"value":1660},"Always Flag (Critical)",{"type":41,"tag":477,"props":1662,"children":1666},{"className":1663,"code":1665,"language":47},[1664],"language-text","eval(user_input)           # Any language\nexec(user_input)           # Any language\npickle.loads(user_data)    # Python\nyaml.load(user_data)       # Python (not safe_load)\nunserialize($user_data)    # PHP\ndeserialize(user_data)     # Java ObjectInputStream\nshell=True + user_input    # Python subprocess\nchild_process.exec(user)   # Node.js\n",[1667],{"type":41,"tag":354,"props":1668,"children":1669},{"__ignoreMap":482},[1670],{"type":47,"value":1665},{"type":41,"tag":263,"props":1672,"children":1674},{"id":1673},"always-flag-high",[1675],{"type":47,"value":1676},"Always Flag (High)",{"type":41,"tag":477,"props":1678,"children":1681},{"className":1679,"code":1680,"language":47},[1664],"innerHTML = userInput              # DOM XSS\ndangerouslySetInnerHTML={user}     # React XSS\nv-html=\"userInput\"                 # Vue XSS\nf\"SELECT * FROM x WHERE {user}\"    # SQL injection\n`SELECT * FROM x WHERE ${user}`    # SQL injection\nos.system(f\"cmd {user_input}\")     # Command injection\n",[1682],{"type":41,"tag":354,"props":1683,"children":1684},{"__ignoreMap":482},[1685],{"type":47,"value":1680},{"type":41,"tag":263,"props":1687,"children":1689},{"id":1688},"always-flag-secrets",[1690],{"type":47,"value":1691},"Always Flag (Secrets)",{"type":41,"tag":477,"props":1693,"children":1696},{"className":1694,"code":1695,"language":47},[1664],"password = \"hardcoded\"\napi_key = \"sk-...\"\nAWS_SECRET_ACCESS_KEY = \"...\"\nprivate_key = \"-----BEGIN\"\n",[1697],{"type":41,"tag":354,"props":1698,"children":1699},{"__ignoreMap":482},[1700],{"type":47,"value":1695},{"type":41,"tag":263,"props":1702,"children":1704},{"id":1703},"check-context-first-must-investigate-before-flagging",[1705],{"type":47,"value":1706},"Check Context First (MUST Investigate Before Flagging)",{"type":41,"tag":477,"props":1708,"children":1711},{"className":1709,"code":1710,"language":47},[1664],"# SSRF - ONLY if URL is from user input, NOT from settings\u002Fconfig\nrequests.get(request.GET['url'])     # FLAG: User-controlled URL\nrequests.get(settings.API_URL)       # SAFE: Server-controlled config\nrequests.get(f\"{settings.BASE}\u002F{x}\") # CHECK: Is 'x' user input?\n\n# Path traversal - ONLY if path is from user input\nopen(request.GET['file'])            # FLAG: User-controlled path\nopen(settings.LOG_PATH)              # SAFE: Server-controlled config\nopen(f\"{BASE_DIR}\u002F{filename}\")       # CHECK: Is 'filename' user input?\n\n# Open redirect - ONLY if URL is from user input\nredirect(request.GET['next'])        # FLAG: User-controlled redirect\nredirect(settings.LOGIN_URL)         # SAFE: Server-controlled config\n\n# Weak crypto - ONLY if used for security purposes\nhashlib.md5(file_content)            # SAFE: File checksums, caching\nhashlib.md5(password)                # FLAG: Password hashing\nrandom.random()                      # SAFE: Non-security uses (UI, sampling)\nrandom.random() for token            # FLAG: Security tokens need secrets module\n",[1712],{"type":41,"tag":354,"props":1713,"children":1714},{"__ignoreMap":482},[1715],{"type":47,"value":1710},{"type":41,"tag":1526,"props":1717,"children":1718},{},[],{"type":41,"tag":64,"props":1720,"children":1722},{"id":1721},"output-format",[1723],{"type":47,"value":1724},"Output Format",{"type":41,"tag":477,"props":1726,"children":1730},{"className":1727,"code":1728,"language":1729,"meta":482,"style":482},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","## Security Review: [File\u002FComponent Name]\n\n### Summary\n- **Findings**: X (Y Critical, Z High, ...)\n- **Risk Level**: Critical\u002FHigh\u002FMedium\u002FLow\n- **Confidence**: High\u002FMixed\n\n### Findings\n\n#### [VULN-001] [Vulnerability Type] (Severity)\n- **Location**: `file.py:123`\n- **Confidence**: High\n- **Issue**: [What the vulnerability is]\n- **Impact**: [What an attacker could do]\n- **Evidence**:\n  ```python\n  [Vulnerable code snippet]\n","markdown",[1731],{"type":41,"tag":354,"props":1732,"children":1733},{"__ignoreMap":482},[1734,1749,1758,1772,1804,1829,1855,1863,1876,1884,1909,1950,1975,2001,2026,2052,2067],{"type":41,"tag":488,"props":1735,"children":1736},{"class":490,"line":491},[1737,1743],{"type":41,"tag":488,"props":1738,"children":1740},{"style":1739},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1741],{"type":47,"value":1742},"## ",{"type":41,"tag":488,"props":1744,"children":1746},{"style":1745},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1747],{"type":47,"value":1748},"Security Review: [File\u002FComponent Name]\n",{"type":41,"tag":488,"props":1750,"children":1751},{"class":490,"line":500},[1752],{"type":41,"tag":488,"props":1753,"children":1755},{"emptyLinePlaceholder":1754},true,[1756],{"type":47,"value":1757},"\n",{"type":41,"tag":488,"props":1759,"children":1761},{"class":490,"line":1760},3,[1762,1767],{"type":41,"tag":488,"props":1763,"children":1764},{"style":1739},[1765],{"type":47,"value":1766},"### ",{"type":41,"tag":488,"props":1768,"children":1769},{"style":1745},[1770],{"type":47,"value":1771},"Summary\n",{"type":41,"tag":488,"props":1773,"children":1775},{"class":490,"line":1774},4,[1776,1781,1787,1793,1798],{"type":41,"tag":488,"props":1777,"children":1778},{"style":1739},[1779],{"type":47,"value":1780},"-",{"type":41,"tag":488,"props":1782,"children":1784},{"style":1783},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[1785],{"type":47,"value":1786}," **",{"type":41,"tag":488,"props":1788,"children":1790},{"style":1789},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[1791],{"type":47,"value":1792},"Findings",{"type":41,"tag":488,"props":1794,"children":1795},{"style":1783},[1796],{"type":47,"value":1797},"**",{"type":41,"tag":488,"props":1799,"children":1801},{"style":1800},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1802],{"type":47,"value":1803},": X (Y Critical, Z High, ...)\n",{"type":41,"tag":488,"props":1805,"children":1806},{"class":490,"line":23},[1807,1811,1815,1820,1824],{"type":41,"tag":488,"props":1808,"children":1809},{"style":1739},[1810],{"type":47,"value":1780},{"type":41,"tag":488,"props":1812,"children":1813},{"style":1783},[1814],{"type":47,"value":1786},{"type":41,"tag":488,"props":1816,"children":1817},{"style":1789},[1818],{"type":47,"value":1819},"Risk Level",{"type":41,"tag":488,"props":1821,"children":1822},{"style":1783},[1823],{"type":47,"value":1797},{"type":41,"tag":488,"props":1825,"children":1826},{"style":1800},[1827],{"type":47,"value":1828},": Critical\u002FHigh\u002FMedium\u002FLow\n",{"type":41,"tag":488,"props":1830,"children":1832},{"class":490,"line":1831},6,[1833,1837,1841,1846,1850],{"type":41,"tag":488,"props":1834,"children":1835},{"style":1739},[1836],{"type":47,"value":1780},{"type":41,"tag":488,"props":1838,"children":1839},{"style":1783},[1840],{"type":47,"value":1786},{"type":41,"tag":488,"props":1842,"children":1843},{"style":1789},[1844],{"type":47,"value":1845},"Confidence",{"type":41,"tag":488,"props":1847,"children":1848},{"style":1783},[1849],{"type":47,"value":1797},{"type":41,"tag":488,"props":1851,"children":1852},{"style":1800},[1853],{"type":47,"value":1854},": High\u002FMixed\n",{"type":41,"tag":488,"props":1856,"children":1858},{"class":490,"line":1857},7,[1859],{"type":41,"tag":488,"props":1860,"children":1861},{"emptyLinePlaceholder":1754},[1862],{"type":47,"value":1757},{"type":41,"tag":488,"props":1864,"children":1866},{"class":490,"line":1865},8,[1867,1871],{"type":41,"tag":488,"props":1868,"children":1869},{"style":1739},[1870],{"type":47,"value":1766},{"type":41,"tag":488,"props":1872,"children":1873},{"style":1745},[1874],{"type":47,"value":1875},"Findings\n",{"type":41,"tag":488,"props":1877,"children":1879},{"class":490,"line":1878},9,[1880],{"type":41,"tag":488,"props":1881,"children":1882},{"emptyLinePlaceholder":1754},[1883],{"type":47,"value":1757},{"type":41,"tag":488,"props":1885,"children":1887},{"class":490,"line":1886},10,[1888,1893,1899,1904],{"type":41,"tag":488,"props":1889,"children":1890},{"style":1739},[1891],{"type":47,"value":1892},"#### [",{"type":41,"tag":488,"props":1894,"children":1896},{"style":1895},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1897],{"type":47,"value":1898},"VULN-001",{"type":41,"tag":488,"props":1900,"children":1901},{"style":1739},[1902],{"type":47,"value":1903},"]",{"type":41,"tag":488,"props":1905,"children":1906},{"style":1745},[1907],{"type":47,"value":1908}," [Vulnerability Type] (Severity)\n",{"type":41,"tag":488,"props":1910,"children":1912},{"class":490,"line":1911},11,[1913,1917,1921,1926,1930,1935,1940,1945],{"type":41,"tag":488,"props":1914,"children":1915},{"style":1739},[1916],{"type":47,"value":1780},{"type":41,"tag":488,"props":1918,"children":1919},{"style":1783},[1920],{"type":47,"value":1786},{"type":41,"tag":488,"props":1922,"children":1923},{"style":1789},[1924],{"type":47,"value":1925},"Location",{"type":41,"tag":488,"props":1927,"children":1928},{"style":1783},[1929],{"type":47,"value":1797},{"type":41,"tag":488,"props":1931,"children":1932},{"style":1800},[1933],{"type":47,"value":1934},": ",{"type":41,"tag":488,"props":1936,"children":1937},{"style":1739},[1938],{"type":47,"value":1939},"`",{"type":41,"tag":488,"props":1941,"children":1942},{"style":1895},[1943],{"type":47,"value":1944},"file.py:123",{"type":41,"tag":488,"props":1946,"children":1947},{"style":1739},[1948],{"type":47,"value":1949},"`\n",{"type":41,"tag":488,"props":1951,"children":1953},{"class":490,"line":1952},12,[1954,1958,1962,1966,1970],{"type":41,"tag":488,"props":1955,"children":1956},{"style":1739},[1957],{"type":47,"value":1780},{"type":41,"tag":488,"props":1959,"children":1960},{"style":1783},[1961],{"type":47,"value":1786},{"type":41,"tag":488,"props":1963,"children":1964},{"style":1789},[1965],{"type":47,"value":1845},{"type":41,"tag":488,"props":1967,"children":1968},{"style":1783},[1969],{"type":47,"value":1797},{"type":41,"tag":488,"props":1971,"children":1972},{"style":1800},[1973],{"type":47,"value":1974},": High\n",{"type":41,"tag":488,"props":1976,"children":1978},{"class":490,"line":1977},13,[1979,1983,1987,1992,1996],{"type":41,"tag":488,"props":1980,"children":1981},{"style":1739},[1982],{"type":47,"value":1780},{"type":41,"tag":488,"props":1984,"children":1985},{"style":1783},[1986],{"type":47,"value":1786},{"type":41,"tag":488,"props":1988,"children":1989},{"style":1789},[1990],{"type":47,"value":1991},"Issue",{"type":41,"tag":488,"props":1993,"children":1994},{"style":1783},[1995],{"type":47,"value":1797},{"type":41,"tag":488,"props":1997,"children":1998},{"style":1800},[1999],{"type":47,"value":2000},": [What the vulnerability is]\n",{"type":41,"tag":488,"props":2002,"children":2004},{"class":490,"line":2003},14,[2005,2009,2013,2017,2021],{"type":41,"tag":488,"props":2006,"children":2007},{"style":1739},[2008],{"type":47,"value":1780},{"type":41,"tag":488,"props":2010,"children":2011},{"style":1783},[2012],{"type":47,"value":1786},{"type":41,"tag":488,"props":2014,"children":2015},{"style":1789},[2016],{"type":47,"value":1553},{"type":41,"tag":488,"props":2018,"children":2019},{"style":1783},[2020],{"type":47,"value":1797},{"type":41,"tag":488,"props":2022,"children":2023},{"style":1800},[2024],{"type":47,"value":2025},": [What an attacker could do]\n",{"type":41,"tag":488,"props":2027,"children":2029},{"class":490,"line":2028},15,[2030,2034,2038,2043,2047],{"type":41,"tag":488,"props":2031,"children":2032},{"style":1739},[2033],{"type":47,"value":1780},{"type":41,"tag":488,"props":2035,"children":2036},{"style":1783},[2037],{"type":47,"value":1786},{"type":41,"tag":488,"props":2039,"children":2040},{"style":1789},[2041],{"type":47,"value":2042},"Evidence",{"type":41,"tag":488,"props":2044,"children":2045},{"style":1783},[2046],{"type":47,"value":1797},{"type":41,"tag":488,"props":2048,"children":2049},{"style":1800},[2050],{"type":47,"value":2051},":\n",{"type":41,"tag":488,"props":2053,"children":2055},{"class":490,"line":2054},16,[2056,2061],{"type":41,"tag":488,"props":2057,"children":2058},{"style":1895},[2059],{"type":47,"value":2060},"  ```",{"type":41,"tag":488,"props":2062,"children":2064},{"style":2063},"--shiki-light:#90A4AE90;--shiki-default:#EEFFFF90;--shiki-dark:#BABED890",[2065],{"type":47,"value":2066},"python\n",{"type":41,"tag":488,"props":2068,"children":2070},{"class":490,"line":2069},17,[2071],{"type":41,"tag":488,"props":2072,"children":2073},{"style":2063},[2074],{"type":47,"value":2075},"  [Vulnerable code snippet]\n",{"type":41,"tag":79,"props":2077,"children":2078},{},[2079],{"type":41,"tag":83,"props":2080,"children":2081},{},[2082,2087,2088],{"type":41,"tag":56,"props":2083,"children":2084},{},[2085],{"type":47,"value":2086},"Fix",{"type":47,"value":1934},{"type":41,"tag":488,"props":2089,"children":2090},{},[2091],{"type":47,"value":2092},"How to remediate",{"type":41,"tag":263,"props":2094,"children":2096},{"id":2095},"needs-verification",[2097],{"type":47,"value":2098},"Needs Verification",{"type":41,"tag":2100,"props":2101,"children":2103},"h4",{"id":2102},"verify-001-potential-issue",[2104,2109,2111],{"type":41,"tag":488,"props":2105,"children":2106},{},[2107],{"type":47,"value":2108},"VERIFY-001",{"type":47,"value":2110}," ",{"type":41,"tag":488,"props":2112,"children":2113},{},[2114],{"type":47,"value":2115},"Potential Issue",{"type":41,"tag":79,"props":2117,"children":2118},{},[2119,2133],{"type":41,"tag":83,"props":2120,"children":2121},{},[2122,2126,2127],{"type":41,"tag":56,"props":2123,"children":2124},{},[2125],{"type":47,"value":1925},{"type":47,"value":1934},{"type":41,"tag":354,"props":2128,"children":2130},{"className":2129},[],[2131],{"type":47,"value":2132},"file.py:456",{"type":41,"tag":83,"props":2134,"children":2135},{},[2136,2141,2142],{"type":41,"tag":56,"props":2137,"children":2138},{},[2139],{"type":47,"value":2140},"Question",{"type":47,"value":1934},{"type":41,"tag":488,"props":2143,"children":2144},{},[2145],{"type":47,"value":2146},"What needs to be verified",{"type":41,"tag":477,"props":2148,"children":2151},{"className":2149,"code":2150,"language":47},[1664],"\nIf no vulnerabilities found, state: \"No high-confidence vulnerabilities identified.\"\n\n---\n\n## Reference Files\n\n### Core Vulnerabilities (`references\u002F`)\n| File | Covers |\n|------|--------|\n| `injection.md` | SQL, NoSQL, OS command, LDAP, template injection |\n| `xss.md` | Reflected, stored, DOM-based XSS |\n| `authorization.md` | Authorization, IDOR, privilege escalation |\n| `authentication.md` | Sessions, credentials, password storage |\n| `cryptography.md` | Algorithms, key management, randomness |\n| `deserialization.md` | Pickle, YAML, Java, PHP deserialization |\n| `file-security.md` | Path traversal, uploads, XXE |\n| `ssrf.md` | Server-side request forgery |\n| `csrf.md` | Cross-site request forgery |\n| `data-protection.md` | Secrets exposure, PII, logging |\n| `api-security.md` | REST, GraphQL, mass assignment |\n| `business-logic.md` | Race conditions, workflow bypass |\n| `modern-threats.md` | Prototype pollution, LLM injection, WebSocket |\n| `misconfiguration.md` | Headers, CORS, debug mode, defaults |\n| `error-handling.md` | Fail-open, information disclosure |\n| `supply-chain.md` | Dependencies, build security |\n| `logging.md` | Audit failures, log injection |\n\n### Language Guides (`languages\u002F`)\n- `python.md` - Django, Flask, FastAPI patterns\n- `javascript.md` - Node, Express, React, Vue, Next.js\n\n### Infrastructure (`infrastructure\u002F`)\n- `docker.md` - Container security\n",[2152],{"type":41,"tag":354,"props":2153,"children":2154},{"__ignoreMap":482},[2155],{"type":47,"value":2150},{"type":41,"tag":2157,"props":2158,"children":2159},"style",{},[2160],{"type":47,"value":2161},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2163,"total":2321},[2164,2180,2196,2210,2226,2238,2255,2265,2274,2286,2297,2310],{"slug":2165,"name":2165,"fn":2166,"description":2167,"org":2168,"tags":2169,"stars":23,"repoUrl":24,"updatedAt":2179},"address-pr-feedback","address unresolved GitHub PR feedback","Focused GitHub PR-feedback workflow for addressing unresolved review threads on the current pull request.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2170,2173,2176],{"name":2171,"slug":2172,"type":16},"Code Review","code-review",{"name":2174,"slug":2175,"type":16},"GitHub","github",{"name":2177,"slug":2178,"type":16},"Pull Requests","pull-requests","2026-07-19T05:38:26.334008",{"slug":2181,"name":2181,"fn":2182,"description":2183,"org":2184,"tags":2185,"stars":23,"repoUrl":24,"updatedAt":2195},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2186,2189,2192],{"name":2187,"slug":2188,"type":16},"Browser Automation","browser-automation",{"name":2190,"slug":2191,"type":16},"CLI","cli",{"name":2193,"slug":2194,"type":16},"Testing","testing","2026-07-16T06:02:26.045337",{"slug":2197,"name":2197,"fn":2198,"description":2199,"org":2200,"tags":2201,"stars":23,"repoUrl":24,"updatedAt":2209},"capture-visual-proof","capture visual proof of browser tasks","Visual-proof orchestrator that decides whether browser proof applies, classifies the proof package, and delegates capture to the hidden proof-runner subagent.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2202,2205,2206],{"name":2203,"slug":2204,"type":16},"Automation","automation",{"name":2187,"slug":2188,"type":16},{"name":2207,"slug":2208,"type":16},"Screenshots","screenshots","2026-08-01T05:44:47.369293",{"slug":2211,"name":2211,"fn":2212,"description":2213,"org":2214,"tags":2215,"stars":23,"repoUrl":24,"updatedAt":2225},"ci-failure-triage","triage failed CI workflows","Investigate the latest default-branch CI failure in an environment-backed workspace and, when it is real and fixable, fix and open a PR in the same task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2216,2219,2222],{"name":2217,"slug":2218,"type":16},"CI\u002FCD","ci-cd",{"name":2220,"slug":2221,"type":16},"Debugging","debugging",{"name":2223,"slug":2224,"type":16},"GitHub Actions","github-actions","2026-07-23T05:40:41.726992",{"slug":2227,"name":2227,"fn":2228,"description":2229,"org":2230,"tags":2231,"stars":23,"repoUrl":24,"updatedAt":2237},"code-quality-auditor","audit code quality in merged pull requests","Automation skill: review recently merged pull requests for high-confidence code quality issues and submit `act` work items that auto-start follow-up execution tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2232,2233,2234],{"name":21,"slug":22,"type":16},{"name":2171,"slug":2172,"type":16},{"name":2235,"slug":2236,"type":16},"QA","qa","2026-07-26T05:47:47.339721",{"slug":2239,"name":2239,"fn":2240,"description":2241,"org":2242,"tags":2243,"stars":23,"repoUrl":24,"updatedAt":2254},"codeql-triage","triage and remediate CodeQL security alerts","Review current open CodeQL \u002F GitHub code-scanning alerts with GitHub data, keep scheduled runs read-only, and submit a small set of environment-backed `act` work items that auto-start remediation execution tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2244,2245,2248,2249,2250,2251],{"name":21,"slug":22,"type":16},{"name":2246,"slug":2247,"type":16},"CodeQL","codeql",{"name":2220,"slug":2221,"type":16},{"name":2174,"slug":2175,"type":16},{"name":14,"slug":15,"type":16},{"name":2252,"slug":2253,"type":16},"Triage","triage","2026-07-29T05:39:37.784486",{"slug":2256,"name":2256,"fn":2257,"description":2258,"org":2259,"tags":2260,"stars":23,"repoUrl":24,"updatedAt":2264},"create-draft-pr","create draft pull requests","Draft pull-request creation workflow. Use when repositories have pending changes or unpushed commits and you want draft PRs created.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2261,2262,2263],{"name":2203,"slug":2204,"type":16},{"name":2174,"slug":2175,"type":16},{"name":2177,"slug":2178,"type":16},"2026-07-16T06:00:31.733527",{"slug":2266,"name":2266,"fn":2267,"description":2268,"org":2269,"tags":2270,"stars":23,"repoUrl":24,"updatedAt":2273},"create-pr","create pull requests for pending changes","Pull-request creation workflow. Use when repositories have pending changes or unpushed commits and you want ready-for-review PRs created.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2271,2272],{"name":2174,"slug":2175,"type":16},{"name":2177,"slug":2178,"type":16},"2026-07-16T06:03:03.397562",{"slug":2275,"name":2275,"fn":2276,"description":2277,"org":2278,"tags":2279,"stars":23,"repoUrl":24,"updatedAt":2285},"debug-reported-bug","reproduce and debug reported bugs","Reproduce-first bug diagnosis workflow. Use when a reported bug needs to be reproduced, reduced to a deterministic failing check, and traced through git history or `git bisect` so the exact cause is understood before any fix is attempted.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2280,2281,2284],{"name":2220,"slug":2221,"type":16},{"name":2282,"slug":2283,"type":16},"Git","git",{"name":2193,"slug":2194,"type":16},"2026-07-16T06:03:07.255013",{"slug":2287,"name":2287,"fn":2288,"description":2289,"org":2290,"tags":2291,"stars":23,"repoUrl":24,"updatedAt":2296},"dependabot-triage","triage GitHub Dependabot alerts","Review current open Dependabot alerts with GitHub data, keep scheduled runs read-only, and submit a small set of environment-backed `act` work items that auto-start dependency-update execution tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2292,2293,2294,2295],{"name":2203,"slug":2204,"type":16},{"name":2174,"slug":2175,"type":16},{"name":14,"slug":15,"type":16},{"name":2252,"slug":2253,"type":16},"2026-07-29T05:39:38.757423",{"slug":2298,"name":2298,"fn":2299,"description":2300,"org":2301,"tags":2302,"stars":23,"repoUrl":24,"updatedAt":2309},"environment-setup","configure local development environments","Internal skill to configure environments. Never use unless the user explicitly initiates the skill. Focus on localhost-ready setup and validation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2303,2306],{"name":2304,"slug":2305,"type":16},"Configuration","configuration",{"name":2307,"slug":2308,"type":16},"Local Development","local-development","2026-08-01T05:44:46.333988",{"slug":2311,"name":2311,"fn":2312,"description":2313,"org":2314,"tags":2315,"stars":23,"repoUrl":24,"updatedAt":2320},"explain-repo-code","explain repository code and architecture","Explanation-only repository workflow. Use when the user asks to understand behavior, architecture, or rationale from source context without modifying files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2316,2317],{"name":21,"slug":22,"type":16},{"name":2318,"slug":2319,"type":16},"Documentation","documentation","2026-07-16T06:00:34.090082",33,{"items":2323,"total":2321},[2324,2330,2336,2342,2348,2354,2363],{"slug":2165,"name":2165,"fn":2166,"description":2167,"org":2325,"tags":2326,"stars":23,"repoUrl":24,"updatedAt":2179},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2327,2328,2329],{"name":2171,"slug":2172,"type":16},{"name":2174,"slug":2175,"type":16},{"name":2177,"slug":2178,"type":16},{"slug":2181,"name":2181,"fn":2182,"description":2183,"org":2331,"tags":2332,"stars":23,"repoUrl":24,"updatedAt":2195},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2333,2334,2335],{"name":2187,"slug":2188,"type":16},{"name":2190,"slug":2191,"type":16},{"name":2193,"slug":2194,"type":16},{"slug":2197,"name":2197,"fn":2198,"description":2199,"org":2337,"tags":2338,"stars":23,"repoUrl":24,"updatedAt":2209},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2339,2340,2341],{"name":2203,"slug":2204,"type":16},{"name":2187,"slug":2188,"type":16},{"name":2207,"slug":2208,"type":16},{"slug":2211,"name":2211,"fn":2212,"description":2213,"org":2343,"tags":2344,"stars":23,"repoUrl":24,"updatedAt":2225},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2345,2346,2347],{"name":2217,"slug":2218,"type":16},{"name":2220,"slug":2221,"type":16},{"name":2223,"slug":2224,"type":16},{"slug":2227,"name":2227,"fn":2228,"description":2229,"org":2349,"tags":2350,"stars":23,"repoUrl":24,"updatedAt":2237},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2351,2352,2353],{"name":21,"slug":22,"type":16},{"name":2171,"slug":2172,"type":16},{"name":2235,"slug":2236,"type":16},{"slug":2239,"name":2239,"fn":2240,"description":2241,"org":2355,"tags":2356,"stars":23,"repoUrl":24,"updatedAt":2254},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2357,2358,2359,2360,2361,2362],{"name":21,"slug":22,"type":16},{"name":2246,"slug":2247,"type":16},{"name":2220,"slug":2221,"type":16},{"name":2174,"slug":2175,"type":16},{"name":14,"slug":15,"type":16},{"name":2252,"slug":2253,"type":16},{"slug":2256,"name":2256,"fn":2257,"description":2258,"org":2364,"tags":2365,"stars":23,"repoUrl":24,"updatedAt":2264},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2366,2367,2368],{"name":2203,"slug":2204,"type":16},{"name":2174,"slug":2175,"type":16},{"name":2177,"slug":2178,"type":16}]