- update to 2.2.5.

- remove dead mirrors.

ok sturm@
This commit is contained in:
aanriot 2005-08-02 12:37:27 +00:00
parent 23d5b34769
commit c39e6b40c0
14 changed files with 117 additions and 1135 deletions

View File

@ -1,6 +1,6 @@
# $OpenBSD: Makefile.inc,v 1.4 2005/07/16 17:51:41 aanriot Exp $
# $OpenBSD: Makefile.inc,v 1.5 2005/08/02 12:37:27 aanriot Exp $
VERSION= 2.2.4
VERSION= 2.2.5
CATEGORIES= security
HOMEPAGE= http://www.nessus.org/
@ -14,19 +14,10 @@ PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
MASTER_SITES= ftp://ftp.nessus.org/pub/nessus/nessus-${VERSION}/src/ \
ftp://mirror.arc.nasa.gov/pub/tools/nessus/nessus-${VERSION}/src/ \
ftp://ftp.gwdg.de/pub/linux/misc/nessus/nessus-${VERSION}/src/ \
ftp://nessus.via.ecp.fr/nessus/nessus-${VERSION}/src/ \
ftp://sunsite.cnlab-switch.ch/mirror/nessus/nessus-${VERSION}/src/ \
ftp://ftp.chg.ru/pub/security/nessus/nessus-${VERSION}/src/ \
ftp://ftp.sekure.net/pub/nessus/nessus-${VERSION}/src/ \
ftp://ftp.nectec.or.th/pub/mirrors/nessus/nessus-${VERSION}/src/ \
ftp://ftp.pt.nessus.org/pub/nessus/nessus-${VERSION}/src/ \
ftp://ftp.au.nessus.org/pub/nessus/nessus-${VERSION}/src/ \
ftp://ftp.stuff.ca/pub/nessus/nessus-${VERSION}/src/src/ \
ftp://ftp.at.nessus.org/pub/nessus/nessus-${VERSION}/src/ \
ftp://ftp.linux.org.tr/pub/nessus/nessus-${VERSION}/src/ \
ftp://cvs.nessus.org/pub/nessus/nessus-${VERSION}/src/
ftp://ftp.linux.org.tr/pub/nessus/nessus-${VERSION}/src/
CONFIGURE_STYLE= gnu

View File

@ -1,9 +1,8 @@
# $OpenBSD: Makefile,v 1.2 2005/07/11 09:51:10 alek Exp $
# $OpenBSD: Makefile,v 1.3 2005/08/02 12:37:27 aanriot Exp $
COMMENT= "network security scanner"
DISTNAME= nessus-core-${VERSION}
PKGNAME= ${DISTNAME}p0
FLAVORS= no_x11
FLAVOR?=

View File

@ -1,4 +1,4 @@
MD5 (nessus-core-2.2.4.tar.gz) = 01669eca30ec1150c8da5a14b11338ff
RMD160 (nessus-core-2.2.4.tar.gz) = 7ea00c30045c594492e6cc8d11c562d5a70c94a8
SHA1 (nessus-core-2.2.4.tar.gz) = 10c34560f21a320dd335baa9fd773c61a2c4c012
SIZE (nessus-core-2.2.4.tar.gz) = 679333
MD5 (nessus-core-2.2.5.tar.gz) = 282de0aa80a5c85aeab12bf556933694
RMD160 (nessus-core-2.2.5.tar.gz) = 30954270318bd71cca4974eac46ec06f8408c9a7
SHA1 (nessus-core-2.2.5.tar.gz) = 93057094b2d1b774a08bf49f0678a9413d958872
SIZE (nessus-core-2.2.5.tar.gz) = 683117

View File

@ -1,6 +1,6 @@
Nessus is an open-source vulnerability scanner. It's able to perform about
one hundred security checks with its plugins, and is working on networks to
make security enhancements.
Nessus is an open-source vulnerability scanner. It's able to perform
about one hundred security checks with its plugins, and is working on
networks to make security enhancements.
Flavors:
no_x11 no X11 frontend
no_x11 - no X11 frontend

View File

@ -1,4 +1,4 @@
MD5 (libnasl-2.2.4.tar.gz) = 47de3e86725b5f54f5752233a4bc1ea8
RMD160 (libnasl-2.2.4.tar.gz) = 50f1145393c0bb681d639a3ed01ae58a3e68345f
SHA1 (libnasl-2.2.4.tar.gz) = 711da77a13d13cf9c0f9f1f1dde51b4610995c84
SIZE (libnasl-2.2.4.tar.gz) = 361551
MD5 (libnasl-2.2.5.tar.gz) = da1d96493714c34ae7ffbc1907b5bbcd
RMD160 (libnasl-2.2.5.tar.gz) = 343aabdb906da2f68de3584e5ffa9274af29b866
SHA1 (libnasl-2.2.5.tar.gz) = dca55867e7c61b892f344afdbf0e30758ff5a936
SIZE (libnasl-2.2.5.tar.gz) = 364395

