network/greenbone-security-assistant: Updated for version 6.0.12.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
d40148f5e0
commit
319721570f
|
@ -12,7 +12,7 @@ This is the UI the Open Vulnerability Assessment System (OpenVAS).
|
|||
- There are a number of tests that depend on other software packages that are
|
||||
not available as slackbuilds at this time. Stay tuned.
|
||||
|
||||
- If you're running in a VM environment, or on a headless server, then
|
||||
- If you're running in a VM environment, or on a headless server, then
|
||||
installing haveged is recommended, particularly for step 11 below.
|
||||
|
||||
###### Upgrade Notes ######
|
||||
|
@ -50,9 +50,9 @@ refer to http://slackbuilds.org/howto/ .
|
|||
5. You need a Certificate Authority and server certificate. Run the following
|
||||
command:
|
||||
# openvas-mkcert
|
||||
|
||||
|
||||
6. You need the NVT's (Network Vulnerability Tests). Run the following
|
||||
command to sync. In the future, you can do this through the
|
||||
command to sync. In the future, you can do this through the
|
||||
greenbone-security-assistant interface. This will take a minute or so
|
||||
with a blazing fast internet connection. YMMV.
|
||||
# openvas-nvt-sync
|
||||
|
@ -76,7 +76,7 @@ refer to http://slackbuilds.org/howto/ .
|
|||
|
||||
12. Create a user.
|
||||
# openvasmd --create-user=cary
|
||||
If you find the assigned password hard to remember, you can change it
|
||||
If you find the assigned password hard to remember, you can change it
|
||||
right now.
|
||||
# openvasmd --user=cary --new-password=mekmitasdigoat
|
||||
|
||||
|
@ -101,14 +101,16 @@ refer to http://slackbuilds.org/howto/ .
|
|||
19. Launch the greenbone-security-assistant.
|
||||
# sh /etc/rc.d/rc.gsad start
|
||||
|
||||
20. Point your browser at https://<YOUR IP OR HOSTNAME>:9392
|
||||
You'll get a certificate error, of course (fixing this is left as an
|
||||
excercise for the reader). Log in with your username/password from #12.
|
||||
20. Open file:///var/lib/openvas/CA/cacert.pem in your browser to import the
|
||||
certificate that you created in step 5 above.
|
||||
|
||||
21. [Optional] Build and install openvas-cli. You'll need this if you ever
|
||||
21. Point your browser at https://<YOUR HOSTNAME>:9392 and log in with your
|
||||
username/password from #12.
|
||||
|
||||
22. [Optional] Build and install openvas-cli. You'll need this if you ever
|
||||
want to script tests.
|
||||
|
||||
That's it! If you run into any problems, you can try running the
|
||||
That's it! If you run into any problems, you can try running the
|
||||
openvas-check-setup script found here:
|
||||
https://svn.wald.intevation.org/svn/openvas/trunk/tools/openvas-check-setup
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for greenbone-security-assistant
|
||||
|
||||
# Copyright 2015 Kent Fritz, Mountain View, CA
|
||||
# Copyright 2015,2017 Kent Fritz, Mountain View, CA
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,13 +23,13 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=greenbone-security-assistant
|
||||
VERSION=${VERSION:-6.0.5}
|
||||
VERSION=${VERSION:-6.0.12}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="greenbone-security-assistant"
|
||||
VERSION="6.0.5"
|
||||
VERSION="6.0.12"
|
||||
HOMEPAGE="http://www.openvas.org"
|
||||
DOWNLOAD="http://wald.intevation.org/frs/download.php/2173/greenbone-security-assistant-6.0.5.tar.gz"
|
||||
MD5SUM="ee69ddbd449401ca85a25f50f28291ac"
|
||||
DOWNLOAD="http://wald.intevation.org/frs/download.php/2442/greenbone-security-assistant-6.0.12.tar.gz"
|
||||
MD5SUM="362ddc36292a16d3a55c90bda044b377"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="openvas-libraries libmicrohttpd"
|
||||
|
|
Loading…
Reference in New Issue