• Home
  • Raw
  • Download

Lines Matching +full:java +full:- +full:docs +full:- +full:samples

2 …<a href="https://code-intelligence.com"><img src="https://www.code-intelligence.com/hubfs/Logos/CI…
9 <a href="https://search.maven.org/search?q=g:com.code-intelligence%20a:jazzer">
10 …<img src="https://img.shields.io/maven-central/v/com.code-intelligence/jazzer" alt="Maven Central">
12 …<a href="https://github.com/CodeIntelligenceTesting/jazzer/actions/workflows/run-all-tests.yml?que…
13 …ields.io/github/actions/workflow/status/CodeIntelligenceTesting/jazzer/run-all-tests.yml?branch=ma…
19 <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs welcome" />
24 <a href="https://www.code-intelligence.com/" target="_blank">Website</a>
26 <a href="https://www.code-intelligence.com/blog" target="_blank">Blog</a>
31 Jazzer is a coverage-guided, in-process fuzzer for the JVM platform developed by [Code Intelligence…
32 It is based on [libFuzzer](https://llvm.org/docs/LibFuzzer.html) and brings many of its instrumenta…
41 …s Autofuzz mode, in which it automatically generates arguments to a given Java function and report…
44 docker run -it cifuzz/jazzer-autofuzz \
45 com.mikesamuel:json-sanitizer:1.2.0 \
47 --autofuzz_ignore=java.lang.ArrayIndexOutOfBoundsException
50 …st two arguments are the Maven coordinates of the Java library and the fully qualified name of the…
51 The optional `--autofuzz_ignore` flag takes a list of uncaught exception classes to ignore.
59 …roject, for example based on the official [junit5-samples](https://github.com/junit-team/junit5-sa…
61 1. Add a dependency on `com.code-intelligence:jazzer-junit:<latest version>`.
63 …ed with [`@FuzzTest`](https://codeintelligencetesting.github.io/jazzer-docs/jazzer-junit/com/code_…
64 …/jazzer-docs/jazzer-api/com/code_intelligence/jazzer/api/FuzzedDataProvider.html), which provides …
71 A simple property-based fuzz test could look like this (excluding imports):
73 ```java
92 The open-source CLI tool [cifuzz](https://github.com/CodeIntelligenceTesting/cifuzz) makes
94 It provides a command-line UI for fuzzing runs, deduplicates and manages findings, and
96 tests at scale in the [CI App](https://app.code-intelligence.com).
103 …TestOneInput(<a href="https://codeintelligencetesting.github.io/jazzer-docs/jazzer-api/com/code_in…
108 ./jazzer --cp=<classpath> --target_class=<fuzz test class>
113 The [`examples`](examples/src/main/java/com/example) directory includes both toy and real-world exa…
121 docker run -v path/containing/the/application:/fuzzing cifuzz/jazzer --cp=<classpath> --target_clas…
129 …](https://github.com/bazelbuild/rules_fuzzing#java-fuzzing) for instructions on how to use Jazzer …
131 ### OSS-Fuzz
133-intelligence.com) and Google have teamed up to bring support for Java, Kotlin, and other JVM-base…
134 Read [the OSS-Fuzz guide](https://google.github.io/oss-fuzz/getting-started/new-project-guide/jvm-l…
138 * [Common options and workflows](docs/common.md)
139 * [Advanced techniques](docs/advanced.md)
143 A list of security issues and bugs found by Jazzer is maintained [here](docs/findings.md).
159 The LLVM-style edge coverage instrumentation for JVM bytecode used by Jazzer relies on [JaCoCo](htt…
160 Previously, Jazzer used AFL-style coverage instrumentation as pioneered by [kelinci](https://github…
163 <a href="https://www.code-intelligence.com"><img src="https://www.code-intelligence.com/hubfs/Logos…
166 [`FuzzedDataProvider`]: https://codeintelligencetesting.github.io/jazzer-docs/jazzer-api/com/code_i…