New formula zzuf

zzuf is a transparent application input fuzzer. Its purpose is to find bugs in applications
by corrupting their user-contributed data (which more than often comes from untrusted sources
on the Internet). It works by intercepting file and network operations and changing random
bits in the program’s input. zzuf’s behaviour is deterministic, making it easier to reproduce
bugs.
This commit is contained in:
David Höppner 2010-05-22 13:10:37 +02:00
parent 1d7e277a45
commit c6f3f974de

12
Formula/zzuf.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Zzuf <Formula
url 'http://caca.zoy.org/files/zzuf/zzuf-0.13.tar.gz'
homepage 'http://caca.zoy.org/wiki/zzuf'
md5 '74579c429f9691f641a14f408997d42d'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end