Hey @berendjanwever , by any chances do you have any NULL pointer defer crashes for Chrome? Testing some python code, thanks :)
BugId has support for parsing ASan output, so you'll get similar error reports for Chrome, Chrome Asan, Edge, IE, Firefox, whatever...
-
-
Sure, but it requires me to have the test case, it wouldn’t work while I’m fuzzing it, would it?
-
Sure it would: I use it during fuzzing on my VMs myself! It debugs your application while you do whatever you want with it. When it detects a bug, it generates a report and calls a callback. BugId uses it to and dumps the report details to console and file.
-
If you want to use it during fuzzing, you copy code from BugId.py: 1) create a cBugId instance, 2) set the "Bug report" callback, 3) call fStart() to start the application 4) fuzz until application crashes => your callback gets called with details 5) call fStop() when finished.
-
That's brilliant, thanks so much, should have asked before messing with the subprocess hell. Will definitely use that, thanks cheers!
End of conversation
New conversation -
Loading seems to be taking a while.
Twitter may be over capacity or experiencing a momentary hiccup. Try again or visit Twitter Status for more information.

Working on how to catch those crashes with python twisted/subprocess ain't that easy!