Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
I was wondering if you would be interesting in fuzzing ecdsa-python by way of OSS-Fuzz? In this PR I included an initial fuzz driver that can be run with Atheris and also done an initial integration on OSS-Fuzz in this PR google/oss-fuzz#7498
Essentially, OSS-Fuzz is a free service run by Google that performs continuous fuzzing of important open source projects. If you're unfamiliar with fuzzing, then it's a technique for finding security and reliability issues by way of sophisticated stress testing. In the case of Python what we will often find is uncaught exceptions and in the even of native extensions memory corruption issues. When integrating with OSS-Fuzz, the only expectation is that bugs will be fixed. This is not a "hard" requirement in that no one enforces this and the main point is if bugs are not fixed then it is a waste of resources to run the fuzzers, which we would like to avoid.
If you would like to integrate, the only thing I need is as list of email(s) that will get access to the data produced by OSS-Fuzz, such as bug reports, coverage reports and more stats. Notice the emails affiliated with the project will be public in the OSS-Fuzz repo, as they will be part of a configuration file.