about summary refs log tree commit diff
AgeCommit message (Collapse)Author
2024-06-14Merge pull request #2125 from visitorckw/fix-libradamsa-signed-integer-overflowvan Hauser
Fix signed integer overflow in radamsa
2024-06-14Fix signed integer overflow in radamsaKuan-Wei Chiu
When UBSan was enabled and 'make test' was executed, the following runtime error was observed: libradamsa.c:26055:29: runtime error: left shift of 16777215 by 8 places cannot be represented in type 'int' This issue was caused by a left shift operation on a signed integer. The fix involved changing the integer literal to an unsigned integer by adding a 'U' suffix, ensuring the left shift operation produces the correct value without overflow. Fixes: 8178f4df ("remove radamsa, add radamsa custom mutator")
2024-06-13Revert "MONOTONIC"vanhauser-thc
This reverts commit 0c9b460cc46aebfa4eb6e1fbe928895c0a8fcfbd.
2024-06-13Merge pull request #2121 from visitorckw/remove-Wno-shift-count-overflowvan Hauser
Remove -Wno-shift-count-overflow flag and hashmap from compilation
2024-06-13Remove -Wno-shift-count-overflow flag and hashmap from compilationKuan-Wei Chiu
After commit 0c9d8e59 ("Fix undefined behavior by casting to uint64_t before left shift"), the -Wno-shift-count-overflow flag is no longer necessary to suppress compilation warnings. This commit removes the flag, allowing the compiler to provide appropriate warnings for any potential future cases of shifting too many bits. Additionally, after commit eaf4a299 ("make redqueen hashmap not default"), the hashmap is no longer in use. Therefore, this commit also removes the hashmap from the GNUmakefile.
2024-06-12Merge pull request #2122 from visitorckw/fix-realloc-checkvan Hauser
Fix memory allocation check in aflpp custom mutators
2024-06-13Fix memory allocation check in aflpp custom mutatorsKuan-Wei Chiu
The memory allocation check in afl_custom_fuzz function was incorrect. The condition was erroneously checking if ptr was non-null, whereas it should return 0 when ptr is null. Correct the condition to properly handle memory allocation failures. Fixes: 32ffa266 ("max_len support")
2024-06-12MONOTONICvanhauser-thc
2024-06-12Merge pull request #2120 from visitorckw/fix-shift-too-many-bitsvan Hauser
Fix undefined behavior by casting to uint64_t before left shift
2024-06-12Fix undefined behavior by casting to uint64_t before left shiftKuan-Wei Chiu
According to the C standard, left-shifting a value by an amount greater than or equal to the width of its promoted type results in undefined behavior. To prevent potential unexpected results, explicitly cast the uint8_t variable type to uint64_t before performing the left shift operation by 56 bits. This ensures the operation is well-defined and adheres to the standard. Fixes: 40df85d1 ("adjust cmplog header")
2024-06-10update changelogvanhauser-thc
2024-06-10Merge pull request #2119 from WorksButNotTested/frida-persistentvan Hauser
Frida persistent
2024-06-10Fixes to build on arm32Your
2024-06-10Fixes for arm/arm64Your Name
2024-06-10Fixes for x86Your Name
2024-06-10Update commentYour Name
2024-06-10Improve persistent modeYour Name
2024-06-10frida verbosevanhauser-thc
2024-06-09v4.22a initvanhauser-thc
2024-06-094.21cvanhauser-thc
2024-06-09nitvanhauser-thc
2024-06-09fix AFL_FRIDA_DEBUG_MAPSvanhauser-thc
2024-06-09fix no_forkserver modevanhauser-thc
2024-06-09nitvanhauser-thc
2024-06-09fix -nvanhauser-thc
2024-06-09allow multiple -mvanhauser-thc
2024-06-07move functionvanhauser-thc
2024-06-07target hashvanhauser-thc
2024-06-07update unicornvanhauser-thc
2024-06-07minor testcache optimizationsvanhauser-thc
2024-06-07fixvanhauser-thc
2024-06-07add cmplog_time measurementvanhauser-thc
2024-06-06memory adjustmentsvanhauser-thc
2024-06-06new seed selection algorithmvanhauser-thc
2024-06-05Merge pull request #2114 from WorksButNotTested/frida-rlimitvan Hauser
Fix issue for setrlimit
2024-06-05Merge pull request #2113 from AFLplusplus/fix_mmap_cmplogvan Hauser
Fix cmplog shared memory size when USEMMAP=1
2024-06-05Fix issue for setrlimitYour Name
2024-06-05Fix cmplog shared memory size when USEMMAP=1Andrea Fioraldi
2024-06-05nitsvanhauser-thc
2024-06-05optimize syncingvanhauser-thc
2024-06-04AFL_NO_SYNCvanhauser-thc
2024-06-04Merge pull request #2106 from a-shvedov/stablevan Hauser
feature: Added (generate_libtoken_dict.sh) script for simplified work with `libtokencap`
2024-06-03Update README.mdAlexander Shvedov
2024-06-03Update generate_libtoken_dict.shAlexander Shvedov
2024-06-03update grammar mutatorvanhauser-thc
2024-06-01fix afl-showmapvanhauser-thc
2024-06-01Merge pull request #2107 from AFLplusplus/regvan Hauser
fix regression
2024-06-01changelogvanhauser-thc
2024-06-01try regression fixvanhauser-thc
2024-06-01todovanhauser-thc