diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2022-02-26 18:21:49 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2022-02-26 21:58:39 -0600 |
commit | ffa2aef1143c96d4d1ddcbe8a52b0d11b0c0b72c (patch) | |
tree | 0c3c9ca60bbfd925b2e574b96d3615b3e0abb7c1 /network/base | |
parent | 9377c505536faa6ae1f4ad967c7de2eb80c4df02 (diff) | |
download | slackbuilds-ffa2aef1143c96d4d1ddcbe8a52b0d11b0c0b72c.tar.gz |
network/base: Removed (ftp + no active maintainer)
Diffstat (limited to 'network/base')
-rw-r--r-- | network/base/README | 6 | ||||
-rw-r--r-- | network/base/README.SLACKWARE | 48 | ||||
-rw-r--r-- | network/base/base.SlackBuild | 68 | ||||
-rw-r--r-- | network/base/base.info | 10 | ||||
-rw-r--r-- | network/base/slack-desc | 19 |
5 files changed, 0 insertions, 151 deletions
diff --git a/network/base/README b/network/base/README deleted file mode 100644 index 97b416357f..0000000000 --- a/network/base/README +++ /dev/null @@ -1,6 +0,0 @@ -BASE is the Basic Analysis and Security Engine. It is based on code -from the Analysis Console for Intrusion Databases (ACID) project. -This application provides a web frontend to query and analyze the alerts -coming from a Snort IDS system. - -See the included README.SLACKWARE for information on setting up BASE. diff --git a/network/base/README.SLACKWARE b/network/base/README.SLACKWARE deleted file mode 100644 index 08d5dc0929..0000000000 --- a/network/base/README.SLACKWARE +++ /dev/null @@ -1,48 +0,0 @@ -README.SLACKWARE -================ - - -0) Before installing BASE -------------------------- - -0.1 Necessary packages - -BASE requires a running installation of Snort, saving events to a database, -either directly or through Barnyard{,2}, and adodb. - -I tested this with: - - snort-2.8.6.1 - - barnyard2-1.8 - - adodb-5.11 - -Snort (with our without Barnyard) should be working fine, saving alerts to -your database before attempting to install or configure BASE. - -0.2 Necessary PHP modules - -For the graphics to work, you will need to get some modules from the PEAR -library. - -You can download & install them with a few simple commands, presuming you -have a working internet connection. If you do not have internet access on -the system where you are setting up BASE, check the pear instructions on how -to download the packages and install them on a separate box. - - # pear install Image_Color-1.0.4 - # pear install Image_Canvas-0.3.2 - # pear install Image_Graph-0.7.2 - - -1) Configuring BASE -------------------- - -After installing the BASE package, point your webbrowser to: - - http://<yourserver>/base - -and follow the five steps to configure BASE. -The last step is to copy the created configuration settings from your browser -and save it as: - - /var/www/htdocs/base/base_conf.php - diff --git a/network/base/base.SlackBuild b/network/base/base.SlackBuild deleted file mode 100644 index 5a1398587c..0000000000 --- a/network/base/base.SlackBuild +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/bash - -# Slackware build script for base: -# Basic Analysis and Security Engine - -# Written by Niels Horn <niels.horn@gmail.com> -# revision date 2010/09/22 - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=base -VERSION=${VERSION:-1.4.5} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -ARCH=noarch - -DOCROOT=${DOCROOT:-/var/www/htdocs} -PHPUSER=${PHPUSER:-root} -PHPGROUP=${PHPGROUP:-apache} - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -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 $TMP/$PRGNAM-$VERSION $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -tar xvf $CWD/$PRGNAM-$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 {} \; - -# "Install" to $DOCROOT/base -mkdir -p $PKG/$DOCROOT/$PRGNAM -cp -a \ - *.php base_conf.php.dist admin help images includes languages setup styles \ - $PKG/$DOCROOT/$PRGNAM/ -chown -R $PHPUSER:$PHPGROUP $PKG/$DOCROOT/$PRGNAM - -# Copy docs -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - docs/* sql \ - $PKG/usr/doc/$PRGNAM-$VERSION -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 -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/network/base/base.info b/network/base/base.info deleted file mode 100644 index 33f3e04fc3..0000000000 --- a/network/base/base.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="base" -VERSION="1.4.5" -HOMEPAGE="https://sourceforge.net/projects/secureideas/" -DOWNLOAD="https://downloads.sourceforge.net/secureideas/base-1.4.5.tar.gz" -MD5SUM="2ce7de089b7b860f8230731f94a02044" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="adodb snort" -MAINTAINER="Niels Horn" -EMAIL="niels.horn@gmail.com" diff --git a/network/base/slack-desc b/network/base/slack-desc deleted file mode 100644 index c5e4589610..0000000000 --- a/network/base/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -base: base (web front-end for Snort) -base: -base: BASE is the Basic Analysis and Security Engine. It is based on the -base: code from the Analysis Console for Intrusion Databases (ACID) project. -base: This application provides a web front-end to query and analyze the -base: alerts coming from a Snort IDS system. -base: -base: Homepage: https://sourceforge.net/projects/secureideas/ -base: -base: -base: |