subscription login preflight + Playwright MCP fixes (browser install, codex wiring)

Why runs came back empty / "MCP didn't execute":
- Not logged in: a subscription CLI that isn't authenticated returns empty
  instantly (the Juice Shop symptom — every agent 0 candidates, no tool activity).
  Added models::cli_login_status + subscription_preflight(): before a run we check
  the primary provider's CLI is installed AND logged in and warn clearly if not
  (CLI run_mode + REPL start_background).
- Missing browser: ensure_playwright_mcp now also runs `npx playwright install
  chromium` (best-effort; NEUROSPLOIT_SKIP_BROWSER_INSTALL=1 to skip) so the first
  browser action doesn't fail/hang.
- Codex MCP was mis-wired (`--config mcp_config_file=` is not a codex key). Now
  injects our .mcp.json servers via `-c mcp_servers.<name>.command/.args` TOML
  overrides — MCP works on Codex, not only Claude. gemini/grok remain built-in-tools
  only (no MCP flag).
- REPL diagnostic: subscription+MCP run with zero tool/browser events warns the
  CLI likely isn't logged in / MCP didn't start.
This commit is contained in:
CyberSecurityUP
2026-07-05 16:09:15 -03:00
parent 3ca04498a9
commit 4ac4faec32
4 changed files with 144 additions and 4 deletions
+18
View File
@@ -102,6 +102,24 @@ interactive line-editing.
- **Rate-limit testing** is a first-class control check (small non-disruptive
burst → look for 429/lockout/Retry-After), never a DoS.
## Subscription login check & Playwright MCP fixes
- **Subscription login preflight.** Before a `--subscription` run, the harness
checks that the local CLI (claude/codex/…) is **installed and logged in** and
prints a clear warning if not — instead of the run silently coming back with
0 findings. (Not logged in → the CLI returns empty instantly, which was the
usual cause of "it found nothing / MCP didn't execute".)
- **Playwright MCP now installs the browser.** `ensure_playwright_mcp` also runs
`npx playwright install chromium` (best-effort; skip with
`NEUROSPLOIT_SKIP_BROWSER_INSTALL=1`) so the first browser action doesn't
fail/hang with a missing Chromium.
- **Codex MCP wiring fixed.** Codex takes MCP servers as `-c mcp_servers.*` TOML
overrides (not a config-file path); the harness now injects our Playwright
server correctly, so MCP works on Codex too — not just Claude.
- **"No tool activity" diagnostic.** If a subscription+MCP run performs zero
browser/tool actions, the REPL warns that the CLI likely isn't logged in or the
MCP didn't start.
## Multi-role auth & access-control testing
- **Named identities in `creds.yaml`** for IDOR / BOLA / BFLA / privilege-escalation