frida verbose

This commit is contained in:
vanhauser-thc 2024-06-10 09:08:44 +02:00
parent f2cd5e1d8e
commit 8e50c0c103
2 changed files with 8 additions and 2 deletions

View File

@ -4,7 +4,9 @@
release of the tool. See README.md for the general instruction manual.
### 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)

View File

@ -110,7 +110,11 @@ gboolean util_verbose_enabled(void) {
if (!initialized) {
initialized = TRUE;
if (getenv("AFL_FRIDA_VERBOSE") != NULL) { util_verbose = TRUE; }
if (getenv("AFL_FRIDA_VERBOSE") || getenv("AFL_DEBUG")) {
util_verbose = TRUE;
}
}