Skip to content
#

fuzzing

Here are 480 public repositories matching this topic...

fast-check
dubzzz
dubzzz commented Feb 24, 2020

TypeScript 3.7 · TypeScript https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#assertion-functions

In fast-check fc.pre can be used to stop the execution of a property if some preconditions are not validated.

// v is number | null
fc.pre(v !== null)
// while v cannot be null there, TypeScript stills consider that it can be

As adding thi

AFLplusplus
wizche
wizche commented Aug 20, 2020

As discussed in the discord channel. Having a whitelist/blacklist approach where you can tell to (not)instrument specific libraries in QEMU mode. For example by passing library names in an env variable. Something like INSTRUMENT_QEMU_BLACKLIST="libc.so,another.so".
Could be done by replacing all the checks if (cur_loc < afl_code_start || cur_loc >= afl_code_end) with the traverse of a list (in

Improve this page

Add a description, image, and links to the fuzzing topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the fuzzing topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.