c6f3f974de
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.
12 lines
329 B
Ruby
12 lines
329 B
Ruby
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
|