Home
last modified time | relevance | path

Searched full:aflplusplus (Results 1 – 25 of 104) sorted by relevance

12345

/external/AFLplusplus/
DREADME.md3 <img align="right" src="https://raw.githubusercontent.com/AFLplusplus/Website/main/static/aflpp_bg.…
5 Release version: [4.10c](https://github.com/AFLplusplus/AFLplusplus/releases)
10 [https://github.com/AFLplusplus/AFLplusplus](https://github.com/AFLplusplus/AFLplusplus)
38 [Releases tab](https://github.com/AFLplusplus/AFLplusplus/releases) and
46 * For comparisons, use the fuzzbench `aflplusplus` setup, or use
47 `afl-clang-fast` with `AFL_LLVM_CMPLOG=1`. You can find the `aflplusplus`
49 [fuzzbench](https://github.com/google/fuzzbench/tree/master/fuzzers/aflplusplus).
57 docker pull aflplusplus/aflplusplus
58 docker run -ti -v /location/of/your/target:/src aflplusplus/aflplusplus
65 Note: you can also pull `aflplusplus/aflplusplus:dev` which is the most current
[all …]
DMETADATA2 # Usage: tools/external_updater/updater.sh update external/AFLplusplus
5 name: "AFLplusplus"
6 description: "AFLplusplus (american fuzzy lop plus plus) is a fuzzer"
18 value: "https://github.com/AFLplusplus/AFLplusplus"
DDockerfile2 # This Dockerfile for AFLplusplus uses Ubuntu 22.04 jammy and
8 FROM ubuntu:22.04 AS aflplusplus
10 LABEL "about"="AFLplusplus container image"
80 WORKDIR /AFLplusplus
DCITATION.cff20 url: "https://github.com/AFLplusplus/AFLplusplus"
DGNUmakefile.gcc_plugin14 # Copyright 2019-2024 AFLplusplus Project. All rights reserved.
170 …aving correctly!"; echo; echo "Please post to https://github.com/AFLplusplus/AFLplusplus/issues to…
193 @echo The homepage of AFL++ is: https://github.com/AFLplusplus/AFLplusplus >> ./$@
/external/AFLplusplus/docs/
DREADME.md20 ![Fuzzing process overview](https://raw.githubusercontent.com/AFLplusplus/AFLplusplus/dev/docs/reso…
29 ![Instrumenting the target](https://raw.githubusercontent.com/AFLplusplus/AFLplusplus/dev/docs/reso…
35 ![Preparing the fuzzing campaign](https://raw.githubusercontent.com/AFLplusplus/AFLplusplus/dev/doc…
41 ![Fuzzing the target](https://raw.githubusercontent.com/AFLplusplus/AFLplusplus/dev/docs/resources/…
47 ![Managing the fuzzing campaign](https://raw.githubusercontent.com/AFLplusplus/AFLplusplus/dev/docs…
DINSTALL.md10 docker pull aflplusplus/aflplusplus:latest
11 docker run -ti -v /location/of/your/target:/src aflplusplus/aflplusplus
17 Note: you can also pull `aflplusplus/aflplusplus:dev` which is the most current
33 git clone https://github.com/AFLplusplus/AFLplusplus
34 cd AFLplusplus
Dtutorials.md26 * [https://airbus-seclab.github.io/AFLplusplus-blogpost/](https://airbus-seclab.github.io/AFLpluspl…
36 …[https://github.com/P1umer/AFLplusplus-protobuf-mutator](https://github.com/P1umer/AFLplusplus-pro…
50 * [[Fuzzing with AFLplusplus] Installing AFLPlusplus and fuzzing a simple C program](https://www.yo…
51 * [[Fuzzing with AFLplusplus] How to fuzz a binary with no source code on Linux in persistent mode]…
Dideas.md6 **NOTE:** Our GSoC participation is concerning [libafl](https://github.com/AFLplusplus/libafl), not…
48 https://github.com/AFLplusplus/AFLplusplus/issues and let's discuss :-)
Dbest_practices.md88 [https://github.com/AFLplusplus/AFLplusplus/tree/networking](https://github.com/AFLplusplus/AFLplus…
DFAQ.md4 [https://github.com/AFLplusplus/AFLplusplus/discussions](https://github.com/AFLplusplus/AFLplusplus
9 …<summary id="what-is-the-difference-between-afl-and-aflplusplus">What is the difference between AF…
/external/AFLplusplus/.github/workflows/
Dcontainer.yml26 tags: aflplusplus:test-amd64
33 docker run --rm aflplusplus:test-amd64 bash -c "
44 if: ${{ github.event_name == 'push' && github.repository == 'AFLplusplus/AFLplusplus' }}
62 PUSH_TAGS=docker.io/aflplusplus/aflplusplus:${GITHUB_REF_NAME}
64 PUSH_TAGS=${PUSH_TAGS},docker.io/aflplusplus/aflplusplus:latest
Dcodeql-analysis.yml17 image: docker.io/aflplusplus/aflplusplus:dev
20 run: git config --global --add safe.directory /__w/AFLplusplus/AFLplusplus
27 - name: Build AFLplusplus # Rebuild because CodeQL needs to monitor the build process
Dcode-format.yml17 container: docker.io/aflplusplus/aflplusplus:dev
23 git config --global --add safe.directory /__w/AFLplusplus/AFLplusplus
/external/AFLplusplus/docs/resources/
D0_fuzzing_process_overview.drawio.svg4AFLplusplus/AFLplusplus/blob/stable/docs/fuzzing_in_depth.md#g-checking-the-coverage-of-the-fuzzin…
D1_instrument_target.drawio.svg4AFLplusplus/AFLplusplus/blob/stable/docs/fuzzing_in_depth.md#a-selecting-the-best-afl-compiler-for…
D4_manage_campaign.drawio.svg4AFLplusplus/AFLplusplus/blob/stable/docs/fuzzing_in_depth.md#g-checking-the-coverage-of-the-fuzzin…
D2_prepare_campaign.drawio.svg4AFLplusplus/AFLplusplus/blob/stable/docs/fuzzing_in_depth.md#b-making-the-input-corpus-unique">Mak…
D3_fuzz_target.drawio.svg4AFLplusplus/AFLplusplus/blob/stable/docs/fuzzing_in_depth.md#c-using-multiple-cores">Use multiple …
/external/oss-fuzz/infra/base-images/base-builder/
DDockerfile126 RUN git clone https://github.com/AFLplusplus/AFLplusplus.git aflplusplus && \
127 cd aflplusplus && \
Dcompile_afl32 pushd $SRC/aflplusplus > /dev/null
39 export CC="$SRC/aflplusplus/afl-clang-fast"
40 export CXX="$SRC/aflplusplus/afl-clang-fast++"
Dprecompile_afl18 echo "Precompiling AFLplusplus"
20 pushd $SRC/aflplusplus > /dev/null
/external/oss-fuzz/projects/qt/
DDockerfile19 RUN git clone --depth 1 https://github.com/AFLplusplus/AFLplusplus.git myaflplusplus && \
/external/AFLplusplus/instrumentation/
DREADME.lto.md85 cd ~/AFLplusplus
290 [https://github.com/AFLplusplus/AFLplusplus/issues/226](https://github.com/AFLplusplus/AFLplusplus/…
/external/AFLplusplus/utils/argv_fuzzing/
DREADME.md26 …structions in the [llvm_mode persistent mode](https://github.com/AFLplusplus/AFLplusplus/blob/stab…

12345