You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/fuzzing/c-cpp/12-libafl/index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ Next, clone LibAFL's source code and build the libFuzzer drop-in replacement. No
68
68
69
69
```shell
70
70
git clone https://github.com/AFLplusplus/LibAFL
71
-
cd LibAFL/libafl_libfuzzer/libafl_libfuzzer_runtime
71
+
cd LibAFL/libafl_libfuzzer_runtime
72
72
./build.sh
73
73
```
74
74
@@ -511,7 +511,7 @@ We can now build the fuzzer:
511
511
cargo build --release
512
512
```
513
513
514
-
The resulting binary is located at `target/release/target/debug/libappsec_guide.a`.
514
+
The resulting binary is located at `target/release/libappsec_guide.a`.
515
515
516
516
### Compile a fuzz test {#compile-a-fuzz-test-rust}
517
517
@@ -931,7 +931,7 @@ The fuzzing campaign can be launched by running:
931
931
932
932
### CMake-based project
933
933
934
-
Let’s assume we are using CMake to build the program mentioned in the [introduction]({{% relref "fuzzing#introduction-to-fuzzers" %}}). We add a CMake target that builds the `main.cc` and `harness.cc` and links the target together with AFL++. Note that we are excluding the main function through the `NO_MAIN` flag; otherwise, the program would have two main functions.
934
+
Let’s assume we are using CMake to build the program mentioned in the [introduction]({{% relref "fuzzing#introduction-to-fuzzers" %}}). We add a CMake target that builds the `main.cc` and `harness.cc` and links the target together with LibAFL. Note that we are excluding the main function through the `NO_MAIN` flag; otherwise, the program would have two main functions.
0 commit comments