Affected versions use deno_core releases that expose Deno.core.ops.op_panic to the JS runtime in the base core
This function when called triggers a manual panic in the thread containing the runtime, breaking sandboxing
It can be fixed by stubbing out the exposed op:
Deno.core.ops.op_panic = (msg) => { throw new Error(msg) };
{
"github_reviewed_at": "2024-12-04T18:36:38Z",
"severity": "MODERATE",
"github_reviewed": true,
"cwe_ids": [],
"nvd_published_at": null
}