Hi, Could someone update: net/dnsmasq net/dnstop net/dnscap Changes and patch files attached. Cheers,
2012-03-22 Added -Y option to specify the IP address of responses that should not be captured. This option is useful when you want to capture queries and spoofed response (DDoS attack) traffic, but not the normal response traffic. Added -L option to specify that dnscap should capture both VLAN-tagged and un-tagged packets. This is in contrast to the existing -l option which causes untagged packets to be ignored.
Index: Makefile =================================================================== RCS file: /cvsroot/pkgsrc/net/dnscap/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 6 Feb 2013 19:30:56 -0000 1.3 +++ Makefile 14 Aug 2015 11:41:05 -0000 @@ -1,7 +1,6 @@ # $NetBSD: Makefile,v 1.3 2013/02/06 19:30:56 jperkin Exp $ -DISTNAME= dnscap-134 -PKGREVISION= 1 +DISTNAME= dnscap-141 CATEGORIES= net MASTER_SITES= http://dnscap.dns-oarc.net/ Index: distinfo =================================================================== RCS file: /cvsroot/pkgsrc/net/dnscap/distinfo,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 distinfo --- distinfo 8 Dec 2011 07:39:00 -0000 1.1.1.1 +++ distinfo 14 Aug 2015 11:41:05 -0000 @@ -1,6 +1,6 @@ $NetBSD: distinfo,v 1.1.1.1 2011/12/08 07:39:00 agc Exp $ -SHA1 (dnscap-134.tar.gz) = a94265a850014ca2ad2bb545b7b7417161d4dc7f -RMD160 (dnscap-134.tar.gz) = 9860df237b053199cdec4ea2d1be714f392c8489 -Size (dnscap-134.tar.gz) = 91682 bytes +SHA1 (dnscap-141.tar.gz) = b034dcb8aeb6ecbf5c3d12e3dc82dcee40a6e382 +RMD160 (dnscap-141.tar.gz) = 5bdb8851fda74904347106fcc0a9c9dfa719f63c +Size (dnscap-141.tar.gz) = 92801 bytes SHA1 (patch-Makefile.in) = ddfc02984cf2f092b9356421300a48ee5c59e43b
version 2.75 Fix reversion on 2.74 which caused 100% CPU use when a dhcp-script is configured. Thanks to Adrian Davey for reporting the bug and testing the fix. version 2.74 Fix reversion in 2.73 where --conf-file would attempt to read the default file, rather than no file. Fix inotify code to handle dangling symlinks better and not SEGV in some circumstances. DNSSEC fix. In the case of a signed CNAME generated by a wildcard which pointed to an unsigned domain, the wrong status would be logged, and some necessary checks omitted.
Index: Makefile =================================================================== RCS file: /cvsroot/pkgsrc/net/dnsmasq/Makefile,v retrieving revision 1.30 diff -u -r1.30 Makefile --- Makefile 14 Jul 2015 09:57:13 -0000 1.30 +++ Makefile 14 Aug 2015 11:24:28 -0000 @@ -1,6 +1,6 @@ # $NetBSD: Makefile,v 1.30 2015/07/14 09:57:13 fhajny Exp $ -DISTNAME= dnsmasq-2.73 +DISTNAME= dnsmasq-2.75 CATEGORIES= net MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/ Index: distinfo =================================================================== RCS file: /cvsroot/pkgsrc/net/dnsmasq/distinfo,v retrieving revision 1.28 diff -u -r1.28 distinfo --- distinfo 14 Jul 2015 09:57:13 -0000 1.28 +++ distinfo 14 Aug 2015 11:24:28 -0000 @@ -1,7 +1,7 @@ $NetBSD: distinfo,v 1.28 2015/07/14 09:57:13 fhajny Exp $ -SHA1 (dnsmasq-2.73.tar.gz) = 2bea70fed6b43d69d58ee0f473e3b0c2f4cd2feb -RMD160 (dnsmasq-2.73.tar.gz) = c7d49a608ba73bd6f075878f8bf24e1677b6aebb -Size (dnsmasq-2.73.tar.gz) = 681245 bytes +SHA1 (dnsmasq-2.75.tar.gz) = 17ce713b770a54c2cc9195f6142f9c7d642f6ea4 +RMD160 (dnsmasq-2.75.tar.gz) = 266e7005253f15ce1fe750c9e1ca99f7b8623c29 +Size (dnsmasq-2.75.tar.gz) = 684014 bytes SHA1 (patch-dnsmasq.conf.example) = 2974c722a26400915037259c79899e8a3e95bf8f SHA1 (patch-src_bpf.c) = 51e1341d940304a5246ee87d5e3b07faf7d70cf1
2014/09/12 Duane Wessels Added 'new-gtlds' filter, which includes only queries for names ending with one of the new (2013/2014) generic TLDs. This may be useful to find hosts/servers using internal names which may collide with new gTLDs once they become active. If you use short (not fully qualified) names internally you may be uknownlying relying on root (or other) name servers to return NXDOMAIN for them. If so, "you're gonna have a bad time." Along with this new feature, TLD lists are now hashed in the code for faster lookups. 2012/11/30 Duane Wessels Added more entries to the table of known query type names (HINFO, AFSDB, PX, SSHFP, NSEC3, NSEC3PARAM, TLSA, DLV). 2012/10/15 Duane Wessels The 'refused' filter only works on responses, which are not processed by default. Now, if the 'refused' filter is specified, dnstop will automatically process responses and ignore queries. 2012/06/11 Duane Wessels Added "qtype-any" filter for displaying ANY queries which are now fashionable in DNS based attacks. 2011/05/02 Duane Wessels Anand Buddhev pointed out that LDFLAGS= is missing from Makefile.in. Also updated known_tlds.h. 2011/01/27 Duane Wessels Fixed some portability bugs (OpenBSD, gmake 3.82) and other minor bugs. Added a feature (-n option) to restrict counting to a given query name. 2011/01/05 Duane Wessels Found a fixed a few problems after spending some quality time looking at the code. 1) Hash table performance was terrible and has been improved. The hash table size is now configurable via command line option. 2) Some things were double-counted when both -Q and -R were given. 3) Added cumulative percentage totals to the tables 4) Added -X option to disable the source+queryname tables, which could consume a lot of memory. 5) Imported "inX_addr" mini-library for storing IPv4/IPv6 addresses. 2010/12/27 Duane Wessels Fixed a bug where if stdout was a TTY but stdin was not a TTY, then dnstop would enter a loop on keyboard input and consume 100% CPU. Now it checks that stdin is a TTY as well.
Index: Makefile =================================================================== RCS file: /cvsroot/pkgsrc/net/dnstop/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- Makefile 6 Feb 2013 19:30:56 -0000 1.22 +++ Makefile 14 Aug 2015 11:50:54 -0000 @@ -1,8 +1,7 @@ # $NetBSD: Makefile,v 1.22 2013/02/06 19:30:56 jperkin Exp $ # -DISTNAME= dnstop-20090128 -PKGREVISION= 1 +DISTNAME= dnstop-20140915 CATEGORIES= net MASTER_SITES= http://dns.measurement-factory.com/tools/dnstop/src/ Index: distinfo =================================================================== RCS file: /cvsroot/pkgsrc/net/dnstop/distinfo,v retrieving revision 1.13 diff -u -r1.13 distinfo --- distinfo 25 Jul 2009 10:26:17 -0000 1.13 +++ distinfo 14 Aug 2015 11:50:54 -0000 @@ -1,5 +1,5 @@ $NetBSD: distinfo,v 1.13 2009/07/25 10:26:17 obache Exp $ -SHA1 (dnstop-20090128.tar.gz) = 17eac98a9065e8b25ea13aa65b647c2b090850f1 -RMD160 (dnstop-20090128.tar.gz) = aa995e7163dcc8575e59065bcc4d6d92812aace5 -Size (dnstop-20090128.tar.gz) = 68132 bytes +SHA1 (dnstop-20140915.tar.gz) = af1567d6b53e8be697b884508a2a3a0edbea5e01 +RMD160 (dnstop-20140915.tar.gz) = cf21ac48c0d16c4656f0ffc4f28ff9187cf200bc +Size (dnstop-20140915.tar.gz) = 77917 bytes
Attachment:
pgp1cTQJmOQTQ.pgp
Description: PGP signature