.gitignore
MANIFEST.in
README.md
__init__.py
main.py
pyproject.toml
fuzz_introspector/.gitignore
fuzz_introspector/__init__.py
fuzz_introspector/analysis.py
fuzz_introspector/cfg_load.py
fuzz_introspector/cli.py
fuzz_introspector/code_coverage.py
fuzz_introspector/commands.py
fuzz_introspector/constants.py
fuzz_introspector/data_loader.py
fuzz_introspector/debug_info.py
fuzz_introspector/diff_report.py
fuzz_introspector/exceptions.py
fuzz_introspector/html_constants.py
fuzz_introspector/html_helpers.py
fuzz_introspector/html_report.py
fuzz_introspector/json_report.py
fuzz_introspector/utils.py
fuzz_introspector.egg-info/PKG-INFO
fuzz_introspector.egg-info/SOURCES.txt
fuzz_introspector.egg-info/dependency_links.txt
fuzz_introspector.egg-info/entry_points.txt
fuzz_introspector.egg-info/requires.txt
fuzz_introspector.egg-info/top_level.txt
fuzz_introspector/analyses/__init__.py
fuzz_introspector/analyses/annotated_cfg.py
fuzz_introspector/analyses/bug_digestor.py
fuzz_introspector/analyses/calltree_analysis.py
fuzz_introspector/analyses/driver_synthesizer.py
fuzz_introspector/analyses/engine_input.py
fuzz_introspector/analyses/far_reach_low_coverage_analyser.py
fuzz_introspector/analyses/filepath_analyser.py
fuzz_introspector/analyses/function_call_analyser.py
fuzz_introspector/analyses/metadata.py
fuzz_introspector/analyses/optimal_targets.py
fuzz_introspector/analyses/public_candidate_analyser.py
fuzz_introspector/analyses/runtime_coverage_analysis.py
fuzz_introspector/analyses/sinks_analyser.py
fuzz_introspector/analyses/source_code_line_analyser.py
fuzz_introspector/analyses/data/__init__.py
fuzz_introspector/analyses/data/cwe_data.py
fuzz_introspector/datatypes/__init__.py
fuzz_introspector/datatypes/branch_profile.py
fuzz_introspector/datatypes/bug.py
fuzz_introspector/datatypes/function_profile.py
fuzz_introspector/datatypes/fuzzer_profile.py
fuzz_introspector/datatypes/project_profile.py
fuzz_introspector/frontends/.gitignore
fuzz_introspector/frontends/__init__.py
fuzz_introspector/frontends/core.py
fuzz_introspector/frontends/datatypes.py
fuzz_introspector/frontends/frontend_c.py
fuzz_introspector/frontends/frontend_cpp.py
fuzz_introspector/frontends/frontend_go.py
fuzz_introspector/frontends/frontend_jvm.py
fuzz_introspector/frontends/frontend_rust.py
fuzz_introspector/frontends/oss_fuzz.py
fuzz_introspector/styling/__init__.py
fuzz_introspector/styling/calltree.js
fuzz_introspector/styling/clike.js
fuzz_introspector/styling/custom.js
fuzz_introspector/styling/prism.css
fuzz_introspector/styling/prism.js
fuzz_introspector/styling/styles.css
test/.gitignore
test/test_branch_profile.py
test/test_bug.py
test/test_cfg_load.py
test/test_code_coverage.py
test/test_frontends_c.py
test/test_frontends_cpp.py
test/test_frontends_go.py
test/test_frontends_jvm.py
test/test_frontends_rust.py
test/test_fuzzer_profile.py
test/test_html_generation.py
test/test_jvm_report_generation.py
test/test_url.py
test/test_utils.py
test/data/sample_cov.covreport
test/data/TestReport/config.properties
test/data/TestReport/test1/fuzzerLogFile-fuzz_test.data
test/data/TestReport/test1/fuzzerLogFile-fuzz_test.data.yaml
test/data/TestReport/test2/fuzzerLogFile-fuzz_test.data
test/data/TestReport/test2/fuzzerLogFile-fuzz_test.data.yaml
test/data/source-code/c/simple-sample-1/fuzzer.c
test/data/source-code/cpp/test-project-1/sample.cpp
test/data/source-code/cpp/test-project-1/sample.h
test/data/source-code/cpp/test-project-2/crossfile.cpp
test/data/source-code/cpp/test-project-2/fuzzer.cpp
test/data/source-code/cpp/test-project-2/recursive.cpp
test/data/source-code/cpp/test-project-2/sample.h
test/data/source-code/cpp/test-project-3/deep_chain.cpp
test/data/source-code/cpp/test-project-3/deep_chain.hpp
test/data/source-code/cpp/test-project-4/deep_nested.cc
test/data/source-code/cpp/test-project-4/deep_nested.hpp
test/data/source-code/cpp/test-project-5/test.cpp
test/data/source-code/cpp/test-project-5/test.hpp
test/data/source-code/cpp/test-project-6/sample.cpp
test/data/source-code/cpp/test-project-7/sample.h
test/data/source-code/cpp/test-project-7/sample1.cpp
test/data/source-code/cpp/test-project-7/sample2.cpp
test/data/source-code/go/test-project-1/fuzzer.go
test/data/source-code/go/test-project-2/fuzzer.go
test/data/source-code/go/test-project-3/fuzzer.go
test/data/source-code/go/test-project-4/fuzzer.go
test/data/source-code/go/test-project-5/fuzzer.go
test/data/source-code/go/test-project-6/fuzzer.go
test/data/source-code/go/test-project-7/fuzzer.go
test/data/source-code/go/test-project-7/package/package.go
test/data/source-code/go/test-project-8/fuzzer.go
test/data/source-code/go/test-project-9/fuzzer_one.go
test/data/source-code/go/test-project-9/fuzzer_two.go
test/data/source-code/go/test-project-9/others.go
test/data/source-code/jvm/test-project-1/simple/Fuzzer.java
test/data/source-code/jvm/test-project-2/polymorphism/Fuzzer.java
test/data/source-code/jvm/test-project-3/nested/Fuzzer.java
test/data/source-code/jvm/test-project-4/crosspackage/Fuzzer.java
test/data/source-code/jvm/test-project-4/crosspackage/helper/HelperClass.java
test/data/source-code/jvm/test-project-5/complex/Fuzzer.java
test/data/source-code/jvm/test-project-6/inheritance/Fuzzer.java
test/data/source-code/jvm/test-project-7/combined/Fuzzer.java
test/data/source-code/jvm/test-project-7/combined/helper/HelperClass.java
test/data/source-code/jvm/test-project-8/variable/B.java
test/data/source-code/jvm/test-project-8/variable/Fuzzer.java
test/data/source-code/jvm/test-project-8/variable/test/A.java
test/data/source-code/jvm/test-project-9/multiple/FuzzerOne.java
test/data/source-code/jvm/test-project-9/multiple/FuzzerTwo.java
test/data/source-code/jvm/test-project-9/multiple/SimpleClass.java
test/data/source-code/rust/test-project-1/fuzzer.rs
test/data/source-code/rust/test-project-2/fuzzer.rs
test/data/source-code/rust/test-project-2/math.rs
test/data/source-code/rust/test-project-3/fuzzer.rs
test/data/source-code/rust/test-project-3/mod_a.rs
test/data/source-code/rust/test-project-3/mod_b.rs
test/data/source-code/rust/test-project-4/fuzzer.rs
test/data/source-code/rust/test-project-5/fuzzer.rs
test/data/source-code/rust/test-project-5/recursive.rs
test/data/source-code/rust/test-project-6/fuzzer.rs
test/data/source-code/rust/test-project-6/utils.rs
test/data/source-code/rust/test-project-7/fuzzer.rs
test/data/source-code/rust/test-project-7/poly.rs
test/data/source-code/rust/test-project-8/combination.rs
test/data/source-code/rust/test-project-8/fuzzer.rs
test/data/source-code/rust/test-project-9/fuzzer_one.rs
test/data/source-code/rust/test-project-9/fuzzer_two.rs
test/fuzz/.gitignore
test/fuzz/README.md
test/fuzz/test_fuzz_cfg_load.py
test/fuzz/test_fuzz_cov_load.py
test/fuzz/test_fuzz_report_generation.py