jazzer
jazzer copied to clipboard
Coverage-guided, in-process fuzzing for the JVM
We forgot about chars in the past! Not sure if `@Positive` and `@Negative` , etc. make sense on chars (the only signed integral in Java? :laughing:) `@InRange` can be used...
In some projects, network requests can happen after the fuzz test has started, but before the user had a chance to configure allowed/denied connections. Now the user can start Jazzer...
We've identified many redundant dependencies in bazel build scripts and refactored them, as part of a research project on dependency reduction. Feel free to leave feedback, suggest improvements, or directly...
```kotlin class JazzerDemo { @FuzzTest(maxExecutions = 10000) fun run(d: FuzzedDataProvider) { ... } @FuzzTest(maxExecutions = 10000) fun run2(d: FuzzedDataProvider) { ... } } ``` I would rather expect to run...