nj00001
nj00001
when i follow with the Example run, and exec this cmd "./bin/revng translate hello.arm". it report this error `Abort at /home/wcc/Desktop/orchestra/sources/revng/include/revng/Model/VerifyHelper.h:82: #0 0x00007fd39dafcb79 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) /builds/gitlab/revng/orchestra/orchestra/sources/llvm/llvm/lib/Support/Unix/Signals.inc:568:13 #1 0x00007fd3a000ea7b printStackTrace() /home/wcc/Desktop/orchestra/sources/revng/lib/Support/Assert.cpp:22:1...
this is my js file content, and I know there is something wrong with the syntax of the following code. ```js "use strict"; //------------------------------------------------------------------------------ // Expression Bodies // More expressive...
Check out the code example below ``` #include #include #include #include #include int main(){ pid_t pid = getpid(); printf("entry %d\n", pid); kill(pid, SIGSTOP); printf("leave\n"); } ``` When a process receives...
Modifying the windows sample program selffuzz_test directly should reproduce the problem ``` kAFL_hypercall(HYPERCALL_KAFL_NEXT_PAYLOAD, 0); kAFL_hypercall(HYPERCALL_KAFL_ACQUIRE, 0); fuzzme(payload_buffer->data, payload_buffer->size); Sleep(1); kAFL_hypercall(HYPERCALL_KAFL_RELEASE, 0); ```  The result is that every fuzz results...
The write_setup_file calculates the hash of the target, and the target path is obtained directly from afl->fsrv.target_path, however, in nyx mode, afl->fsrv.target_path is a directory, which will cause the calculation...
in this line https://github.com/eurecom-s3/symqemu/blob/e09c3d597e3ac9ed7b7820971999773449eb896b/README.md?plain=1#L58 the symqemu binary path is x86_64-linux-user/symqemu-x86_64, But the actual path is symqemu/build/qemu-x86_64 