diff options
author | frueauf <frueauf@pkgsrc.org> | 2001-03-10 18:53:39 +0000 |
---|---|---|
committer | frueauf <frueauf@pkgsrc.org> | 2001-03-10 18:53:39 +0000 |
commit | 1de29d9bc8ed3bdea5953bf0d596b685259278ec (patch) | |
tree | cf9e4740fb0e937a47637f35b9e906bc8620a1b3 /security/nessus-core | |
parent | 61e6d7efaabbefffea06819385266a089b44d86c (diff) | |
download | pkgsrc-1de29d9bc8ed3bdea5953bf0d596b685259278ec.tar.gz |
Update nessus to 1.0.7a.
Mainly some minor bugfixes and 6 new plugins. Unfortunatly no entry
in CHANGELOG for this minor update.
Diffstat (limited to 'security/nessus-core')
-rw-r--r-- | security/nessus-core/files/md5 | 4 | ||||
-rw-r--r-- | security/nessus-core/files/patch-sum | 3 | ||||
-rw-r--r-- | security/nessus-core/patches/patch-ab | 48 |
3 files changed, 3 insertions, 52 deletions
diff --git a/security/nessus-core/files/md5 b/security/nessus-core/files/md5 index 4ae3652ca69..e8fa2def4b7 100644 --- a/security/nessus-core/files/md5 +++ b/security/nessus-core/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.5 2001/01/28 18:52:33 frueauf Exp $ +$NetBSD: md5,v 1.6 2001/03/10 18:53:39 frueauf Exp $ -MD5 (nessus-core-1.0.7.tar.gz) = 5e4ffc227fbb542781780919c43c480b +MD5 (nessus-core-1.0.7a.tar.gz) = 1c20968f12f0bae96ce1bb837a2f1001 diff --git a/security/nessus-core/files/patch-sum b/security/nessus-core/files/patch-sum index a304762d840..bd04544cde2 100644 --- a/security/nessus-core/files/patch-sum +++ b/security/nessus-core/files/patch-sum @@ -1,4 +1,3 @@ -$NetBSD: patch-sum,v 1.2 2001/01/28 18:52:33 frueauf Exp $ +$NetBSD: patch-sum,v 1.3 2001/03/10 18:53:40 frueauf Exp $ MD5 (patch-aa) = bbcfdb5498f48506debda2b17cf27796 -MD5 (patch-ab) = 8f140ad204283c6afa7f25585e56fec4 diff --git a/security/nessus-core/patches/patch-ab b/security/nessus-core/patches/patch-ab deleted file mode 100644 index d7d95576d7a..00000000000 --- a/security/nessus-core/patches/patch-ab +++ /dev/null @@ -1,48 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2001/01/28 18:52:33 frueauf Exp $ - -Taken from nessus-core-patch.txt (MD5:ab07e0d01113661f4980b7e48c18072b) -published for nessus-core 1.0.7 on the main nessus ftp site. - -Can be obsolteted for other releases. - ---- nessusd/nasl_plugins.c-orig Sun Jan 7 01:50:37 2001 -+++ nessusd/nasl_plugins.c Sun Jan 28 14:40:32 2001 -@@ -165,8 +165,8 @@ - /* - * If the plugin is a scanner : no timeout - */ -- if(category == ACT_SCANNER)timeout = -1; -- else timeout = (int)arg_get_value(args, "TIMEOUT"); -+ if(category == ACT_SCANNER)timeout = -1; -+ else timeout = preferences_plugins_timeout(preferences); - } - - current_nasl_plugin = module = create_thread((void*)nasl_thread, d, (struct arglist*)-1); ---- nessusd/nes_plugins.c-orig Sun Jan 7 01:50:36 2001 -+++ nessusd/nes_plugins.c Sun Jan 28 14:45:46 2001 -@@ -190,10 +190,11 @@ - category = (int)arg_get_value(args, "CATEGORY"); - if(!timeout) - { -- if(category == ACT_SCANNER)timeout = -1; -- else timeout = (int)arg_get_value(args, "TIMEOUT"); -+ if(category == ACT_SCANNER)timeout = -1; -+ else timeout = preferences_plugins_timeout(preferences); - } -- -+ log_write("TIMEOUT : %d\n", timeout); -+ - - current_nes_plugin = module = create_thread((void*)func, args, (struct arglist*)-1); - signal(SIGTERM, nes_plugin_sigterm); ---- nessusd/preferences.c-orig Sun Jan 21 15:24:49 2001 -+++ nessusd/preferences.c Sun Jan 28 14:47:13 2001 -@@ -334,7 +334,7 @@ - struct arglist * preferences; - int id; - { -- int ret = preferences_plugins_timeout(preferences); -+ int ret = 0; - char * pref_name = emalloc(strlen("timeout.") + 40); - - sprintf(pref_name, "timeout.%d", id); |