DavidKorczynski

Results 219 issues of DavidKorczynski

Add [CIFuzz](https://google.github.io/oss-fuzz/getting-started/continuous-integration/) workflow action to have fuzzers build and run on each PR. This is a service offered by OSS-Fuzz where HdrHistogram already runs. CIFuzz can help detect regressions and...

The following program raises an uncaught exception: ```python import sys import asttokens, ast import atheris def TestOneInput(data): fdp = atheris.FuzzedDataProvider(data) source_to_parse = fdp.ConsumeUnicodeNoSurrogates(4196) try: ast.parse(source_to_parse) except: # Avoid anything that...

The following program raises an uncaught exception: ```python import io import sys import atheris from fontTools import ttLib from fontTools.ttLib import TTFont import xml def TestOneInput(data): randfile = "/tmp/random2.ttx" with...

Add [CIFuzz](https://google.github.io/oss-fuzz/getting-started/continuous-integration/) workflow action to have fuzzers build and run on each PR. This is a service offered by OSS-Fuzz where toml(_edit?) already runs (https://github.com/google/oss-fuzz/tree/master/projects/toml_edit). CIFuzz can help detect regressions...

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...

I was trying to fix the OSS-Fuzz build of `lldb-eval` recently (https://github.com/google/oss-fuzz/pull/9305) and ran into some failing issues for UBSAN and coverage builds, e.g.: ``` In file included from external/llvm_project/include/clang/Basic/DiagnosticIDs.h:71:...

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...

We recently added logic for extracting more data from the core program analysis parts, and we should expose this in APIs that provides this data in a unit-like form, e.g....