2015-02-16 14:04:02 +01:00
|
|
|
#
|
|
|
|
# spec file for package afl
|
|
|
|
#
|
2020-02-09 17:19:53 +01:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2015-02-16 14:04:02 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-12-27 17:48:56 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-02-16 14:04:02 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: afl
|
2020-09-05 19:30:51 +02:00
|
|
|
Version: 2.68c
|
2015-02-16 14:04:02 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: American fuzzy lop is a security-oriented fuzzer
|
|
|
|
License: Apache-2.0
|
2020-02-09 17:19:53 +01:00
|
|
|
URL: http://lcamtuf.coredump.cx/afl/
|
2019-06-24 09:24:50 +02:00
|
|
|
Source: https://github.com/vanhauser-thc/AFLplusplus/archive/%{version}.tar.gz
|
2015-03-27 15:44:52 +01:00
|
|
|
Source1: afl-rpmlintrc
|
2020-04-12 17:41:48 +02:00
|
|
|
Patch1: afl-2.63c-fix-paths.patch
|
2015-02-16 14:04:02 +01:00
|
|
|
BuildRequires: gcc-c++
|
|
|
|
|
|
|
|
%description
|
2016-10-20 20:27:52 +02:00
|
|
|
American fuzzy lop is a security-oriented 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.
|
2015-02-16 14:04:02 +01:00
|
|
|
|
2016-10-20 20:27:52 +02:00
|
|
|
Compared to other instrumented fuzzers, afl-fuzz is designed to be
|
|
|
|
practical: it has modest performance overhead, uses a variety of highly
|
|
|
|
effective fuzzing strategies and effort minimization tricks, requires
|
|
|
|
essentially no configuration, and seamlessly handles complex, real-world
|
|
|
|
use cases - say, common image parsing or file compression libraries.
|
2015-02-16 14:04:02 +01:00
|
|
|
|
|
|
|
%prep
|
2019-06-24 09:24:50 +02:00
|
|
|
%setup -q -n AFLplusplus-%version
|
2015-03-27 21:33:36 +01:00
|
|
|
%patch1 -p1
|
2017-11-05 09:22:19 +01:00
|
|
|
sed -i 's|#!/usr/bin/env bash|#!/bin/bash|g' afl-cmin
|
2015-02-16 14:04:02 +01:00
|
|
|
|
|
|
|
%build
|
|
|
|
export CFLAGS="$CFLAGS %{optflags}"
|
2018-08-30 17:07:23 +02:00
|
|
|
%ifnarch %{ix86} x86_64
|
|
|
|
export AFL_NO_X86=1
|
|
|
|
%endif
|
2016-03-29 16:56:07 +02:00
|
|
|
make %{?_smp_mflags} PREFIX=%{_prefix} LIBEXEC_DIR=%{_libexecdir} DOC_DIR=%{_docdir}
|
2020-07-02 15:33:33 +02:00
|
|
|
# make radamsa
|
2015-02-16 14:04:02 +01:00
|
|
|
|
|
|
|
%install
|
2018-08-30 17:07:23 +02:00
|
|
|
%ifnarch %{ix86} x86_64
|
|
|
|
export AFL_NO_X86=1
|
|
|
|
%endif
|
2019-11-10 11:24:08 +01:00
|
|
|
make %{?_smp_mflags} PREFIX=%{_prefix} LIBEXEC_DIR=%{_libexecdir} DOC_DIR=%{_docdir} MAN_PATH=%{_mandir}/man8 DESTDIR=%{buildroot} install
|
2015-02-16 14:04:02 +01:00
|
|
|
|
|
|
|
%files
|
2020-02-25 17:42:55 +01:00
|
|
|
%license docs/COPYING LICENSE
|
|
|
|
%doc /usr/share/doc/packages/%name/
|
2015-02-16 14:04:02 +01:00
|
|
|
%{_bindir}/%{name}-*
|
2015-03-27 15:44:52 +01:00
|
|
|
%dir %{_libexecdir}/%{name}
|
|
|
|
%{_libexecdir}/%{name}/%{name}-as
|
|
|
|
%{_libexecdir}/%{name}/as
|
2020-04-12 17:41:48 +02:00
|
|
|
#{_libexecdir}/%{name}/argvfuzz*.so
|
|
|
|
#{_libexecdir}/%{name}/socketfuzz*.so
|
2020-07-02 15:33:33 +02:00
|
|
|
#{_libexecdir}/%{name}/libradamsa.so
|
2015-02-16 14:04:02 +01:00
|
|
|
%dir %{_datadir}/%{name}
|
|
|
|
%dir %{_datadir}/%{name}/testcases
|
|
|
|
%{_datadir}/%{name}/testcases/*
|
2016-10-20 20:27:52 +02:00
|
|
|
%dir %{_datadir}/afl/dictionaries/
|
|
|
|
%{_datadir}/afl/dictionaries/*
|
2019-11-10 11:24:08 +01:00
|
|
|
%{_mandir}/man8/afl*.8*
|
2015-02-16 14:04:02 +01:00
|
|
|
|
2015-03-27 15:44:52 +01:00
|
|
|
%changelog
|