View File

@ -1,21 +0,0 @@
$OpenBSD: patch-libnasl_nasl_exec_c,v 1.1.1.1 2005/05/16 16:02:56 sturm Exp $
--- nasl/exec.c.orig Sun Apr 3 15:13:42 2005
+++ nasl/exec.c Sun Apr 3 15:15:45 2005
@@ -1805,7 +1805,7 @@ execute_nasl_script(struct arglist * scr
else
if (! (mode & NASL_EXEC_PARSE_ONLY))
{
- char *p;
+ char *p;
bzero(&tc, sizeof(tc));
tc.type = CONST_INT;
@@ -1819,7 +1819,7 @@ execute_nasl_script(struct arglist * scr
tc.type = CONST_DATA;
p = strrchr(name, '/');
- if (p == NULL) p = name; else p ++;
+ if (p == NULL) p = (char *)name; else p ++;
tc.x.str_val = p;
tc.size = strlen(p);
add_named_var_to_ctxt(lexic, "SCRIPT_NAME", &tc);

View File

@ -1,2 +1,2 @@
The NASL (Nessus Attack Scripting Language) library allows to create and use
Nessus' plugins.
The NASL (Nessus Attack Scripting Language) library allows to create and
use Nessus' plugins.

View File

@ -1,2 +1,2 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2005/05/16 16:02:56 sturm Exp $
@lib lib/libnasl.so.4.4
@comment $OpenBSD: PFRAG.shared,v 1.2 2005/08/02 12:37:27 aanriot Exp $
@lib lib/libnasl.so.4.5

View File

@ -1,4 +1,4 @@
MD5 (nessus-libraries-2.2.4.tar.gz) = 208eca80f4fb2de3f57328d92deb7f04
RMD160 (nessus-libraries-2.2.4.tar.gz) = ce2e479e05854b546aa15d285a45268d8e78ae58
SHA1 (nessus-libraries-2.2.4.tar.gz) = b3d0bd94ccc34361b2962f2098d87c27dcdd697b
SIZE (nessus-libraries-2.2.4.tar.gz) = 424258
MD5 (nessus-libraries-2.2.5.tar.gz) = a26a31ee7d8e82511e4ba3954ab1db24
RMD160 (nessus-libraries-2.2.5.tar.gz) = 2af840f20bc219ec96a4749ea0751ac40eb546b1
SHA1 (nessus-libraries-2.2.5.tar.gz) = 301a95ca8c77ac1fd26800765ede183d74fc2e1a
SIZE (nessus-libraries-2.2.5.tar.gz) = 426788

View File

@ -1,3 +1,3 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2005/05/16 16:02:56 sturm Exp $
@lib lib/libhosts_gatherer.so.4.4
@lib lib/libnessus.so.4.4
@comment $OpenBSD: PFRAG.shared,v 1.2 2005/08/02 12:37:28 aanriot Exp $
@lib lib/libhosts_gatherer.so.4.5
@lib lib/libnessus.so.4.5

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1.1.1 2005/05/16 16:02:56 sturm Exp $
# $OpenBSD: Makefile,v 1.2 2005/08/02 12:37:28 aanriot Exp $
COMMENT= "plugins for Nessus"
@ -12,7 +12,6 @@ BUILD_DEPENDS= ::security/nessus/core \
::security/nikto \
::net/nmap
RUN_DEPENDS= ${BUILD_DEPENDS}
.include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
MD5 (nessus-plugins-GPL-2.2.4.tar.gz) = 1e77107aa358ae9b9eba22154c1ca48d
RMD160 (nessus-plugins-GPL-2.2.4.tar.gz) = c4a8fb1d889a6455ccba3cbdb3972f4b81ea2656
SHA1 (nessus-plugins-GPL-2.2.4.tar.gz) = 5daf1057eada8fbd2f4d2ea24a1f73cdb1274a1f
SIZE (nessus-plugins-GPL-2.2.4.tar.gz) = 1488888
MD5 (nessus-plugins-GPL-2.2.5.tar.gz) = 4b2710dfb7d7957145b6f101edfba7a7
RMD160 (nessus-plugins-GPL-2.2.5.tar.gz) = 4e7413bd0676f07ae58a4f792acf512c32dfb62a
SHA1 (nessus-plugins-GPL-2.2.5.tar.gz) = 99465308af65e46cec2ac02d93bd4d0e85b28d86
SIZE (nessus-plugins-GPL-2.2.5.tar.gz) = 1115570

View File

@ -1,2 +1,2 @@
Nessus' plugins provide several features and software or system dependant
tests to perform vulnerability checks.
Nessus' plugins provide several features and software or system
dependant tests to perform vulnerability checks.

File diff suppressed because it is too large Load Diff