summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Giuseppe Di Terlizzi2024-02-22 15:36:05 +0100
committer Willy Sudiarto Raharjo2024-02-23 10:27:17 +0100
commit6bc59c4bc7c9a2bb5058a2b61b3fe695157f9609 (patch)
tree90fb065a5d4d28ee682a006a3c73db9937916a53 /network
parent1e720a18bca68989f641e813abc74c6ca9b73442 (diff)
downloadslackbuilds-6bc59c4bc7c9a2bb5058a2b61b3fe695157f9609.tar.gz
network/nessus: Updated for version 10.7.0.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/nessus/README10
-rw-r--r--network/nessus/nessus.SlackBuild2
-rw-r--r--network/nessus/nessus.info6
-rw-r--r--network/nessus/rc.nessusd12
4 files changed, 15 insertions, 15 deletions
diff --git a/network/nessus/README b/network/nessus/README
index 3758625cd1..6833489890 100644
--- a/network/nessus/README
+++ b/network/nessus/README
@@ -1,7 +1,7 @@
Nessus Vulnerability Scanner
-Nessus Professional, the industry's most widely deployed vulnerability
-assessment solution helps you reduce your organization’s attack surface and
-ensure compliance. Nessus features high-speed asset discovery, configuration
-auditing, target profiling, malware detection, sensitive data discovery,
-and more.
+Nessus Professional, the industry's most widely deployed vulnerability
+assessment solution helps you reduce your organization's attack surface
+and ensure compliance. Nessus features high-speed asset discovery,
+configuration auditing, target profiling, malware detection, sensitive
+data discovery, and more.
diff --git a/network/nessus/nessus.SlackBuild b/network/nessus/nessus.SlackBuild
index 55cd63900a..780603c7f3 100644
--- a/network/nessus/nessus.SlackBuild
+++ b/network/nessus/nessus.SlackBuild
@@ -25,7 +25,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=nessus
-VERSION=${VERSION:-10.6.4}
+VERSION=${VERSION:-10.7.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
diff --git a/network/nessus/nessus.info b/network/nessus/nessus.info
index 3bc7b6f2cc..aabe4b852c 100644
--- a/network/nessus/nessus.info
+++ b/network/nessus/nessus.info
@@ -1,10 +1,10 @@
PRGNAM="nessus"
-VERSION="10.6.4"
+VERSION="10.7.0"
HOMEPAGE="https://www.tenable.com/products/nessus"
DOWNLOAD="UNSUPPORTED"
MD5SUM=""
-DOWNLOAD_x86_64="https://www.tenable.com/downloads/api/v2/pages/nessus/files/Nessus-10.6.4-es7.x86_64.rpm"
-MD5SUM_x86_64="2a3552d4568be658846119ebb270f229"
+DOWNLOAD_x86_64="https://www.tenable.com/downloads/api/v2/pages/nessus/files/Nessus-10.7.0-el7.x86_64.rpm"
+MD5SUM_x86_64="618234819d2fc39c49890abb595c87e8"
REQUIRES=""
MAINTAINER="Giuseppe Di Terlizzi"
EMAIL="giuseppe.diterlizzi@gmail.com"
diff --git a/network/nessus/rc.nessusd b/network/nessus/rc.nessusd
index 3a80ca3c4c..a4a9c47376 100644
--- a/network/nessus/rc.nessusd
+++ b/network/nessus/rc.nessusd
@@ -29,7 +29,7 @@ NESSUS_NAME="Nessus"
start() {
echo -n $"Starting Nessus services: "
-
+
/opt/nessus/sbin/nessus-service -q -D
RETVAL=$?
@@ -50,15 +50,15 @@ stop() {
test -f "$NESSUS_PID_FILE" && kill `cat /opt/nessus/var/nessus/nessus-service.pid`
RETVAL=$?
-
+
sleep 4
-
+
if [ "$RETVAL" == "0" ]; then
success
else
failure
fi
-
+
echo
return 0
@@ -75,7 +75,7 @@ status() {
exp_pid=$(cat $NESSUS_PID_FILE)
pid_dir="/proc/$exp_pid"
-
+
if [ -d "$pid_dir" ]; then
if [ "$(cat ${pid_dir}/stat | awk '{print $2}' | tr -d '()')" == "nessus-service" ]; then
echo "$NESSUS_NAME is running"
@@ -96,7 +96,7 @@ case "$1" in
start
;;
status)
- status
+ status
;;
stop)
stop