Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-13 | fix shmem | van Hauser | |
2020-06-13 | fix typos | van Hauser | |
2020-06-13 | fix resize window crash and slightly more performant timed_read | van Hauser | |
2020-06-12 | code-format killed the compilation | van Hauser | |
2020-06-12 | fix for checksums | van Hauser | |
2020-06-12 | switch to faster and better hash + random | van Hauser | |
2020-06-12 | shm debug and fixes | van Hauser | |
2020-06-12 | fix warnings | van Hauser | |
2020-06-12 | added MOpt dictionary support from repo | van Hauser | |
2020-06-11 | code format and debug | van Hauser | |
2020-06-10 | start of illumos cpu binding implementation. | David Carlier | |
The current user needs the proc_owner permission, not something doable via the settings script. | |||
2020-06-10 | Merge pull request #398 from devnexen/array_subscript_warn_fix | van Hauser | |
Disable array subscript warning | |||
2020-06-09 | Disable array subscript warning | David Carlier | |
2020-06-09 | systems w/o affinity support build fix | David Carlier | |
2020-06-09 | always set status | Dominik Maier | |
2020-06-09 | fix debug output in stats | Dominik Maier | |
2020-06-09 | add cpu affinity to fuzzer_stats | van Hauser | |
2020-06-09 | code format | Dominik Maier | |
2020-06-09 | fixed shmap fuzzing | Dominik Maier | |
2020-06-05 | qemu debug | van Hauser | |
2020-06-04 | fix cmplog for shmem persistent mode | van Hauser | |
2020-06-04 | typo | hexcoder- | |
2020-06-04 | add afl-ld-lto for LTO | van Hauser | |
2020-06-04 | code format | van Hauser | |
2020-06-04 | fix shmem persistent mode | van Hauser | |
2020-06-03 | fix shmem | van Hauser | |
2020-06-03 | switch order of shmem fuzz | van Hauser | |
2020-06-03 | switch shmem_len to the map | van Hauser | |
2020-06-03 | OpenBSD: add missing limits.h header for PATH_MAX | hexcoder- | |
2020-06-03 | code format | van Hauser | |
2020-06-03 | shared mem input for qemu persistent hook | Andrea Fioraldi | |
2020-06-03 | added shmem support to unicornafl | Dominik Maier | |
2020-06-02 | got rid of questionable phrasing | Dominik Maier | |
2020-06-02 | Merge branch 'dev' of github.com:aflplusplus/aflplusplus into dev | Dominik Maier | |
2020-06-02 | minor fixes | Dominik Maier | |
2020-06-01 | code format | van Hauser | |
2020-05-31 | starting shmap support for unicorn | Dominik Maier | |
2020-05-30 | comment | Dominik Maier | |
2020-05-30 | rename var time->time_ms | van Hauser | |
2020-05-30 | removed read_timed | Dominik Maier | |
2020-05-30 | reverted extendended read_timed | Dominik Maier | |
2020-05-30 | Revert "code format" | Dominik Maier | |
This reverts commit 8f19becb620a6fedd0f8b855b48cdeeab211c2ed. | |||
2020-05-30 | fix forkserver change | van Hauser | |
2020-05-30 | code format | Dominik Maier | |
2020-05-30 | corrected read_timed for values > 4 | Dominik Maier | |
2020-05-30 | simplified read_timed | van Hauser | |
2020-05-29 | Merge pull request #383 from dgmelski/fix-read-timed | Dominik Maier | |
Fix read_timed when accumulating short reads | |||
2020-05-28 | Fix read_timed when accumulating short reads | David Melski | |
The existing code appears to use 'len_read' in several places where 'total_read' was intended. The function may work if the first 1 or 2 iterations of the loop read the requested 'len' bytes. If the first two reads are "short" and a third read is done, the bytes will be placed over previously read bytes in buf and more than 'len' bytes may be read in total, though buf is never overrun. This commit changes read_timed to (1) correctly append short reads in buf (2) correctly terminate when the sum of the short reads equals the requested 'len' bytes (3) return an error when read() returns -1 or 0 The function also depends on select() decrementing the timeout structure, as it does on Linux. On other platforms, the exec_ms returned is likely incorrect. This patch does not attempt to address this issue. | |||
2020-05-27 | code format | van Hauser | |
2020-05-27 | Merge pull request #379 from arnow117/master | van Hauser | |
Fix MOpt implementation flaws |