From 2354bf1b669c8d8dc431992c952c5668f3957066 Mon Sep 17 00:00:00 2001 From: Erik Hanson Date: Sat, 23 May 2015 14:37:19 -0500 Subject: network/zmap: Added (network scanner) Signed-off-by: Erik Hanson --- network/zmap/README | 13 ++++++ network/zmap/doinst.sh | 12 +++++ network/zmap/slack-desc | 19 ++++++++ network/zmap/zmap.SlackBuild | 104 +++++++++++++++++++++++++++++++++++++++++++ network/zmap/zmap.info | 10 +++++ 5 files changed, 158 insertions(+) create mode 100644 network/zmap/README create mode 100644 network/zmap/doinst.sh create mode 100644 network/zmap/slack-desc create mode 100644 network/zmap/zmap.SlackBuild create mode 100644 network/zmap/zmap.info diff --git a/network/zmap/README b/network/zmap/README new file mode 100644 index 0000000000..f9a83db6e5 --- /dev/null +++ b/network/zmap/README @@ -0,0 +1,13 @@ +ZMap is a fast network scanner designed for Internet-wide network +surveys. On a typical desktop computer with a gigabit Ethernet +connection, ZMap is capable scanning the entire public IPv4 address +space in under five minutes. + +ZMap can be used to study protocol adoption over time, monitor service availability +and help us better understand large systems distributed across the Internet. + +WARNING: While ZMap is a powerful tool for researchers, please keep in mind that +by running ZMap, you are potentially scanning the ENTIRE IPv4 address space +and some users may not appreciate your scanning. +We encourage ZMap users to respect requests to stop scanning and to exclude +these networks from ongoing scanning. diff --git a/network/zmap/doinst.sh b/network/zmap/doinst.sh new file mode 100644 index 0000000000..eba158d1a4 --- /dev/null +++ b/network/zmap/doinst.sh @@ -0,0 +1,12 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + rm $NEW + fi +} + +config etc/zmap/zmap.conf.new +config etc/zmap/blacklist.conf.new diff --git a/network/zmap/slack-desc b/network/zmap/slack-desc new file mode 100644 index 0000000000..2a2eae2071 --- /dev/null +++ b/network/zmap/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +zmap: zmap (network scanner) +zmap: +zmap: ZMap is a fast network scanner designed for Internet-wide network +zmap: surveys. On a typical desktop computer with a gigabit Ethernet +zmap: connection, ZMap is capable scanning the entire public IPv4 address +zmap: space in under five minutes. +zmap: +zmap: +zmap: Project URL: https://zmap.io/ +zmap: +zmap: diff --git a/network/zmap/zmap.SlackBuild b/network/zmap/zmap.SlackBuild new file mode 100644 index 0000000000..a65b5270a6 --- /dev/null +++ b/network/zmap/zmap.SlackBuild @@ -0,0 +1,104 @@ +#!/bin/sh + +# Slackware build script for zmap + +# Copyright 2015 Willy Sudiarto Raharjo +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=zmap +VERSION=${VERSION:-1.2.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || tar xvf $CWD/v$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DENABLE_DEVELOPMENT=OFF \ + -DWITH_JSON=ON \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install DESTDIR=$PKG +cd .. + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mv $PKG/usr/share/man $PKG/usr +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +rm -rf $PKG/usr/share + +mv $PKG/etc/zmap/zmap.conf $PKG/etc/zmap/zmap.conf.new +mv $PKG/etc/zmap/blacklist.conf $PKG/etc/zmap/blacklist.conf.new + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS CHANGELOG INSTALL LICENSE README $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/zmap/zmap.info b/network/zmap/zmap.info new file mode 100644 index 0000000000..58acf59d72 --- /dev/null +++ b/network/zmap/zmap.info @@ -0,0 +1,10 @@ +PRGNAM="zmap" +VERSION="1.2.1" +HOMEPAGE="https://zmap.io" +DOWNLOAD="https://github.com/zmap/zmap/archive/v1.2.1.tar.gz" +MD5SUM="3e740b54c88c29bb03494b986f440b51" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="byacc gengetopt json-c" +MAINTAINER="Willy Sudiarto Raharjo" +EMAIL="willysr@slackbuilds.org" -- cgit v1.2.3-79-gdb01