diff options
author | salo <salo@pkgsrc.org> | 2006-04-25 12:45:57 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2006-04-25 12:45:57 +0000 |
commit | 3f7dbcfdf4a5a56a2610c0ca07876f6696cec355 (patch) | |
tree | 6cae7586ac21056473a1aee6b862415c3979f961 /security/nessus-plugins/Makefile | |
parent | 5e881f9fefcbf4aaf20b4fba72db297f4161386d (diff) | |
download | pkgsrc-3f7dbcfdf4a5a56a2610c0ca07876f6696cec355.tar.gz |
Update to version 2.2.7
Approved by <frueauf>
Changes:
- make it work as binary packages,
- remove useless MESSAGE files,
- add nmap.nasl plugin, not included by default upstream,
- make the installation a bit more sane and easier to configure.
2.2.7:
======
Nessus 2.2.7 contains several fixes for bugs which have been found
during the 3.x developement process and have been backported to this
branch. It also slightly extends the NASL language by adding support for
arrays of arrays. We will use this feature in some key plugins (SMB in
particular) within 6 months, so you should definitely upgrade to 2.2.7
or 3.0.x.
nessus-libraries:
- Fixed a NULL pointer dereferencement in the BPF server (this mostly
affects OpenBSD and FreeBSD < 5)
- The 'service' functions now only deal with the services file provided
- with Nessus (instead of using a mix of /etc/services and others)
libnasl:
- Fixed off-by-one bugs in insstr() and str_replace() which would
sometimes prevent these two functions from properly dealing with the
last character of a string
- Fixed tcp_ping() which was too aggressive and may therefore sometimes
miss a live host
- Fixed a bug in send() which would not properly validate the value of the
'length' variable
- Now handle arrays of arrays
- Fixed open_priv_sock_tcp() which would report a successful connection
when timing out
nessusd:
- Properly install the file 'nessus-services' in $prefix/var/nessus/
- Bigger buffer when receiving preferences from the client (to avoid a
possible truncation of the plugin list in the future)
- Fixed a bug in the preferences parser which would cause nessusd to die
on startup when processing a malformed preference file
nessus client:
- Fixed an unlikely but potential segmentation fault when viewing the
report in the GUI
- Erase the credentials from memory after having used them (thanks to
Sumiut Siddhart for noticing this)
plugins:
- Fixed several bugs in find_services.c which would not properly set the
key Transport/SSL or which may read some data beyond its buffer
- Fixed a bad #if/#endif clause in nessus_tcp_scanner.c which prevented it
from recomputing the RTT, hence negatively impacting the performance
- nmap.nasl has been removed from the main distribution (to use nmap from
within Nessus read http://www.nessus.org/documentation/?doc=nmap-usage)
Diffstat (limited to 'security/nessus-plugins/Makefile')
-rw-r--r-- | security/nessus-plugins/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/security/nessus-plugins/Makefile b/security/nessus-plugins/Makefile index 1f3028ad0a4..e32d668549f 100644 --- a/security/nessus-plugins/Makefile +++ b/security/nessus-plugins/Makefile @@ -1,17 +1,21 @@ -# $NetBSD: Makefile,v 1.29 2006/04/17 13:46:47 wiz Exp $ +# $NetBSD: Makefile,v 1.30 2006/04/25 12:45:57 salo Exp $ .include "../../security/nessus/Makefile.common" DISTNAME= nessus-plugins-GPL-${VERS} PKGNAME= nessus-plugins-${VERS} -PKGREVISION= 2 +# nmap.nasl was removed from the pack, +# http://www.nessus.org/documentation/?doc=nmap-usage +DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} nmap.nasl +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} +SITES.nmap.nasl= http://www.nessus.org/documentation/ COMMENT= Plugins for the Nessus Network Security Scanner DEPENDS+= nmap>=2.0:../../net/nmap WRKSRC= ${WRKDIR}/nessus-plugins -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes USE_TOOLS+= cat gzip CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q} @@ -19,8 +23,9 @@ CONFIGURE_ENV+= CAT=${TOOLS_CAT:Q} GZIP=${TOOLS_GZIP_CMD:Q} PLIST_SRC= ${WRKDIR}/PLIST PLIST -# auto-generate PLIST of plug-ins post-install: + ${INSTALL_DATA} ${DISTDIR}/nmap.nasl ${PREFIX}/lib/nessus/plugins/ + # auto-generate PLIST of plug-ins ${RM} -f ${WRKDIR}/PLIST cd ${PREFIX} && \ ${FIND} lib/nessus/plugins -type f -print >>${WRKDIR}/PLIST |