updated docs

This commit is contained in:
van Hauser
2019-12-17 12:10:45 +01:00
parent 7218afdd8e
commit cf70fe0c9e
3 changed files with 7 additions and 6 deletions

View File

@ -211,7 +211,7 @@ test_python27:
else else
test_python27: test_python27:
@echo "[-] You seem to need to install the package python3.7-dev or python2.7-dev, but it is optional so we continue" @echo "[-] You seem to need to install the package python3.7-dev or python2.7-dev (and perhaps python[23]-apt), but it is optional so we continue"
endif endif

View File

@ -18,14 +18,14 @@ Version ++2.58d (dev):
---------------------- ----------------------
- qbdi_mode: fuzz android native libraries via QBDI framework - qbdi_mode: fuzz android native libraries via QBDI framework
- unicorn_mode: switched with the new unicornafl, thanks domenukk - unicorn_mode: switched to the new unicornafl, thanks domenukk
(see https://github.com/vanhauser-thc/unicorn) (see https://github.com/vanhauser-thc/unicorn)
- afl-fuzz: - afl-fuzz:
- added Radamsa and an optional radamsa stage (-R[R]) - added radamsa as (an optional) mutator stage (-R[R])
- CPU affinity support for DragonFly
- added -u command line option to not unlink the fuzz input file - added -u command line option to not unlink the fuzz input file
- Python3 support (autodetect) - Python3 support (autodetect)
- AFL_DISABLE_TRIM env var to disable the trim stage - AFL_DISABLE_TRIM env var to disable the trim stage
- CPU affinity support for DragonFly
- llvm_mode: - llvm_mode:
- float splitting is now configured via AFL_LLVM_LAF_SPLIT_FLOATS - float splitting is now configured via AFL_LLVM_LAF_SPLIT_FLOATS
- support for llvm 10 included now (thanks to devnexen) - support for llvm 10 included now (thanks to devnexen)
@ -39,7 +39,7 @@ Version ++2.58d (dev):
- afl-analyze: added AFL_SKIP_BIN_CHECK support - afl-analyze: added AFL_SKIP_BIN_CHECK support
- better random numbers for gcc_plugin and llvm_mode (thanks to devnexen) - better random numbers for gcc_plugin and llvm_mode (thanks to devnexen)
- Dockerfile by courtesy of devnexen - Dockerfile by courtesy of devnexen
- ripped regex.dictionary from Google afl PR - added regex.dictionary
- qemu and unicorn download scripts now try to download until the full - qemu and unicorn download scripts now try to download until the full
download succeeded. f*ckin travis fails downloading 40% of the time! download succeeded. f*ckin travis fails downloading 40% of the time!
- added the few Android stuff we didnt have already from Google afl repository - added the few Android stuff we didnt have already from Google afl repository

View File

@ -61,8 +61,9 @@ You must install the python 3.7 or 2.7 development package of your Linux
distribution before this will work. On Debian/Ubuntu/Kali this can be done distribution before this will work. On Debian/Ubuntu/Kali this can be done
with either: with either:
apt install python3.7-dev apt install python3.7-dev
pr or
apt install python2.7-dev apt install python2.7-dev
Note that for some distributions you might also need the package python[23]-apt
A prerequisite for using this mode is to compile AFLFuzz with Python support. A prerequisite for using this mode is to compile AFLFuzz with Python support.