American Fuzzy Lop: Difference between revisions
From charlesreid1
(Created page with "Fuzzer https://necurity.co.uk/netsec/2015/03/30/Fun-With-AFL.html#sthash.h9Aurb7C.dpbs =Installing= Get the latest version, and run make to make it: <pre> $ wget http://lc...") |
No edit summary |
||
| Line 13: | Line 13: | ||
$ make | $ make | ||
$ make install | $ make install | ||
</pre> | |||
Success! | |||
<pre> | |||
root@morpheus:~/codes/afl-2.10b# which afl-fuzz | |||
/usr/local/bin/afl-fuzz | |||
</pre> | </pre> | ||
Revision as of 05:14, 2 April 2016
Fuzzer
https://necurity.co.uk/netsec/2015/03/30/Fun-With-AFL.html#sthash.h9Aurb7C.dpbs
Installing
Get the latest version, and run make to make it:
$ wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz $ tar -xvf afl-latest.tgz cd afl-latest.tgz $ cd afl-* $ make $ make install
Success!
root@morpheus:~/codes/afl-2.10b# which afl-fuzz /usr/local/bin/afl-fuzz