From b9710bbd32449d654c5589354bd5958fdd83fbb5 Mon Sep 17 00:00:00 2001 From: LukenShiro Date: Sun, 29 Apr 2012 20:56:55 -0400 Subject: network/sniffjoke: Added (transparent TCP connection scrambler) Signed-off-by: dsomero --- network/sniffjoke/README | 5 ++ network/sniffjoke/slack-desc | 18 +++++ network/sniffjoke/sniffjoke.SlackBuild | 131 +++++++++++++++++++++++++++++++++ network/sniffjoke/sniffjoke.info | 10 +++ 4 files changed, 164 insertions(+) create mode 100644 network/sniffjoke/README create mode 100644 network/sniffjoke/slack-desc create mode 100644 network/sniffjoke/sniffjoke.SlackBuild create mode 100644 network/sniffjoke/sniffjoke.info diff --git a/network/sniffjoke/README b/network/sniffjoke/README new file mode 100644 index 0000000000..87020ffa73 --- /dev/null +++ b/network/sniffjoke/README @@ -0,0 +1,5 @@ +An internet client running SniffJoke injects in the transmission flow +some packets able to seriously disturb passive analysis like sniffing, +interception and low level information theft. No server supports needed! + +Please read documentation files in /usr/doc/ to set sniffjoke up properly. diff --git a/network/sniffjoke/slack-desc b/network/sniffjoke/slack-desc new file mode 100644 index 0000000000..889212f411 --- /dev/null +++ b/network/sniffjoke/slack-desc @@ -0,0 +1,18 @@ +# 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 ':'. +# |--------------------------------------------------------------------| +sniffjoke: sniffjoke (transparent TCP connection scrambler) +sniffjoke: +sniffjoke: This is an application that handles transparently your TCP +sniffjoke: connection, delaying, modifying and injecting fake packets inside +sniffjoke: your transmission, making them almost impossible to be correctly +sniffjoke: read by a passive wiretapping technology (IDS or sniffer). +sniffjoke: +sniffjoke: Homepage: http://www.delirandom.net/sniffjoke/ +sniffjoke: +sniffjoke: +sniffjoke: diff --git a/network/sniffjoke/sniffjoke.SlackBuild b/network/sniffjoke/sniffjoke.SlackBuild new file mode 100644 index 0000000000..0e996c1485 --- /dev/null +++ b/network/sniffjoke/sniffjoke.SlackBuild @@ -0,0 +1,131 @@ +#!/bin/sh + +# Slackware build script for sniffjoke + +# Copyright 2012 LukenShiro, Italy +# 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=sniffjoke +VERSION=${VERSION:-0.4.2_aa2a003} +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} + +SRCNAM="vecna-sniffjoke" +GITSRCVERSION="aa2a003" +DOCFILES="AUTHORS ChangeLog COPYING README.md doc/*.txt" + +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 $SRCNAM-$GITSRCVERSION +tar xvf $CWD/$SRCNAM-$GITSRCVERSION.tar.gz +cd $SRCNAM-$GITSRCVERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +# Unfortunately most options for destination directories are not +# available so we have to manually replace some values before cmake. +# plugin files +sed -i "s|DESTINATION \${CMAKE_INSTALL_PREFIX}/lib|DESTINATION /usr/lib${LIBDIRSUFFIX}|g" \ + src/plugins/*/CMakeLists.txt +# /var conf files +sed -i "s|DESTINATION \${CMAKE_INSTALL_PREFIX}/var/sniffjoke|DESTINATION /var/sniffjoke|g" \ + conf/CMakeLists.txt + +mkdir build +cd build +cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DPREFIX:STRING="/usr" \ + -DCMAKE_INSTALL_PREFIX:STRING="/usr" \ + -DPATH_MAN:STRING="/usr" \ + -DCMAKE_VERBOSE_MAKEFILE:BOOL="TRUE" \ + -DCMAKE_BUILD_TYPE:STRING="Release" \ + .. + +sed -i "s|PREFIX \"/usr/local\"|PREFIX \"/usr\"|g" ../src/service/config.h +sed -i "s|INSTALL_LIBDIR PREFIX\"/lib/sniffjoke/\"|INSTALL_LIBDIR \"/usr/lib${LIBDIRSUFFIX}/sniffjoke/\"|g" \ + ../src/service/config.h +sed -i "s|INSTALL_STATEDIR PREFIX\"/var/sniffjoke/\"|INSTALL_STATEDIR \"/var/sniffjoke/\"|g" \ + ../src/service/config.h + +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 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/ +cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION +# rename wrong directory references in doc/bin files +sed -i "s|/usr/local/var|/var|g" \ + $PKG/usr/doc/$PRGNAM-$VERSION/* $PKG/usr/man/man1/* \ + $PKG/usr/bin/sniffjoke-autotest +sed -i "s|/usr/local/lib|\|g" \ + $PKG/usr/doc/$PRGNAM-$VERSION/* $PKG/usr/man/man1/* +sed -i "s|/usr/local/lib|/usr/lib${LIBDIRSUFFIX}|g" \ + $PKG/usr/bin/sniffjoke-autotest +sed -i "s|/usr/local|/usr|g" \ + $PKG/usr/doc/$PRGNAM-$VERSION/* $PKG/usr/man/man1/* +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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 + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/sniffjoke/sniffjoke.info b/network/sniffjoke/sniffjoke.info new file mode 100644 index 0000000000..3fca2801ff --- /dev/null +++ b/network/sniffjoke/sniffjoke.info @@ -0,0 +1,10 @@ +PRGNAM="sniffjoke" +VERSION="0.4.2_aa2a003" +HOMEPAGE="http://www.delirandom.net/sniffjoke/" +DOWNLOAD="http://lukenshiro.altervista.org/sbo-sources/vecna-sniffjoke-aa2a003.tar.gz" +MD5SUM="c5c071e6ec2ae0a614f7512fb8c102f3" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="LukenShiro" +EMAIL="lukenshiro@ngi.it" +APPROVED="dsomero" -- cgit v1.2.3