nathan
nathan
Here is my demo demo.cc ``` #include #include int vuln(const uint8_t *data){ if(data[0]=='a'){ if(data[1]=='f'){ char *p=0; *p=0x12; } if(data[1]=='l'){ int x=3; x=x/0; } if(data[1]=='c'){ char d[10]; d[20]=0x34; } } return...
AFL-fuzz can detect all 3 crash types definitely, but the output of ASAN is not correct now. Clusterfuzz will ignore crashes if the output of ASAN is not right. Just...
Clusterfuzz can also detect the 3 crashes. But because the output of Asan is null, the segment fault and FPF will be ignored, and record in the log. Only the...