mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-12 18:18:07 +00:00
frida verbose
This commit is contained in:
@ -4,7 +4,9 @@
|
|||||||
release of the tool. See README.md for the general instruction manual.
|
release of the tool. See README.md for the general instruction manual.
|
||||||
|
|
||||||
### Version ++4.22a (dev)
|
### Version ++4.22a (dev)
|
||||||
-
|
- frida_mode:
|
||||||
|
- AFL_DEBUG is now the same as AFL_FRIDA_VERBOSE
|
||||||
|
- AFL_FRIDA_DEBUG_MAPS now works as expected
|
||||||
|
|
||||||
|
|
||||||
### Version ++4.21c (release)
|
### Version ++4.21c (release)
|
||||||
|
@ -110,7 +110,11 @@ gboolean util_verbose_enabled(void) {
|
|||||||
if (!initialized) {
|
if (!initialized) {
|
||||||
|
|
||||||
initialized = TRUE;
|
initialized = TRUE;
|
||||||
if (getenv("AFL_FRIDA_VERBOSE") != NULL) { util_verbose = TRUE; }
|
if (getenv("AFL_FRIDA_VERBOSE") || getenv("AFL_DEBUG")) {
|
||||||
|
|
||||||
|
util_verbose = TRUE;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user