From owner-svn-ports-head@FreeBSD.ORG Wed Nov 26 22:58:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDD81C9E; Wed, 26 Nov 2014 22:58:47 +0000 (UTC) Received: from mail-yk0-x234.google.com (mail-yk0-x234.google.com [IPv6:2607:f8b0:4002:c07::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8948CF11; Wed, 26 Nov 2014 22:58:47 +0000 (UTC) Received: by mail-yk0-f180.google.com with SMTP id 9so1730287ykp.11 for ; Wed, 26 Nov 2014 14:58:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=c+EIR4fw9+sWVedaLSQudYZz1DJfVyIh8QW1cyNJuSE=; b=CimyTPn4pXIedalDUvMh5Qs5yCw3xvt+2HmLqFpGSXaqpIpsA1VXSnXztCOiu3CGNa I6IUszE5g25bAqnVpRJe8JiHe/JOcrfmStoHxCCDoEK1er1BPS4y8+dbg6/2ewEtZdy2 qmzZ34N/DKw8Qe9+QqhBfYSAi98yqZsIW4OJ/RJFa0dAU8IJ/juw5Qh51Jq3Dmjyr5A4 4bptsYrB56o17t9ceI7vJySdCNAVWTSXpqZnioidz9B4oAOVt9qkWtOilkNBz3icaiU0 Yo2Cj1BQAFs9ZFEk45iAUralzcRWiZjmycuht295T480HmuVWvcncUmkC/zPIYRwS31+ qjgQ== MIME-Version: 1.0 X-Received: by 10.236.22.36 with SMTP id s24mr34196813yhs.138.1417042726628; Wed, 26 Nov 2014 14:58:46 -0800 (PST) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.211.9 with HTTP; Wed, 26 Nov 2014 14:58:46 -0800 (PST) In-Reply-To: <201411262257.sAQMvG0L019338@svn.freebsd.org> References: <201411262257.sAQMvG0L019338@svn.freebsd.org> Date: Wed, 26 Nov 2014 23:58:46 +0100 X-Google-Sender-Auth: FXme_XQExIDxSonjKMKO0kCKjAA Message-ID: Subject: Re: svn commit: r373463 - in head/devel: . afl From: Antoine Brodin To: Xin LI Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Nov 2014 22:58:47 -0000 On Wed, Nov 26, 2014 at 11:57 PM, Xin LI wrote: > Author: delphij > Date: Wed Nov 26 22:57:15 2014 > New Revision: 373463 > URL: https://svnweb.freebsd.org/changeset/ports/373463 > QAT: https://qat.redports.org/buildarchive/r373463/ > > Log: > New port: american fuzzy lop. > > American fuzzy lop is a fuzzer that employs a novel type of compile-time > instrumentation and genetic algorithms to automatically discover clean, > interesting test cases that trigger new internal states in the targeted > binary. Fail, there is already security/afl Cheers, Antoine > > Added: > head/devel/afl/ > head/devel/afl/Makefile (contents, props changed) > head/devel/afl/distinfo (contents, props changed) > head/devel/afl/pkg-descr (contents, props changed) > head/devel/afl/pkg-plist (contents, props changed) > Modified: > head/devel/Makefile > > Modified: head/devel/Makefile > ============================================================================== > --- head/devel/Makefile Wed Nov 26 21:52:11 2014 (r373462) > +++ head/devel/Makefile Wed Nov 26 22:57:15 2014 (r373463) > @@ -44,6 +44,7 @@ > SUBDIR += adime > SUBDIR += aegis > SUBDIR += afay > + SUBDIR += afl > SUBDIR += ahven > SUBDIR += aifad > SUBDIR += alabastra > > Added: head/devel/afl/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/afl/Makefile Wed Nov 26 22:57:15 2014 (r373463) > @@ -0,0 +1,23 @@ > +# Created by: Xin Li > +# $FreeBSD$ > + > +PORTNAME= afl > +PORTVERSION= 0.71b > +CATEGORIES= devel > +MASTER_SITES= http://lcamtuf.coredump.cx/afl/releases/ > + > +MAINTAINER= delphij@FreeBSD.org > +COMMENT= American Fuzzy Lop, a fuzzer > + > +LICENSE= APACHE20 > + > +USES= gmake tar:tgz > + > +BINFILES= bin/afl-gcc bin/afl-showmap bin/afl-fuzz lib/afl/afl-as > + > +post-install: > + @for f in ${BINFILES}; do \ > + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/$${f}; \ > + done > + > +.include > > Added: head/devel/afl/distinfo > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/afl/distinfo Wed Nov 26 22:57:15 2014 (r373463) > @@ -0,0 +1,2 @@ > +SHA256 (afl-0.71b.tgz) = 562ec84d8e1c91da7d120c6596552d9d86565257289a2068e3c0cf98cfcb983d > +SIZE (afl-0.71b.tgz) = 686014 > > Added: head/devel/afl/pkg-descr > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/afl/pkg-descr Wed Nov 26 22:57:15 2014 (r373463) > @@ -0,0 +1,9 @@ > +American fuzzy lop is a fuzzer that employs a novel type of compile-time > +instrumentation and genetic algorithms to automatically discover clean, > +interesting test cases that trigger new internal states in the targeted > +binary. This substantially improves the functional coverage for the > +fuzzed code. The compact synthesized corpora produced by the tool are > +also useful for seeding other, more labor- or resource-intensive testing > +regimes down the road. > + > +WWW: http://lcamtuf.coredump.cx/afl/ > > Added: head/devel/afl/pkg-plist > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/afl/pkg-plist Wed Nov 26 22:57:15 2014 (r373463) > @@ -0,0 +1,40 @@ > +bin/afl-clang > +bin/afl-clang++ > +bin/afl-gcc > +bin/afl-g++ > +bin/afl-showmap > +bin/afl-fuzz > +lib/afl/afl-as > +lib/afl/as > +%%DATADIR%%/archives/ar/small_archive.a > +%%DATADIR%%/archives/compress/small_archive.Z > +%%DATADIR%%/archives/cpio/small_archive.cpio > +%%DATADIR%%/archives/gzip/small_archive.gz > +%%DATADIR%%/archives/lzo/small_achive.lzo > +%%DATADIR%%/archives/tar/small_archive.tar > +%%DATADIR%%/archives/xz/small_archive.xz > +%%DATADIR%%/archives/zip/small_archive.zip > +%%DATADIR%%/images/bmp/hello_kitty.bmp > +%%DATADIR%%/images/gif/hello_kitty.gif > +%%DATADIR%%/images/ico/hello_kitty.ico > +%%DATADIR%%/images/jp2/hello_kitty.jp2 > +%%DATADIR%%/images/jpeg/hello_kitty.jpg > +%%DATADIR%%/images/png/hello_kitty.png > +%%DATADIR%%/images/tiff/hello_kitty.tif > +%%DATADIR%%/images/webp/hello_kitty_lossless.webp > +%%DATADIR%%/multimedia/h264/small_movie.mp4 > +%%DATADIR%%/others/elf/small_exec.elf > +%%DATADIR%%/others/hello/hello.txt > +%%DATADIR%%/others/pcap/small_capture.pcap > +%%DATADIR%%/others/rtf/small_document.rtf > +%%DATADIR%%/others/xml/small_document.xml > +%%DATADIR%%/wishlist.txt > +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog > +%%PORTDOCS%%%%DOCSDIR%%/README > +%%PORTDOCS%%%%DOCSDIR%%/current_todo.txt > +%%PORTDOCS%%%%DOCSDIR%%/env_variables.txt > +%%PORTDOCS%%%%DOCSDIR%%/notes_for_asan.txt > +%%PORTDOCS%%%%DOCSDIR%%/parallel_fuzzing.txt > +%%PORTDOCS%%%%DOCSDIR%%/perf_tips.txt > +%%PORTDOCS%%%%DOCSDIR%%/related_work.txt > +%%PORTDOCS%%%%DOCSDIR%%/status_screen.txt >