diff options
author | van Hauser <vh@thc.org> | 2021-12-16 12:40:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-16 12:40:35 +0100 |
commit | 74a8f145e09d0361d8f576eb3f2e8881b6116f18 (patch) | |
tree | 42a51b12f3a018e729cca0826feccd49f5536e2e /utils | |
parent | 02fba1cc7e8709c8e0961454136a64f373e4f9ff (diff) | |
parent | 3cb7319ccdb98dcc6b023dbead603a4450ac4541 (diff) | |
download | afl++-74a8f145e09d0361d8f576eb3f2e8881b6116f18.tar.gz |
Merge pull request #1219 from AFLplusplus/dev
push to stable
Diffstat (limited to 'utils')
-rw-r--r-- | utils/autodict_ql/readme.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/autodict_ql/readme.md b/utils/autodict_ql/readme.md index f61026b7..42059f09 100644 --- a/utils/autodict_ql/readme.md +++ b/utils/autodict_ql/readme.md @@ -104,7 +104,7 @@ The usage of Autodict-QL is pretty easy. But let's describe it as: we want to compile `libxml` with codeql. Go to libxml and issue the following commands: - `./configure --disable-shared` - - `codeql create database libxml-db --language=cpp --command=make` + - `codeql database create libxml-db --language=cpp --command="make -j$(nproc)"` - Now you have the CodeQL database of the project :-) 3. The final step is to update the CodeQL database you created in step 2 (Suppose we are in `aflplusplus/utils/autodict_ql/` directory): @@ -144,4 +144,4 @@ There are 2 important points to remember: - Do not forget to set `AFL_MAX_DET_EXTRAS` at least to the number of generated dictionaries. If you forget to set this environment variable, then AFL++ uses just 200 tokens and use the rest of them only probabilistically. So this will - guarantee that your tokens will be used by AFL++. \ No newline at end of file + guarantee that your tokens will be used by AFL++. |