Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2935+ Articles
167+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. CVE-2026-93985: OpenPanel js-runtime Sandbox Escape to RCE
CVE-2026-93985: OpenPanel js-runtime Sandbox Escape to RCE

Critical Security Alert

This vulnerability is actively being exploited. Immediate action is recommended.

SECURITYCRITICALCVE-2026-93985

CVE-2026-93985: OpenPanel js-runtime Sandbox Escape to RCE

A webhook template validator flaw in OpenPanel js-runtime lets project users reach the Function constructor and run code in the worker process.

Dylan H.

Security Team

September 20, 2026
3 min read

Affected Products

  • OpenPanel js-runtime — through commit bad75bdd

Overview

A critical sandbox escape vulnerability has been disclosed in OpenPanel's js-runtime component, tracked as CVE-2026-93985 and rated 9.9 (Critical) on CVSS 3.1 (9.4 under CVSS 4.0). The flaw sits in the JavaScript webhook template validator, which fails to block computed member access to JavaScript's constructor chain — letting an attacker with project write access reach the Function constructor and execute arbitrary code inside the worker process. It affects OpenPanel js-runtime through commit bad75bdd.


Technical Details

FieldValue
CVE IDCVE-2026-93985
SeverityCritical (CVSS 3.1: 9.9 · CVSS 4.0: 9.4)
Componentjs-runtime webhook template validator
Vulnerable ThroughCommit bad75bdd
Privileges RequiredProject write access
ImpactArbitrary code execution in the worker process
AdvisoriesGHSA-6f7h-cvp6-w9w5, VulnCheck

How It Works

OpenPanel lets project members define webhook templates that run inside a restricted JavaScript sandbox. The validator responsible for vetting these templates blocks direct references to dangerous properties — but it does not account for computed member access (bracket notation), where a property name is built dynamically instead of written literally.

By constructing a property path with bracket notation, an attacker can sidestep the blocklist and walk the constructor chain of an ordinary object up to Function, effectively obtaining a handle to JavaScript's Function constructor from inside the sandbox. From there, arbitrary code can be compiled and executed with the privileges of the worker process that runs webhook templates.

Because exploitation only requires project write access — a level of access many legitimate, lower-trust collaborators have — this turns a routine "create a webhook template" action into a path to full worker-process compromise.


Impact Assessment

Any OpenPanel deployment that allows non-administrative users to create or edit webhook templates is exposed to:

  • Arbitrary code execution in the context of the webhook worker
  • Potential lateral movement to other resources reachable from that worker (internal services, credentials, secrets available to the process)
  • Abuse of the webhook execution pipeline as a foothold in multi-tenant or CI-adjacent environments

Because the bar for exploitation is "project write access" rather than admin/root, this is a meaningful privilege escalation primitive even in deployments that already restrict who can administer the panel itself.


Mitigation

  • Update OpenPanel js-runtime to a version past commit bad75bdd that closes the computed-member-access gap — check the vendor's GitHub security advisory (GHSA-6f7h-cvp6-w9w5) for the patched release
  • Until patched, restrict who can create or modify webhook templates to fully trusted, administrative accounts
  • Audit existing webhook templates for suspicious bracket-notation property access (e.g. obj["constructor"]["constructor"]) or other dynamic property-name patterns
  • Favor an allow-list of known-safe identifiers over a blocklist approach when validating any similarly sandboxed template or script input

References

  • NVD — CVE-2026-93985
  • GitHub Security Advisory GHSA-6f7h-cvp6-w9w5 (OpenPanel js-runtime)
#OpenPanel#CVE-2026-93985#Sandbox Escape#Code Injection#Webhook#RCE#Supply Chain

Related Articles

vm2 Sandbox Escape via Error.cause Host Object Leak (CVE-2026-47686)

Critical vm2 sandbox escape allows Node.js sandbox code to access the host process object via unsanitized Error.cause, enabling full RCE.

4 min read

CVE-2026-47131: vm2 Sandbox Escape via Buffer Prototype Hijack (CVSS 10.0)

A CVSS 10.0 critical sandbox escape in vm2 for Node.js allows sandboxed code to obtain the host TypeError constructor via Buffer.__lookupGetter__ abuse,...

6 min read

Isolated-vm Flaw Lets Sandboxed JavaScript Escape to Host for Potential RCE

A critical unpatched flaw in isolated-vm allows sandboxed JavaScript code to escape its isolated environment and achieve host-level remote code execution.

3 min read
Back to all Security Alerts