Andrea Jemmett

Results 73 comments of Andrea Jemmett

@qhjchc AAH019 and AAH021 are not marked with a Proof of Vulnerability in the paper.

Thanks for the fix! I just spent an entire morning trying to pin-point the issue. I found this #1337 issue while looking for the code points used by Nerd Fonts....

Thank you for your help. I did some experiments by manually editing the LLVM IR but I got stuck. I initially tried to replace the pointer arithmentic introduced by ASan:...

Hi, thanks for the reply. My initial intention was to modify the IR output by ASan so I tried to manually replace the `inttoptr` and `ptrtoint` instructions with a GEP...

> > * snippet compiled w/o ASan but with `alloca` for the `struct` replaced with an `alloca` of N bytes? ```llvm ; ModuleID = 'gh-issue-noasan.c' source_filename = "gh-issue-noasan.c" target datalayout...

> Did you try ‘wpa -ander -svfg ‘? I'm running equivalent code: ```cpp auto *LLVMModuleSet = SVF::LLVMModuleSet::getLLVMModuleSet(); auto *SVFModule = LLVMModuleSet->buildSVFModule(M); SVF::SVFIRBuilder Builder(SVFModule); auto *PAG = Builder.build(); auto *Andersen =...

I tried with the following but the result is the same. ```c #include #include int myFunc(int A) { // target return A + 42; } // int LLVMFuzzerTestOneInput(const uint8_t *Data,...