diff options
author | adrianp <adrianp> | 2004-11-01 23:59:13 +0000 |
---|---|---|
committer | adrianp <adrianp> | 2004-11-01 23:59:13 +0000 |
commit | 0ff2f53f0887aaf8e2d3210254e216874ca8fa0b (patch) | |
tree | 5c8158e59ee5efe5b9ebd28d81ff766537f3eb19 /security/nessus | |
parent | cb870aab84dddea3046d2109e5fab5a2f4d6147b (diff) | |
download | pkgsrc-0ff2f53f0887aaf8e2d3210254e216874ca8fa0b.tar.gz |
- Update nessus to 2.2.0
- ok'ed frueauf
- Add MESSAGE about local state dir
Local security checks over SSH : Nessus can now log into the remote hosts
to determine their patch levels and missing updates
A rewritten internal knowledge base API : the new knowledge base API makes
KB access faster and lets the plugins store any amount of data
An improved internal communication between the various nessusd processes, thus
reducing the overhead it takes to handle the results of the plugins and pass
them to the client
An improved plugin scheduler which reduces the time Nessus needs to organize
the order in which plugins should be launched
Sensitive scripts (which can execute commands over SSH) are cryptographically
signed
Diffstat (limited to 'security/nessus')
-rw-r--r-- | security/nessus/MESSAGE | 7 | ||||
-rw-r--r-- | security/nessus/Makefile | 8 | ||||
-rw-r--r-- | security/nessus/Makefile.common | 4 |
3 files changed, 13 insertions, 6 deletions
diff --git a/security/nessus/MESSAGE b/security/nessus/MESSAGE new file mode 100644 index 00000000000..867cd65091f --- /dev/null +++ b/security/nessus/MESSAGE @@ -0,0 +1,7 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1 2004/11/01 23:59:13 adrianp Exp $ + +The local state directory is now explictily defined as ${VARBASE}/nessus +for nessus components. + +=========================================================================== diff --git a/security/nessus/Makefile b/security/nessus/Makefile index 20899a03d25..494a8733f1b 100644 --- a/security/nessus/Makefile +++ b/security/nessus/Makefile @@ -1,14 +1,14 @@ -# $NetBSD: Makefile,v 1.20 2004/10/05 09:10:09 tron Exp $ +# $NetBSD: Makefile,v 1.21 2004/11/01 23:59:13 adrianp Exp $ -DISTNAME= nessus-${VERS}nb1 +DISTNAME= nessus-${VERS} MASTER_SITES= # empty DISTFILES= # empty .include "../nessus/Makefile.common" COMMENT= The Nessus Network Security Scanner -DEPENDS+= nessus-core-${VERS}nb1:../nessus-core -DEPENDS+= nessus-plugins-${VERS}nb1:../nessus-plugins +DEPENDS+= nessus-core-${VERS}:../nessus-core +DEPENDS+= nessus-plugins-${VERS}:../nessus-plugins USE_X11= yes EXTRACT_ONLY= # empty diff --git a/security/nessus/Makefile.common b/security/nessus/Makefile.common index ff59c59917f..7ebda84c044 100644 --- a/security/nessus/Makefile.common +++ b/security/nessus/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.22 2004/07/22 15:01:45 adam Exp $ +# $NetBSD: Makefile.common,v 1.23 2004/11/01 23:59:13 adrianp Exp $ # # Common Makefile for: # * nessus-core @@ -6,7 +6,7 @@ # * nessus-plugins # * libnasl -VERS= 2.0.12 +VERS= 2.2.0 CATEGORIES= security x11 net MASTER_SITES?= ftp://ftp.nessus.org/pub/nessus/nessus-${VERS}/src/ \ |