diff options
author | salo <salo@pkgsrc.org> | 2006-02-12 17:24:23 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2006-02-12 17:24:23 +0000 |
commit | 0d80d499465955defd217cb18e363de456d24f59 (patch) | |
tree | 6dd695fb904c6257f0d99e5633de77c6ac6d9652 | |
parent | e7686df00ae23273e019e1c42f0428e6815f6bba (diff) | |
download | pkgsrc-0d80d499465955defd217cb18e363de456d24f59.tar.gz |
Updated to version 4.01:
Changes:
- Fixed a bug that would cause bogus reverse-DNS resolution on
big-endian machines. Thanks to Doug Hoyte, Seth Miller, Tony Doan,
and Andrew Lutomirsky for helping to debug and patch the problem.
- Fixed an important memory leak in the raw ethernet sending system.
Thanks to Ganga Bhavani (GBhavani(a)everdreamcorp.com) for
identifying the bug and sending a patch.
- Fixed --system-dns option so that --system_dns works too. Error
messages were changed to reflect the former (preferred) name.
Thanks to Sean Swift (sean.swift(a)bradford.gov.uk) and Peter
VanEeckhoutte (Peter.VanEeckhoutte(a)saraleefoodseurope.com) for
reporting the problem.
- Fixed a crash which would report this message:
"NmapOutputTable.cc:143: void NmapOutputTable::addItem(unsigned int,
unsigned int, bool, const char*, int): Assertion `row < numRows'
failed." Thanks to Jake Schneider (Jake.Schneider(a)dynetics.com)
for reporting and helping to debug the problem.
- Whenever Nmap sends packets with the SYN bit set (except for OS
detection), it now includes the maximum segment size (MSS) tcp
option with a value of 1460. This makes it stand out less as almost
all hosts set at least this option. Thanks to Juergen Schmidt
(ju(a)heisec.de) for the suggestion.
- Applied a patch for a Windows interface reading bug in the aDNS
subsystem from Doug Hoyte.
- Minor changes to recognize DragonFly BSD in configure
scripts. Thanks to Joerg Sonnenberger (joerg(a)britannica.bec.de)
for sending the patch.
- Fixed a minor bug in an error message starting with "eth_send of ARP
packet returned". Thanks to J.W. Hoogervorst
(J.W.Hoogervorst(a)uva.nl) for finding this.
-rw-r--r-- | net/nmap/Makefile | 4 | ||||
-rw-r--r-- | net/nmap/distinfo | 17 | ||||
-rw-r--r-- | net/nmap/patches/patch-aa | 10 | ||||
-rw-r--r-- | net/nmap/patches/patch-ab | 19 | ||||
-rw-r--r-- | net/nmap/patches/patch-ad | 19 | ||||
-rw-r--r-- | net/nmap/patches/patch-af | 15 | ||||
-rw-r--r-- | net/nmap/patches/patch-ah | 13 | ||||
-rw-r--r-- | net/nmapfe/Makefile | 6 |
8 files changed, 31 insertions, 72 deletions
diff --git a/net/nmap/Makefile b/net/nmap/Makefile index d8858bcb6ee..a014891864b 100644 --- a/net/nmap/Makefile +++ b/net/nmap/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.48 2006/01/31 22:21:23 salo Exp $ +# $NetBSD: Makefile,v 1.49 2006/02/12 17:24:23 salo Exp $ # -DISTNAME= nmap-4.00 +DISTNAME= nmap-4.01 CATEGORIES= net security MASTER_SITES= http://www.insecure.org/nmap/dist/ EXTRACT_SUFX= .tar.bz2 diff --git a/net/nmap/distinfo b/net/nmap/distinfo index ff56e3298ef..47774cc8bd4 100644 --- a/net/nmap/distinfo +++ b/net/nmap/distinfo @@ -1,12 +1,11 @@ -$NetBSD: distinfo,v 1.29 2006/02/01 20:39:11 joerg Exp $ +$NetBSD: distinfo,v 1.30 2006/02/12 17:24:23 salo Exp $ -SHA1 (nmap-4.00.tar.bz2) = f4de47d454c6c6e49e20086294701e4a09159638 -RMD160 (nmap-4.00.tar.bz2) = 42ba5d40dfe523a1265d741b2e42658a88f07b01 -Size (nmap-4.00.tar.bz2) = 1896480 bytes -SHA1 (patch-aa) = 80598e757ea710d707d4b8f247f22a1460b2688a -SHA1 (patch-ab) = db30a6dacb49a1760ae79a21b2949db23049aef7 -SHA1 (patch-ad) = d10bc67832fdaa9318ab57c6c283c07a10dec9b1 +SHA1 (nmap-4.01.tar.bz2) = 91d69ee1658fa3a564b416d96f73296169777bce +RMD160 (nmap-4.01.tar.bz2) = 9b711b68cac469162119b8ec458d82d2d39a353e +Size (nmap-4.01.tar.bz2) = 1895276 bytes +SHA1 (patch-aa) = 69d902c14166cc2d33d64a197c4a06a688dde1c1 +SHA1 (patch-ab) = ea3fc8ec22a6331a1c2dc512f1d166970beca6c3 +SHA1 (patch-ad) = d54793006dcd446cc973950c9d8a974cb37655d1 SHA1 (patch-ae) = 9ef870f3961c38c85c558304595df31f2b9d92fd -SHA1 (patch-af) = 2ea6443bef6138af65d85f813f7caddf6988dd6a -SHA1 (patch-ah) = 323de45bf4befa7a8502830f246dcfde95ca8f7f +SHA1 (patch-af) = d8eeac10d6c8fc3351eca6dc3638168d8a458a16 SHA1 (patch-ai) = f93dd35a9427f5619d3320955a1f7d132930ef66 diff --git a/net/nmap/patches/patch-aa b/net/nmap/patches/patch-aa index 88df3374c23..9e5f0c930de 100644 --- a/net/nmap/patches/patch-aa +++ b/net/nmap/patches/patch-aa @@ -1,10 +1,10 @@ -$NetBSD: patch-aa,v 1.15 2006/01/31 22:21:24 salo Exp $ +$NetBSD: patch-aa,v 1.16 2006/02/12 17:24:23 salo Exp $ ---- Makefile.in.orig 2006-01-30 08:10:31.000000000 +0100 -+++ Makefile.in 2006-01-31 21:08:31.000000000 +0100 +--- Makefile.in.orig 2006-02-10 03:22:27.000000000 +0100 ++++ Makefile.in 2006-02-12 18:06:50.000000000 +0100 @@ -1,4 +1,4 @@ --export NMAP_VERSION = 4.00 -+NMAP_VERSION = 4.00 +-export NMAP_VERSION = 4.01 ++NMAP_VERSION = 4.01 NMAP_NAME= Nmap NMAP_URL= http://www.insecure.org/nmap/ NMAP_PLATFORM=@host@ diff --git a/net/nmap/patches/patch-ab b/net/nmap/patches/patch-ab index ba9077169c0..72f245271e4 100644 --- a/net/nmap/patches/patch-ab +++ b/net/nmap/patches/patch-ab @@ -1,17 +1,8 @@ -$NetBSD: patch-ab,v 1.10 2006/02/01 20:39:11 joerg Exp $ +$NetBSD: patch-ab,v 1.11 2006/02/12 17:24:23 salo Exp $ ---- configure.orig 2005-12-31 01:13:10.000000000 +0000 -+++ configure -@@ -3029,7 +3029,7 @@ _ACEOF - # libpcap doesn't even LOOK at - # the timeout you give it under Linux - ;; -- *-freebsd* | *-kfreebsd*-gnu) -+ *-freebsd* | *-kfreebsd*-gnu | *-dragonfly*) - cat >>confdefs.h <<\_ACEOF - #define FREEBSD 1 - _ACEOF -@@ -5765,10 +5765,6 @@ fi +--- configure.orig 2006-02-02 03:18:42.000000000 +0100 ++++ configure 2006-02-12 18:07:39.000000000 +0100 +@@ -5765,10 +5765,6 @@ fi; @@ -22,7 +13,7 @@ $NetBSD: patch-ab,v 1.10 2006/02/01 20:39:11 joerg Exp $ if test $needs_cpp_precomp = yes; then CXXFLAGS="-no-cpp-precomp $CXXFLAGS" fi -@@ -5802,6 +5798,7 @@ cat >>conftest.$ac_ext <<_ACEOF +@@ -5802,6 +5798,7 @@ extern char pcap_version[]; int main() { int major, minor; diff --git a/net/nmap/patches/patch-ad b/net/nmap/patches/patch-ad index 2e26d63242f..cf9d2058b18 100644 --- a/net/nmap/patches/patch-ad +++ b/net/nmap/patches/patch-ad @@ -1,7 +1,7 @@ -$NetBSD: patch-ad,v 1.10 2006/02/01 20:39:11 joerg Exp $ +$NetBSD: patch-ad,v 1.11 2006/02/12 17:24:23 salo Exp $ ---- nbase/configure.orig 2006-01-25 07:50:35.000000000 +0000 -+++ nbase/configure +--- nbase/configure.orig 2006-02-02 03:18:49.000000000 +0100 ++++ nbase/configure 2006-02-12 18:08:45.000000000 +0100 @@ -9,6 +9,8 @@ ## M4sh Initialization. ## ## --------------------- ## @@ -11,16 +11,7 @@ $NetBSD: patch-ad,v 1.10 2006/02/01 20:39:11 joerg Exp $ # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh -@@ -2561,7 +2563,7 @@ _ACEOF - # libpcap doesn't even LOOK at - # the timeout you give it under Linux - ;; -- *-freebsd* | *-kfreebsd*-gnu) -+ *-freebsd* | *-kfreebsd*-gnu | *-dragonfly*) - cat >>confdefs.h <<\_ACEOF - #define FREEBSD 1 - _ACEOF -@@ -7081,7 +7083,7 @@ if test "${ac_cv_lib_ssl_SSL_new+set}" = +@@ -7081,7 +7083,7 @@ echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=$LIBS @@ -29,7 +20,7 @@ $NetBSD: patch-ad,v 1.10 2006/02/01 20:39:11 joerg Exp $ cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF -@@ -7144,7 +7146,7 @@ if test $ac_cv_lib_ssl_SSL_new = yes; th +@@ -7144,7 +7146,7 @@ #define HAVE_LIBSSL 1 _ACEOF diff --git a/net/nmap/patches/patch-af b/net/nmap/patches/patch-af index d2d2af5089d..e3052491f56 100644 --- a/net/nmap/patches/patch-af +++ b/net/nmap/patches/patch-af @@ -1,7 +1,7 @@ -$NetBSD: patch-af,v 1.5 2006/02/01 20:39:11 joerg Exp $ +$NetBSD: patch-af,v 1.6 2006/02/12 17:24:23 salo Exp $ ---- nmapfe/configure.orig 2005-12-30 04:18:16.000000000 +0000 -+++ nmapfe/configure +--- nmapfe/configure.orig 2006-02-03 03:05:13.000000000 +0100 ++++ nmapfe/configure 2006-02-12 18:09:56.000000000 +0100 @@ -9,6 +9,8 @@ ## M4sh Initialization. ## ## --------------------- ## @@ -11,12 +11,3 @@ $NetBSD: patch-af,v 1.5 2006/02/01 20:39:11 joerg Exp $ # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh -@@ -2715,7 +2717,7 @@ _ACEOF - # libpcap doesn't even LOOK at - # the timeout you give it under Linux - ;; -- *-freebsd* | *-kfreebsd*-gnu) -+ *-freebsd* | *-kfreebsd*-gnu | *-dragonfly*) - cat >>confdefs.h <<\_ACEOF - #define FREEBSD 1 - _ACEOF diff --git a/net/nmap/patches/patch-ah b/net/nmap/patches/patch-ah deleted file mode 100644 index bedd38bf127..00000000000 --- a/net/nmap/patches/patch-ah +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ah,v 1.1 2006/02/01 20:39:11 joerg Exp $ - ---- libdnet-stripped/configure.orig 2006-02-01 19:38:08.000000000 +0000 -+++ libdnet-stripped/configure -@@ -22707,7 +22707,7 @@ esac - elif test "$ac_cv_header_net_if_tun_h" = yes ; then - if test "$ac_cv_header_stropts_h" = yes ; then - case "$host_os" in -- *kfreebsd*) -+ *kfreebsd* | *dragonfly*) - case $LIBOBJS in - "tun-bsd.$ac_objext" | \ - *" tun-bsd.$ac_objext" | \ diff --git a/net/nmapfe/Makefile b/net/nmapfe/Makefile index b6c0047dd43..ca2e94a5563 100644 --- a/net/nmapfe/Makefile +++ b/net/nmapfe/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.37 2006/02/05 23:10:28 joerg Exp $ +# $NetBSD: Makefile,v 1.38 2006/02/12 17:24:23 salo Exp $ # -DISTNAME= nmap-4.00 +DISTNAME= nmap-4.01 PKGNAME= nmapfe-0.9.5 -PKGREVISION= 25 +PKGREVISION= 26 CATEGORIES= net security MASTER_SITES= http://www.insecure.org/nmap/dist/ EXTRACT_SUFX= .tar.bz2 |