DavidKorczynski

Results 238 issues of DavidKorczynski

At the moment, we use PyCG for the Python frontend. Since the work started, a new project that seems a bit more general, such as supporting control-flow graphs. https://github.com/SMAT-Lab/Scalpel From...

This adds fuzzing by way of [ClusterFuzzLite](https://google.github.io/clusterfuzzlite/), which is a GitHub action that will perform a short amount of fuzzing for new PRs. I added a fuzzer that targets the...

This adds fuzzing by way of [ClusterFuzzLite](https://google.github.io/clusterfuzzlite/), which is a GitHub action that will perform a short amount of fuzzing for new PRs. The goal is to use fuzzing to...

Adds two fuzzers to increase code coverage for OSS-Fuzz. From local runs, these fuzzers increase the coverage from [~44%](https://introspector.oss-fuzz.com/project-profile?project=cjson) to 73%+ The fuzzers rely on `FuzzedDataProvider` to create data seeded...

This adds fuzzing by way of [ClusterFuzzLite](https://google.github.io/clusterfuzzlite/), which is a GitHub action that will perform a short amount of fuzzing for new PRs. The goal is to use fuzzing to...

This adds fuzzing by way of [ClusterFuzzLite](https://google.github.io/clusterfuzzlite/), which is a GitHub action that will perform a short amount of fuzzing for new PRs. The goal is to use fuzzing to...

Adds flow for building an OSS-Fuzz set up from scratch. At the moment it's not integrated into the oss-fuzz-gen workflow. The logic of this is based on running within the...

Sample for auto-generating an OSS-Fuzz project for a given Python project. This differs a bit from the existing set up. The approach in this PR relies on cloning the Python...

Example output currently: ``` - "name": "_ZNK6icu_7513MessageFormat6formatEiPKvPKNS_11FormattableEPKNS_13UnicodeStringEiRNS_17AppendableWrapperEPNS_13FieldPositionER10UErrorCode" "params": - "name": "this" "type": "int32_t" - "name": "msgStart" "type": "const void *" - "name": "plNumber" "type": "const Formattable *" - "name": "arguments"...

Hi, I was wondering if you would like to integrate continuous fuzzing by way of OSS-Fuzz? Fuzzing is a way to automate test-case generation and has been heavily used for...