You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to apply Jazzer.js to fuzzing JS code extended with C++ code. C++ code was binded to JS code via Napi and was instrumented with sanitizers (e.g. ASan). I've found out that even if reports from sanitizers are displayed, these crashes are not considered to be crashes and are not saved to any files.
Could you please support recognizing these crashes the same way as JS crashes?
Steps to reproduce
Create fuzz target (native_fuzzer.js) from the code:
Description
I tried to apply Jazzer.js to fuzzing JS code extended with C++ code. C++ code was binded to JS code via Napi and was instrumented with sanitizers (e.g. ASan). I've found out that even if reports from sanitizers are displayed, these crashes are not considered to be crashes and are not saved to any files.
Could you please support recognizing these crashes the same way as JS crashes?
Steps to reproduce
CC=clang CXX=clang++ npm init -y npm install node-addon-api bindings CC=clang CXX=clang++ node install .
The text was updated successfully, but these errors were encountered: