- Bug Fixes The following vulnerabilities have been fixed. o wnpa-sec-2013-32 The CAPWAP dissector could crash. Discovered by Laurent Butti. (Bug 8725) Versions affected: 1.8.0 to 1.8.7, 1.6.0 to 1.6.15. o wnpa-sec-2013-33 The GMR-1 BCCH dissector could crash. Discovered by Sylvain Munaut and Laurent Butti. (Bug 7664, Bug 8726 ) Versions affected: 1.8.0 to 1.8.7. o wnpa-sec-2013-34 The PPP dissector could crash. Discovered by Laurent Butti. (Bug 7880, Bug 8727 ) Versions affected: 1.8.0 to 1.8.7. o wnpa-sec-2013-35 The NBAP dissector could crash. (Bug 8697) Versions affected: 1.8.0 to 1.8.7. o wnpa-sec-2013-36 The RDP dissector could crash. Discovered by Laurent Butti (Bug 8729) Versions affected: 1.8.0 to 1.8.7. o wnpa-sec-2013-37 The GSM CBCH dissector could crash. Discovered by Laurent Butti (Bug 8730) Versions affected: 1.8.0 to 1.8.7. o wnpa-sec-2013-38 The Assa Abloy R3 dissector could consume excessive memory and CPU. (Bug 8764) Versions affected: 1.8.0 to 1.8.7. o wnpa-sec-2013-39 The HTTP dissector could overrun the stack. (Bug 8733) Versions affected: 1.8.0 to 1.8.7, 1.6.0 to 1.6.15. o wnpa-sec-2013-40 The Ixia IxVeriWave file parser could overflow the heap. Discovered by Sachin Shinde. (Bug 8760) Versions affected: 1.8.0 to 1.8.7. o wnpa-sec-2013-41 The DCP ETSI dissector could crash. (Bug 8717) Versions affected: 1.10.0, 1.8.0 to 1.8.7, 1.6.0 to 1.6.15. The following bugs have been fixed: o TRY_TO_FAKE_THIS_ITEM disables bounds errors. (Bug 3290) o Multiple expert info in a packet does not cause the most "severe" to be displayed in expert column. (Bug 7733) o tshark -z io,stat reports bad byte counts if filter doesn't match anything. (Bug 8066) o Add decryption for WPA eapol 4-way handshake. (Bug 8680) o wireshark is crashing while attempting to use 'SCTP' -> 'Prepare Filter for this Association'. (Bug 8731) o Crash analyzing VoIP Calls (T38). (Bug 8736) o IMAP Dissector, Missing byte. (Bug 8739) o C12.22 Invocation Id shows negative sometimes. (Bug 8744) o gsm_a_dtap dissector (SMS): under certain conditions fillbits may be displayed for an alphanumeric TP-Originating-Address. (Bug 8756) o TETRA dissector assertion. (Bug 8768) o Mark retransmitted SYN and FIN packets as retransmissions. - Updated Protocol Support Bittorrent DHT, C12.22, CAPWAP, DCP ETSI, EAPOL, GMR-1 BCCH, GSM CBCH, GSM SMS, HTTP, IMAP, NBAP, PPP, R3, RDP, SGsAP, T.38, TETRA - New and Updated Capture File Support Ixia IxVeriWave.
55 lines
1.6 KiB
Makefile
55 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.103 2013/06/11 22:57:58 tron Exp $
|
|
|
|
DISTNAME= wireshark-1.8.8
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.wireshark.org/download/src/ \
|
|
${MASTER_SITE_SOURCEFORGE:=wireshark/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
OWNER= tron@NetBSD.org
|
|
HOMEPAGE= http://www.wireshark.org/
|
|
COMMENT= Network protocol analyzer
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
CONFLICTS+= ethereal-[0-9]*
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= gmake perl pkg-config yacc lex
|
|
|
|
USE_LIBTOOL= YES
|
|
SHLIBTOOL_OVERRIDE= # empty
|
|
CHECK_PORTABILITY_SKIP+= packaging/macosx/*/*
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --enable-static=no
|
|
CONFIGURE_ARGS+= --enable-threads
|
|
CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
|
|
CONFIGURE_ARGS+= --with-pcap=${BUILDLINK_PREFIX.libpcap}
|
|
CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
|
|
CONFIGURE_ARGS+= --with-pcre=${BUILDLINK_PREFIX.pcre}
|
|
CONFIGURE_ENV+= ac_cv_path_YACCDUMMY=${TOOLS_PATH.yacc}
|
|
CONFIGURE_ENV+= ac_cv_path_LEXDUMMY=${TOOLS_PATH.lex}
|
|
|
|
PTHREAD_OPTS+= require
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "options.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-[567].*-*)
|
|
USE_BUILTIN.libpcap= no
|
|
.endif
|
|
|
|
# wireshark no longer builds with NetBSD 3.x provided zlib
|
|
BUILDLINK_API_DEPENDS.zlib=zlib>=1.2.1
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../net/libpcap/buildlink3.mk"
|
|
.include "../../devel/libsmi/buildlink3.mk"
|
|
.include "../../security/libgcrypt/buildlink3.mk"
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|