about summary refs log tree commit diff
path: root/src
AgeCommit message (Collapse)Author
2020-06-13fix shmemvan Hauser
2020-06-13fix typosvan Hauser
2020-06-13fix resize window crash and slightly more performant timed_readvan Hauser
2020-06-12code-format killed the compilationvan Hauser
2020-06-12fix for checksumsvan Hauser
2020-06-12switch to faster and better hash + randomvan Hauser
2020-06-12shm debug and fixesvan Hauser
2020-06-12fix warningsvan Hauser
2020-06-12added MOpt dictionary support from repovan Hauser
2020-06-11code format and debugvan Hauser
2020-06-10start of illumos cpu binding implementation.David Carlier
The current user needs the proc_owner permission, not something doable via the settings script.
2020-06-10Merge pull request #398 from devnexen/array_subscript_warn_fixvan Hauser
Disable array subscript warning
2020-06-09Disable array subscript warningDavid Carlier
2020-06-09systems w/o affinity support build fixDavid Carlier
2020-06-09always set statusDominik Maier
2020-06-09fix debug output in statsDominik Maier
2020-06-09add cpu affinity to fuzzer_statsvan Hauser
2020-06-09code formatDominik Maier
2020-06-09fixed shmap fuzzingDominik Maier
2020-06-05qemu debugvan Hauser
2020-06-04fix cmplog for shmem persistent modevan Hauser
2020-06-04typohexcoder-
2020-06-04add afl-ld-lto for LTOvan Hauser
2020-06-04code formatvan Hauser
2020-06-04fix shmem persistent modevan Hauser
2020-06-03fix shmemvan Hauser
2020-06-03switch order of shmem fuzzvan Hauser
2020-06-03switch shmem_len to the mapvan Hauser
2020-06-03OpenBSD: add missing limits.h header for PATH_MAXhexcoder-
2020-06-03code formatvan Hauser
2020-06-03shared mem input for qemu persistent hookAndrea Fioraldi
2020-06-03added shmem support to unicornaflDominik Maier
2020-06-02got rid of questionable phrasingDominik Maier
2020-06-02Merge branch 'dev' of github.com:aflplusplus/aflplusplus into devDominik Maier
2020-06-02minor fixesDominik Maier
2020-06-01code formatvan Hauser
2020-05-31starting shmap support for unicornDominik Maier
2020-05-30commentDominik Maier
2020-05-30rename var time->time_msvan Hauser
2020-05-30removed read_timedDominik Maier
2020-05-30reverted extendended read_timedDominik Maier
2020-05-30Revert "code format"Dominik Maier
This reverts commit 8f19becb620a6fedd0f8b855b48cdeeab211c2ed.
2020-05-30fix forkserver changevan Hauser
2020-05-30code formatDominik Maier
2020-05-30corrected read_timed for values > 4Dominik Maier
2020-05-30simplified read_timedvan Hauser
2020-05-29Merge pull request #383 from dgmelski/fix-read-timedDominik Maier
Fix read_timed when accumulating short reads
2020-05-28Fix read_timed when accumulating short readsDavid 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-27code formatvan Hauser
2020-05-27Merge pull request #379 from arnow117/mastervan Hauser
Fix MOpt implementation flaws