ChakraCore
ChakraCore copied to clipboard
ChakraCore is an open source Javascript engine with a C API.
### Version: chakra-1.11.24.0 ### Description: For the TestCase below, after judging that `!p` is `true` in line 2, the function should `return` directly, but chakra terminates the program abnormally. Through...
ChakraCore failed to build "error MSB8013: This project doesn't contain the Configuration and Platform combination of Release|ARM64EC." with MSVC on Windows arm64ec. It can reproduce on latest version on master...
On Arch linux CC crashes when starting a helper thread with the below stack trace, this crash was confirmed with both 1.11 and master and was likely introduced by changes...
### commit 41ad58a9eebf8d52a83424c8fccfaacdb14105ec ### Build platform Ubuntu 20.04 ### Build steps ``` ./build.sh --debug ``` ### poc ```js function foo(f) { WScript.Attach(f); } async function bar() { for (let i...
I don't know if my process is wrong, I tried to register the c# class in jscontext, Then, create the registered class new in JS, and then release it, It...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
### commit 41ad58a9eebf8d52a83424c8fccfaacdb14105ec ### Build platform Ubuntu 20.04 ### Build steps ``` ./build.sh --debug ``` ### poc ```js function foo() { var x = new bar(); } function bar() {...
### commit 41ad58a9eebf8d52a83424c8fccfaacdb14105ec ### Build platform Ubuntu 20.04 ### Build steps ``` ./build.sh --debug ``` ### poc ```js var bar = function foo() {}; delete bar.length; bar.toString = ''; delete...
###### Version ``` chakra-1.11.24.0 ``` ###### Test case ```js var foo = function () { try { print("1") } catch { } }; foo(); ``` ###### Execution steps /root/.jsvu/ch Testcase.js...
``` commit : 41ad58a Engine version : ch version 1.13.0.0-beta Build platform : Ubuntu 18.04 Clang version : 6.0.0 Build steps : ./build.sh --sanitize=address --static -j -d ``` POC ```...