AdamKorcz
AdamKorcz
Hello, I see that Compress is being fuzzed which is awesome! I would like to suggest setting up continuous fuzzing by way of Googles oss-fuzz infrastructure. Continuous fuzzing will help...
Signed-off-by: AdamKorcz ### Description: This PR adds [ClusterfuzzLite](https://google.github.io/clusterfuzzlite/) and a fuzzer for the code validation. ClusterfuzzLite will run fuzzers in the CI when PRs are made. It can be extended...
This PR adds a fuzzer for the parser. If there is interest for fuzzing jwt-go, I will be happy to add more fuzzers and setup continuous fuzzing through oss-fuzz. This...
This PR adds [ClusterfuzzLite](https://google.github.io/clusterfuzzlite/) and two Atheris fuzzers for line reading. ClusterfuzzLite will run fuzzers in the CI when PRs are made. It can be extended beyond this PR with...
I ran the tests, and the results were the same before and after this update
OSS-fuzz
The fuzzer for ucl_parser_add_string runs into a bug very quickly when fuzzing the function: https://github.com/vstakhov/libucl/blob/91a3fb447386fa72e2ad35f9922b47640a935bca/src/ucl_parser.c#L3049-L3059 This function accepts a length argument, however, the following function: https://github.com/vstakhov/libucl/blob/91a3fb447386fa72e2ad35f9922b47640a935bca/src/ucl_parser.c#L3033-L3047 may cause a buffer...
### What version of Go are you using (`go version`)? $ go version go1.17 linux/amd64 ### Does this issue reproduce with the latest release? Reproducer is not yet created. ###...
Signed-off-by: AdamKorcz ### What I did 1. Added a fuzzer 2. Added [ClusterfuzzLite](https://google.github.io/clusterfuzzlite/) ### How I did it 1. Added the fuzzer in `tests/ast`. 2. Added the ClusterfuzzLite in `.clusterfuzzlite`....
### Ⅰ. Describe what this PR did Added CIFuzz which will run Dragonflys fuzzers for 600 seconds in the CI when a PR is made. CIFuzz is a service by...
Hello, I have been working on setting up continuous fuzzing for kraken through OSS-fuzz. A draft integration application has been set up here: https://github.com/google/oss-fuzz/pull/5401 including two fuzzers to get things...