aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--games/wolfmame/wolfmame.info8
-rw-r--r--network/obfs4proxy/README14
-rw-r--r--network/obfs4proxy/README.Slackware34
-rw-r--r--network/obfs4proxy/obfs4proxy.SlackBuild96
-rw-r--r--network/obfs4proxy/obfs4proxy.info10
-rw-r--r--network/obfs4proxy/slack-desc19
6 files changed, 177 insertions, 4 deletions
diff --git a/games/wolfmame/wolfmame.info b/games/wolfmame/wolfmame.info
index 12779bb5ee..09657b96d1 100644
--- a/games/wolfmame/wolfmame.info
+++ b/games/wolfmame/wolfmame.info
@@ -1,10 +1,10 @@
PRGNAM="wolfmame"
VERSION="0.268"
HOMEPAGE="https://github.com/mahlemiut/wolfmame/releases/latest"
-DOWNLOAD="https://github.com/mahlemiut/wolfmame/archive/wolf268/wolfmame-wolf268.tar.gz"
-MD5SUM="700bd3c55a04238a58f33d84f1083689"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
+DOWNLOAD="UNSUPPORTED"
+MD5SUM=""
+DOWNLOAD_x86_64="https://github.com/mahlemiut/wolfmame/archive/wolf268/wolfmame-wolf268.tar.gz"
+MD5SUM_x86_64="700bd3c55a04238a58f33d84f1083689"
REQUIRES=""
MAINTAINER="David Ferrone"
EMAIL="zapwai@gmail.com"
diff --git a/network/obfs4proxy/README b/network/obfs4proxy/README
new file mode 100644
index 0000000000..9af4d3c1ed
--- /dev/null
+++ b/network/obfs4proxy/README
@@ -0,0 +1,14 @@
+This is a protocol obfuscation layer for TCP protocols. Its purpose is
+to keep a third party from telling what protocol is in use based on
+message contents.
+
+Unlike obfs3, obfs4 attempts to provide authentication and data
+integrity, though it is still designed primarily around providing
+a layer of obfuscation for an existing authenticated protocol
+like SSH or TLS.
+
+Like obfs3 and ScrambleSuit, the protocol has 2 phases: in the first
+phase both parties establish keys. In the second, the parties exchange
+super-enciphered traffic.
+
+NOTE: this script download some modules from network during build time.
diff --git a/network/obfs4proxy/README.Slackware b/network/obfs4proxy/README.Slackware
new file mode 100644
index 0000000000..3ad8d4f96a
--- /dev/null
+++ b/network/obfs4proxy/README.Slackware
@@ -0,0 +1,34 @@
+Client side torrc configuration:
+
+ClientTransportPlugin obfs4 exec /usr/bin/obfs4proxy
+
+Bridge side torrc configuration:
+
+# Act as a bridge relay.
+BridgeRelay 1
+
+# Enable the Extended ORPort
+ExtORPort auto
+
+# Use obfs4proxy to provide the obfs4 protocol.
+ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy
+
+# (Optional) Listen on the specified address/port for obfs4 connections as
+# opposed to picking a port automatically.
+#ServerTransportListenAddr obfs4 0.0.0.0:443
+
+Tips and tricks
+
+On modern Linux systems it is possible to have obfs4proxy bind to reserved ports (<=1024)
+even when not running as root by granting the CAP_NET_BIND_SERVICE capability with setcap:
+
+# setcap 'cap_net_bind_service=+ep' /usr/bin/obfs4proxy
+
+obfs4proxy can also act as an obfs2 and obfs3 client or server.
+Adjust the ClientTransportPlugin and ServerTransportPlugin lines in the torrc as appropriate.
+
+obfs4proxy can also act as a ScrambleSuit client.
+Adjust the ClientTransportPlugin line in the torrc as appropriate.
+
+The autogenerated obfs4 bridge parameters are placed in DataDir/pt_state/obfs4_state.json.
+To ease deployment, the client side bridge line is written to DataDir/pt_state/obfs4_bridgeline.txt.
diff --git a/network/obfs4proxy/obfs4proxy.SlackBuild b/network/obfs4proxy/obfs4proxy.SlackBuild
new file mode 100644
index 0000000000..7e7eb8fbee
--- /dev/null
+++ b/network/obfs4proxy/obfs4proxy.SlackBuild
@@ -0,0 +1,96 @@
+#!/bin/bash
+
+# Slackware build script for obfs4proxy - An obfuscator
+
+# Copyright 2023 thnkman <thnkman@proton.me>
+# 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.
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PRGNAM=obfs4proxy
+VERSION=${VERSION:-0.0.14}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i586 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+set -e
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+
+tar xvf $CWD/obfs4-$PRGNAM-$VERSION.tar.gz --transform="s/obfs4-obfs4proxy-$VERSION/$PRGNAM-$VERSION/"
+
+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 {} \;
+
+go build -o obfs4proxy/obfs4proxy ./obfs4proxy
+
+mkdir -p $PKG/usr/bin \
+ $PKG/var/{log,run}/$PRGNAM \
+ $PKG/usr/man/man1 \
+ $PKG/usr/doc/$PRGNAM-$VERSION
+
+install -D -m 0755 $TMP/$PRGNAM-$VERSION/$PRGNAM/$PRGNAM $PKG/usr/bin/$PRGNAM
+
+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
+
+cp -a ChangeLog LICENSE LICENSE-GPL3.txt \
+ $PKG/usr/doc/$PRGNAM-$VERSION/
+
+cp -a doc/obfs4proxy.1 \
+ $PKG/usr/man/man1
+
+find $PKG/usr/man/man1 -iname obfs4proxy.1 -exec gzip -9 {} \;
+for i in $( find $PKG/doc -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
+
+cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+cat $CWD/README.Slackware > $PKG/usr/doc/$PRGNAM-$VERSION/README.Slackware
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -p -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/network/obfs4proxy/obfs4proxy.info b/network/obfs4proxy/obfs4proxy.info
new file mode 100644
index 0000000000..8ffe935d50
--- /dev/null
+++ b/network/obfs4proxy/obfs4proxy.info
@@ -0,0 +1,10 @@
+PRGNAM="obfs4proxy"
+VERSION="0.0.14"
+HOMEPAGE="https://github.com/Yawning/obfs4"
+DOWNLOAD="https://github.com/Yawning/obfs4/archive/obfs4proxy-0.0.14/obfs4-obfs4proxy-0.0.14.tar.gz"
+MD5SUM="9576a46fbac3dcee18f656d31c386f8c"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES=""
+MAINTAINER="thnkman"
+EMAIL="thnkman@proton.me"
diff --git a/network/obfs4proxy/slack-desc b/network/obfs4proxy/slack-desc
new file mode 100644
index 0000000000..399de945b3
--- /dev/null
+++ b/network/obfs4proxy/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------------------------------------------------------|
+obfs4proxy: obfs4proxy (The obfourscator)
+obfs4proxy:
+obfs4proxy: This is a protocol obfuscation layer for TCP protocols.
+obfs4proxy: Its purpose is to keep a third party from telling what protocol
+obfs4proxy: is in use based on message contents.
+obfs4proxy:
+obfs4proxy:
+obfs4proxy:
+obfs4proxy:
+obfs4proxy:
+obfs4proxy: https://github.com/Yawning/obfs4