JQF
JQF copied to clipboard
JQF + Zest: Coverage-guided semantic fuzzing for Java.
Some tests will run with environment variables and system properties that are set in Maven Surefire from the Maven pom.xml file. However, those environment variables and system properties are not...
I have a few questions. ### designations: ```(ret to fuzzer)``` this is a function call (with @ Fuzz annotation) by a fuzzer ```>>SEEString->i1; Long->String->i2; invoke fuzzCreateContextPath(String i1, String i2); ```...
Getting these errors,is it because of memory out of bound exception error caused by some functionality or JQF is unable to support mutli-threading?
I use jqf to fuzz generic functions, and the result is good. But when i try to fuzz web application functions written in Spring format, some problems occur. How can...
A bunch of questions raised in #137 and their corresponding [answers](https://github.com/rohanpadhye/JQF/issues/137#issuecomment-832903197) indicate that JQF documentation needs to be self-contained and not assume that users are familiar with AFL or other...
These are used all over JQF but not documented in one central place. We need a wiki page or similar with all configuration options outlined.
According to https://github.com/pholser/junit-quickcheck/blob/master/core/src/main/java/com/pholser/junit/quickcheck/random/SourceOfRandomness.java#L257, `randomInt` should return a value within the range [min, max]. However, current implementation generates a value within the range [min, max).
This PR adds `eye-fuzz`, a tool for visualizing the relationship between a source of randomness and generators that I've been working on under the supervision of @carolemieux. See the project...
https://github.blog/2020-06-01-keep-all-your-packages-up-to-date-with-dependabot/
Hi, I'm implementing a small java project which load and run clojure scripts on runtime. I works fine. I want to use jqf:fuzz to fuzz my application. So i copied...