MozillaSecurity / lithium

Line-based testcase reducer
Mozilla Public License 2.0
94 stars 25 forks source link

crashes interestingness goes down useless path #72

Closed kokanin closed 5 years ago

kokanin commented 5 years ago

I have an application with two crash paths, where one is interesting (for me) and the other not. When reducing the test case, I end up with a small file triggering the uninteresting part - any bright ideas on how to mark a specific crash type (stack overrun, div by 0 or similar) as not interesting without implementing a full debugger?

nth10sd commented 5 years ago

There is an interestingness test in the funfuzz repository called crashesat that allows you to mark a specific type of symptom as "interesting".

Perhaps you'd like to give that a try?

kokanin commented 5 years ago

this looks like it can be worked into something, thanks!