language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
C
wireshark/extcap/androiddump.c
/* androiddump.c * androiddump is extcap tool used to capture Android specific stuff * * Copyright 2015, Michal Labedzki for Tieto Corporation * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #inclu...
C
wireshark/extcap/ciscodump.c
/* ciscodump.c * ciscodump is extcap tool used to capture data using a ssh on a remote cisco router * * Copyright 2015, Dario Lombardo * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "con...
Text
wireshark/extcap/CMakeLists.txt
# CMakeLists.txt # # Wireshark - Network traffic analyzer # By Gerald Combs <gerald@wireshark.org> # Copyright 1998 Gerald Combs # # SPDX-License-Identifier: GPL-2.0-or-later # if(EXTCAP_ANDROIDDUMP_LIBPCAP) set(ANDROIDDUMP_USE_LIBPCAP 1) endif() if(LIBSSH_FOUND) include(CMakePushCheckState) cmake_push_check_state...
C
wireshark/extcap/dpauxmon.c
/* dpauxmon.c * dpauxmon is an extcap tool used to monitor DisplayPort AUX channel traffic * coming in from the kernel via generic netlink * Copyright 2018, Dirk Eibach, Guntermann & Drunck GmbH <dirk.eibach@gdsys.cc> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1...
C/C++
wireshark/extcap/dpauxmon_user.h
/** @file * * Copyright 2018, Dirk Eibach, Guntermann & Drunck GmbH <dirk.eibach@gdsys.cc> * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef DPAUXMON_USER_H_ #define DPAUXMON_USER_H_ #include <linux/types.h> /* * Generic Netlink Interface for DisplayPort AUX channel monitoring */ /* * enum dpauxmon_c...
C
wireshark/extcap/etl.c
/* etl.c * * Copyright 2020, Odysseus Yang * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ /* * Reads an ETL file and writes out a pcap file with LINKTYPE_ETW. * * https://docs.microsoft.com/en-...
C/C++
wireshark/extcap/etl.h
/** @file * * Copyright 2020, Odysseus Yang * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __W_ETL_H__ #define __W_ETL_H__ #include "wiretap/wtap.h" #include "ws_symbol_export.h" #include...
C
wireshark/extcap/etwdump.c
/* etwdump.c * etwdump is an extcap tool used to dump etw to pcapng * * Copyright 2020, Odysseus Yang * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #define WS_LOG_DOMAIN "etw...
C
wireshark/extcap/etw_message.c
/* etw_message.h * * Copyright 2020, Odysseus Yang * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #define WS_LOG_DOMAIN "etwdump" #include "etw_message.h" #include <wsutil/wslo...
C/C++
wireshark/extcap/etw_message.h
/** @file * * Copyright 2020, Odysseus Yang * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __W_ETW_MESSAGE_H__ #define __W_ETW_MESSAGE_H__ #include <glib.h> #include <windows.h> #include...
C
wireshark/extcap/etw_ndiscap.c
/* etw_ndiscap.c * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ /* * Reads IP packets from an Windows event trace logfile or an Windows event trace live session * and write out a pcap file with LIN...
C
wireshark/extcap/extcap-base.c
/* extcap-base.c * Base function for extcaps * * Copyright 2015, Dario Lombardo * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #define WS_LOG_DOMAIN LOG_DOMAIN_EXTCAP #includ...
C/C++
wireshark/extcap/extcap-base.h
/** @file * * Base function for extcaps * * Copyright 2016, Dario Lombardo * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __EXTCAP_BASE_H__ #define __EXTCAP_BASE_H__ #include <glib.h> #i...
C++
wireshark/extcap/falcodump.cpp
/* falcodump.cpp * Falcodump is an extcap tool which dumps logs using Falco source plugins. * https://falco.org/docs/plugins/ * * Adapted from sdjournal. * Copyright 2022, Gerald Combs and Dario Lombardo * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald C...
C
wireshark/extcap/randpktdump.c
/* randpktdump.c * randpktdump is an extcap tool used to generate random data for testing/educational purpose * * Copyright 2015, Dario Lombardo * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #in...
C
wireshark/extcap/sdjournal.c
/* sdjournal.c * sdjournal is an extcap tool used to dump systemd journal entries. * * Adapted from sshdump. * Copyright 2018, Gerald Combs and Dario Lombardo * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or...
C
wireshark/extcap/ssh-base.c
/* ssh-base.c * ssh-base has base utility functions to connect to hosts via ssh * * Copyright 2016, Dario Lombardo * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #define WS_LO...
C/C++
wireshark/extcap/ssh-base.h
/** @file * * ssh-base has base utility functions to connect to hosts via ssh * * Copyright 2016, Dario Lombardo * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __SSHBASE_H__ #define __SS...
C
wireshark/extcap/sshdump.c
/* sshdump.c * sshdump is extcap tool used to capture data using a remote ssh host * * Copyright 2015, Dario Lombardo * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "config.h" #define WS...
C
wireshark/extcap/udpdump.c
/* udpdump.c * udpdump is an extcap tool used to get packets exported from a source (like a network device or a GSMTAP producer) that * are dumped to a pcap file * * Copyright 2016, Dario Lombardo <lomato@gmail.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 19...
C
wireshark/extcap/wifidump.c
/* wifidump.c * wifidump is an extcap tool used to capture Wi-Fi frames using a remote ssh host * * Adapted from sshdump. * * Copyright 2022, Adrian Granados <adrian@intuitibits.com> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-Licen...
wireshark/fix/hfDecl.xsl
<!-- --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="text" encoding="UTF-8"/> <xsl:template match="text()"/> <xsl:template match="/"> static fix_field fix_fields[] = { <xsl:apply-templates/> }; </xsl:template> <xsl:template match="fields"> <xsl:for-eac...
wireshark/fix/hfField.xsl
<!-- --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="text" encoding="UTF-8"/> <xsl:template match="text()"/> <xsl:template match="/"> static hf_register_info hf_FIX[] = { <xsl:apply-templates/> }; /* * Editor modelines * * Local Variables: * c-basic-of...
wireshark/fix/hfList.xsl
<!-- --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="text" encoding="UTF-8"/> <xsl:template match="text()"/> <xsl:template match="/"> <xsl:apply-templates/> </xsl:template> <!-- <xsl:value-of select="@number" />, <xsl:value-of select="@name" />, -...
wireshark/fix/README
FIX4x.xml from quickfixengine.org FIX5x.xml from http://sourceforge.net/projects/quickfix/files/ FIX.xml is a modified FIX50SP2.xml with fields from previous versions. cf new field attributes 'since' and 'until'. hfField.xsl: generate hf_register_info list. hfDecl.xsl : generate fix_field list. Values.xsl : generate...
wireshark/fix/Values.xsl
<!-- Syntax: xsltproc Values.xsl FIX44.xml --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="text" encoding="UTF-8"/> <xsl:template match="text()"/> <xsl:template match="/">/* DO NOT EDIT * This file is autogenerated * Look fix/README for more information ho...
Text
wireshark/fuzz/CMakeLists.txt
# CMakeLists.txt # # Wireshark - Network traffic analyzer # By Gerald Combs <gerald@wireshark.org> # Copyright 1998 Gerald Combs # # SPDX-License-Identifier: GPL-2.0-or-later # # List of dissectors compiled below, which should be turned off. # This is done to avoid single fuzzer (like IP) to call UDP protocols, which ...
C/C++
wireshark/fuzz/FuzzerInterface.h
/** @file */ /* based on http://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/fuzzer/FuzzerInterface.h r321218 (20 Dec 2017) */ /* http://llvm.org/svn/llvm-project/compiler-rt/trunk/LICENSE.TXT follows */ /* ============================================================================== compiler_rt License =========...
C
wireshark/fuzz/fuzzshark.c
/* fuzzshark.c * * Fuzzer variant of Wireshark for oss-fuzz * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include <config.h> #define WS_LOG_DOMAIN LOG_DOMAIN_MAIN #include <stdlib.h> #include ...
C
wireshark/fuzz/StandaloneFuzzTargetMain.c
/* based on http://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/fuzzer/standalone/StandaloneFuzzTargetMain.c r311407 (22 Aug 2017) */ /* http://llvm.org/svn/llvm-project/compiler-rt/trunk/LICENSE.TXT follows */ /* ============================================================================== compiler_rt License ==...
C/C++
wireshark/include/wireshark.h
/* wireshark.h * Global public header with minimally available wireshark API * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WIRESHARK_H__ #define __WIRESHARK_H__ /* * This header can be...
C/C++
wireshark/include/ws_attributes.h
/* ws_attributes.h * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WS_ATTRIBUTES_H__ #define __WS_ATTRIBUTES_H__ #include "ws_compiler_tests.h" #ifdef __cplusplus extern "C" { #endif /* _...
C/C++
wireshark/include/ws_codepoints.h
/* ws_codepoints.h * Unicode code point definitions * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 2006 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WS_CODEPOINTS_H__ #define __WS_CODEPOINTS_H__ /** * @file * Unicode code points. * ...
C/C++
wireshark/include/ws_compiler_tests.h
/* ws_compiler_tests.h * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WS_COMPILER_TESTS_H__ #define __WS_COMPILER_TESTS_H__ /* * This was introduced by Clang: * * http://clang.llvm...
C/C++
wireshark/include/ws_diag_control.h
/* ws_diag_control.h * Turn compiler diagnostic messages on and off. * * From FreeRADIUS build.h. * * @copyright 2013 The FreeRADIUS server project * * That project is covered by the GPLv2, so: * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WS_DIAG_CONTROL_H__ #define __WS_DIAG_CONTROL_H__ #incl...
C/C++
wireshark/include/ws_exit_codes.h
/** @file * * Definition of exit codes for programs. * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WS_EXIT_CODES_H__ #define __WS_EXIT_CODES_H__ /* Exit codes */ #define WS_EXIT_INVALI...
C/C++
wireshark/include/ws_log_defs.h
/* ws_log_defs.h * log domain definitions * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __WS_LOG_DOMAINS_H__ #define __WS_LOG_DOMAINS_H__ /* * Which log domain to use is a matter of poli...
C/C++
wireshark/include/ws_posix_compat.h
/* ws_posix_compat.h * Definitions for POSIX compatibility. * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __POSIX_COMPAT_H__ #define __POSIX_COMPAT_H__ #include <stdint.h> #include <limit...
C/C++
wireshark/include/ws_symbol_export.h
/** @file * Cross platform defines for exporting symbols from shared libraries * * Wireshark - Network traffic analyzer * By Balint Reczey <balint@balintreczey.hu> * Copyright 2013 Balint Reczey * * SPDX-License-Identifier: GPL-2.0-or-later */ #include "ws_compiler_tests.h" /** Reset symbol export behavior. ...
Patch
wireshark/macosx-support-lib-patches/glib-pkgconfig.patch
--- gobject-2.0.pc.in.orig 2011-12-30 22:08:27.000000000 +0100 +++ gobject-2.0.pc.in 2011-12-30 22:09:06.000000000 +0100 @@ -7,6 +7,6 @@ Description: GLib Type, Object, Parameter and Signal Library Requires: glib-2.0 Version: @VERSION@ -Libs: -L${libdir} -lgobject-2.0 +Libs: -L${libdir} -lgobject-2.0 -lffi Libs.pri...
Patch
wireshark/macosx-support-lib-patches/gnutls-pkgconfig.patch
--- gnutls.pc.in.orig 2012-05-27 02:08:48.000000000 +0200 +++ gnutls.pc.in 2012-05-27 02:11:39.000000000 +0200 @@ -21,5 +21,4 @@ Version: @VERSION@ Libs: -L${libdir} -lgnutls Libs.private: @LTLIBGCRYPT@ @LTLIBNETTLE@ @NETTLE_LIBS@ @GNUTLS_ZLIB_LIBS_PRIVATE@ -@GNUTLS_REQUIRES_PRIVATE@ Cflags: -I${includedir}
Patch
wireshark/macosx-support-lib-patches/libssh-void-arglists.patch
--- src/init.c.orig 2021-03-15 00:11:33 +++ src/init.c 2023-06-06 03:15:37 @@ -269,7 +269,7 @@ * * @see ssh_init() */ -bool is_ssh_initialized() { +bool is_ssh_initialized(void) { bool is_initialized = false; --- examples/sshnetcat.c.orig 2021-08-26 05:27:42 +++ examples/sshnetcat.c 2023-06-06 03:20:21 @...
wireshark/macosx-support-lib-patches/qt-fix-pc-file
#! /bin/sh # # Fix a Qt .pc file's flags. # # Wireshark - Network traffic analyzer # By Gerald Combs <gerald@wireshark.org> # Copyright 2014 Gerald Combs # # SPDX-License-Identifier: GPL-2.0-or-later # # Fix a single Qt .pc file to provide the right flags; a -F flag is # needed to point to the directory under which the...
wireshark/macosx-support-lib-patches/qt-fix-pc-files
#! /bin/sh # # Fix the .pc files for versions of Qt installed from binary packages. # # Wireshark - Network traffic analyzer # By Gerald Combs <gerald@wireshark.org> # Copyright 2014 Gerald Combs # # SPDX-License-Identifier: GPL-2.0-or-later # # See bug QTBUG-35256 for the full painful story. Shorter version: # the ma...
wireshark/macosx-support-lib-patches/spandsp-configure-patch
*** configure.dist 2014-06-04 07:28:14.000000000 -0700 --- configure 2017-08-07 00:16:39.000000000 -0700 *************** *** 19658,19664 **** case "${ax_cv_c_compiler_vendor}" in gnu) ! COMP_VENDOR_CFLAGS="-std=gnu99 -ffast-math -Wall -Wunused-variable -Wunused-but-set-variable -Wwrite-strings -Wstrict-proto...
Inno Setup Script
wireshark/packaging/appimage/Logray-AppRun.in
#!/bin/sh # Custom AppRun entry point that allows symlinking multiple # executables, e.g. logray, tshark, dumpcap, editcap, etc. # Adapted from # https://github.com/probonopd/ippsample/blob/feature/appimage/appimage/AppRun SELF=$(readlink -f "$0") HERE=${SELF%/*} # https://github.com/AppImage/AppImageKit/issues/126...
Inno Setup Script
wireshark/packaging/appimage/Wireshark-AppRun.in
#!/bin/sh # Custom AppRun entry point that allows symlinking multiple # executables, e.g. wireshark, tshark, dumpcap, editcap, etc. # Adapted from # https://github.com/probonopd/ippsample/blob/feature/appimage/appimage/AppRun SELF=$(readlink -f "$0") HERE=${SELF%/*} # https://github.com/AppImage/AppImageKit/issues/...
wireshark/packaging/debian/changelog
wireshark (4.1.0) unstable; urgency=low * Self-made package -- Wireshark Self-made package <wireshark@example.com> Mon, 17 Oct 2016 12:05:44 +0200
wireshark/packaging/debian/control
Source: wireshark Section: net Priority: optional Maintainer: Balint Reczey <rbalint@ubuntu.com> Standards-Version: 3.9.8 Build-Depends: qtbase5-dev, qtbase5-dev-tools, qttools5-dev, qttools5-dev-tools, qtmultimedia5-dev, libpcap0.8-dev, flex, libz-dev, debhelper (>= 12), po-debconf, python3, python3-ply, libc-ares...
wireshark/packaging/debian/copyright
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Wireshark Source: https://www.wireshark.org/ Files-Excluded: debian Files: * Copyright: Gerald Combs <gerald@wireshark.org> and contributors Comment: Wireshark and the "fin" logo are trademarks of Gerald Combs. License: GPL-2+ F...
wireshark/packaging/debian/dirs
etc/wireshark usr/bin usr/share/icons/hicolor/48x48/apps usr/share/icons/hicolor/scalable/apps usr/share/wireshark
wireshark/packaging/debian/ethereal-common.NEWS
wireshark (0.99.2-1) unstable; urgency=low Same developers, same code, different name. The Ethereal network protocol analyzer has changed its name to Wireshark. Name changes: - ethereal -> wireshark - tethereal -> tshark - idl2eth -> idl2wrs See https://www.wireshark.org/news/20060607.html for mo...
C
wireshark/packaging/debian/headers-check.c
/* headers-check.c * * Test program to ensure all required headers are in the debian package, * by Laszio <ezerotven@gmail.com>. * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #include <epan/stat...
wireshark/packaging/debian/libwireshark-data.install
usr/share/wireshark/* usr/share/doc/wireshark/* etc/wireshark/init.lua packaging/debian/maxmind_db_paths /usr/share/wireshark
wireshark/packaging/debian/libwireshark-dev.install
usr/lib/*/libwireshark.so usr/lib/*/pkgconfig/wireshark.pc usr/lib/*/cmake/wireshark/*.cmake usr/include/wireshark/epan/*
wireshark/packaging/debian/libwireshark0.install
usr/lib/*/libwireshark.so.* usr/lib/*/wireshark/plugins/*/codecs/*.so usr/lib/*/wireshark/plugins/*/epan/*.so
wireshark/packaging/debian/libwireshark0.lintian-overrides
# from file-elf.c libwireshark0: spelling-error-in-binary Synopsys Synopsis [usr/lib/x86_64-linux-gnu/libwireshark.so.0.0.0] # Proper names or typos directly from IANA enterprise-numbers (epan/enterprises.c) libwireshark0: spelling-error-in-binary Nam Name [usr/lib/x86_64-linux-gnu/libwireshark.so.0.0.0] libwireshark0...
wireshark/packaging/debian/libwireshark0.symbols
libwireshark.so.0 libwireshark0 #MINVER# AdmissionRejectReason_vals@Base 1.9.1 BandRejectReason_vals@Base 1.9.1 CommandCode_vals_ext@Base 1.9.1 DisengageReason_vals@Base 1.9.1 DisengageRejectReason_vals@Base 1.9.1 Dot11DecryptDestroyContext@Base 2.5.0 Dot11DecryptInitContext@Base 2.5.0 FacilityReason_vals@Base ...
wireshark/packaging/debian/libwiretap0.symbols
libwiretap.so.0 libwiretap0 #MINVER# file_eof@Base 1.9.1 file_error@Base 1.9.1 file_getc@Base 1.9.1 file_gets@Base 1.9.1 file_getsp@Base 2.9.0 file_iscompressed@Base 1.12.0~rc1 file_peekc@Base 1.12.0~rc1 file_read@Base 1.9.1 file_seek@Base 1.9.1 file_tell@Base 1.9.1 get_backwards_compatibility_lua_table@Base...
wireshark/packaging/debian/libwsutil0.symbols
libwsutil.so.0 libwsutil0 #MINVER# Dot11DecryptWepDecrypt@Base 2.5.0 EBCDIC_to_ASCII1@Base 4.1.0 EBCDIC_to_ASCII@Base 4.1.0 Eax_Decrypt@Base 1.12.0~rc1 add_to_filter_list@Base 4.1.0 adler32_bytes@Base 1.12.0~rc1 adler32_str@Base 1.12.0~rc1 alaw2linear@Base 1.12.0~rc1 allowed_profile_filenames@Base 3.1.1 ascii...
wireshark/packaging/debian/README.Debian
I. Capturing packets with Wireshark/Tshark There are two ways of installing Wireshark/Tshark on Debian; the installation process may offer a choice between these two ways, asking "Should non-superuser be able to capture packets?" I./a. Installing dumpcap without allowing non-root users to capture packets ...
wireshark/packaging/debian/README.Debian.security
Handling security fixes in source package wireshark Wireshark is a network protocol analyzer and it's ability to perform deep packet inspection in live traffic may encourage users to use Wireshark/Tshark as a part of an intrusion detection or traffic monitoring system. In that case, please note that Wireshark/Tshark m...
wireshark/packaging/debian/rules
#!/usr/bin/make -f # Originally made with the aid of dh_make, by Craig Small # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. # Some lines taken from debmake, by Cristoph Lameter. # Rewritten to use dh, by Balint Reczey # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 distrele...
wireshark/packaging/debian/templates
# These templates have been reviewed by the debian-l10n-english # team # # If modifications/additions/rewording are needed, please ask # debian-l10n-english@lists.debian.org for advice. # # Even minor modifications require translation updates and such # changes should be coordinated with translators and reviewers. Tem...
wireshark/packaging/debian/tshark.lintian-overrides
# those long lines are examples which we can't break tshark: groff-message * can't break line [usr/share/man/man1/tshark.1.gz:*]
wireshark/packaging/debian/wireshark-common.config
#! /bin/sh set -e . /usr/share/debconf/confmodule db_input high wireshark-common/install-setuid || true db_go exit 0
wireshark/packaging/debian/wireshark-common.install
usr/bin/capinfos usr/bin/captype usr/bin/dumpcap usr/bin/editcap usr/bin/mergecap usr/bin/mmdbresolve usr/bin/randpkt usr/bin/rawshark usr/bin/reordercap usr/bin/text2pcap usr/lib/*/wireshark/extcap usr/share/icons/ usr/share/mime/packages/
wireshark/packaging/debian/wireshark-common.lintian-overrides
# those long lines are examples which we can't break wireshark-common: manpage-has-errors-from-man usr/share/man/man1/dumpcap.1.gz 156: warning [p 1, 2.0i]: can't break line
wireshark/packaging/debian/wireshark-common.manpages
obj-*/doc/capinfos.1 obj-*/doc/captype.1 obj-*/doc/dumpcap.1 obj-*/doc/editcap.1 obj-*/doc/mergecap.1 obj-*/doc/mmdbresolve.1 obj-*/doc/randpkt.1 obj-*/doc/rawshark.1 obj-*/doc/reordercap.1 obj-*/doc/text2pcap.1 obj-*/doc/androiddump.1 obj-*/doc/ciscodump.1 obj-*/doc/randpktdump.1 obj-*/doc/udpdump.1 obj-*/doc/sshdump....
wireshark/packaging/debian/wireshark-common.postinst
#!/bin/sh set -e . /usr/share/debconf/confmodule PROGRAM=$(dpkg-divert --truename /usr/bin/dumpcap) GROUP=wireshark if ! dpkg-statoverride --list $PROGRAM > /dev/null; then db_get wireshark-common/install-setuid if [ -e "$PROGRAM" ]; then if [ "$RET" = "false" ] ; then chown root:root $PR...
wireshark/packaging/debian/wireshark-common.postrm
#!/bin/sh set -e GROUP=wireshark . /usr/share/debconf/confmodule if [ "$1" = "purge" ] ; then if getent group $GROUP >/dev/null; then if [ -x "$(command -v delgroup)" ]; then if ! delgroup --quiet --system $GROUP; then db_input high wireshark-common/group-removal-failed || tr...
wireshark/packaging/debian/wireshark-dev.install
tools/idl2wrs usr/bin tools/idl2deb usr/bin tools/asn2deb usr/bin tools/make-plugin-reg.py usr/share/pyshared tools/wireshark_be.py usr/share/pyshared tools/wireshark_gen.py usr/share/pyshared tools/asn2wrs.py usr/share/pyshared
wireshark/packaging/debian/wireshark-dev.prerm
#! /bin/bash # # Debian prerm script for Python x.y hierarchical modules # Written by Gregor Hoffleit <flight@debian.org> # Extended by Matthias Klose <doko@debian.org> # set -e PACKAGE=`basename $0 | sed -e 's/\.[^.]*$//'` dpkg --listfiles $PACKAGE | awk '$0~/\.py$/ {print $0"c\n" $0"o"}' | xargs rm -f >&2 #DEBH...
wireshark/packaging/debian/wireshark-qt.lintian-overrides
# those long lines are examples which we can't break wireshark-qt: manpage-has-errors-from-man usr/share/man/man1/wireshark.1.gz *
Patch
wireshark/packaging/debian/patches/09_idl2wrs.patch
Description: Do not try to locate wireshark_be.py and wireshark_gen.py in non-standard places. Author: Frederic Peters <fpeters@debian.org> --- a/tools/idl2wrs +++ b/tools/idl2wrs @@ -65,41 +65,8 @@ exit 1; fi -# -# Run wireshark backend, looking for wireshark_be.py and wireshark_gen.py -# in pythons's "site-...
Portable Object
wireshark/packaging/debian/po/cs.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Martin Sin <martin.sin@zshk.cz>, 2009 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.debian.org\n"...
Portable Object
wireshark/packaging/debian/po/da.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Joe Hansen <joedalton2@yahoo.dk>, 2010 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.debian.org\n...
Portable Object
wireshark/packaging/debian/po/de.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Dominik Eismann <dominik.eismann@posteo.de>, 2016 # Dominik Eismann <dominik.eismann@posteo.de>, 2016 # uhei, 2017 # uhei, 2015,2017 # Uli Heilmei...
Portable Object
wireshark/packaging/debian/po/es.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Francisco Javier Cuadrado <fcocuadrado@gmail.com>, 2009-2010 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wir...
Portable Object
wireshark/packaging/debian/po/eu.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>, 2010 # Piarres Beobide <pi@beobide.net>, 2009 msgid "" msgstr "" "Project-Id-Version: Wireshark\...
Portable Object
wireshark/packaging/debian/po/fi.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # edu28b5088de91f4c05 <edu@iki.fi>, 2009 # edu28b5088de91f4c05 <edu@iki.fi>, 2009 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid...
Portable Object
wireshark/packaging/debian/po/fr.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Simon Paillard <spaillard@debian.org>, 2009 # Yann Domingo, 2019 # Yann Domingo, 2019 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report...
Portable Object
wireshark/packaging/debian/po/hu.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Balint Reczey <balint@balintreczey.hu>, 2011 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.debian...
Portable Object
wireshark/packaging/debian/po/id.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.debian.org\n" "POT-Creation-Date: 2017-08-06 18:31-04...
Portable Object
wireshark/packaging/debian/po/it.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Vincenzo Reale <vinx.reale@gmail.com>, 2015,2017 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.de...
Portable Object
wireshark/packaging/debian/po/ja.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.debian.org\n" "POT-Creation-Date: 2017-08-06 18:31-04...
Portable Object
wireshark/packaging/debian/po/ko.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # ks k, 2019 # ks k, 2019 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.debian.org\n" "POT-Creation...
Portable Object
wireshark/packaging/debian/po/nl.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Jeroen Schot <schot@a-eskwadraat.nl>, 2011 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.debian.o...
Portable Object
wireshark/packaging/debian/po/pt.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.debian.org\n" "POT-Creation-Date: 2017-08-06 18:31-04...
Portable Object
wireshark/packaging/debian/po/pt_BR.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Adriano Rafael Gomes <adrianorg@gmail.com>, 2010 # Rafael Henrique da Silva Correia <rafaelhenriqu@gmail.com>, 2009 msgid "" msgstr "" "Project-Id...
Portable Object
wireshark/packaging/debian/po/ru.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Vladlen Shapo <vladlen.shapo@gmail.com>, 2017 # Yuri Kozlov <yuray@komyakino.ru>, 2009-2010 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "...
Portable Object
wireshark/packaging/debian/po/sk.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Automatically generated, 2011 # Slavko <linux@slavino.sk>, 2011 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wiresh...
Portable Object
wireshark/packaging/debian/po/sv.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: # Göran Uddeborg <goeran@uddeborg.se>, 2017 # Martin Ågren <martin.agren@gmail.com>, 2009-2010 msgid "" msgstr "" "Project-Id-Version: Wireshark\n" ...
Portable Object
wireshark/packaging/debian/po/vi.po
# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the wireshark package. # # Translators: msgid "" msgstr "" "Project-Id-Version: Wireshark\n" "Report-Msgid-Bugs-To: wireshark@packages.debian.org\n" "POT-Creation-Date: 2017-08-06 18:31-04...
wireshark/packaging/debian/source/lintian-overrides
# the package uses quilt, see: /usr/share/doc/quilt/README.source wireshark source: patch-system-but-no-source-readme
Lua
wireshark/packaging/debian/tests/frame-count.lua
do packets = 0; local function init_listener() local tap = Listener.new("frame") function tap.reset() packets = 0; end function tap.packet(pinfo,tvb, ip) packets = packets + 1 end function tap.draw() print("Packet count:", packet...
wireshark/packaging/debian/tests/gui
#!/bin/sh # autopkgtest check: Run wireshark GUI to see basic functionality working # Author: Balint Reczey <balint@balintreczey.hu> set -e xvfb-run --auto-servernum -s '-screen 0 1920x1080x24 +extension GLX' wireshark -Xlua_script:debian/tests/frame-count.lua test/captures/dhcp.pcap 2>&1 echo "run: OK"
wireshark/packaging/debian/tests/tshark
#!/bin/sh # autopkgtest check: Run tshark to see basic functionality working # Author: Balint Reczey <balint@balintreczey.hu> set -e tshark --version echo "run: OK"
AsciiDoc
wireshark/packaging/macosx/Donate_to_the_Wireshark_Foundation.adoc
// Required attributes: // include-dir include::{include-dir}/attributes.adoc[] :stylesheet: {include-dir}/ws.css == The Wireshark Founation The https://wiresharkfoundation.org/[Wireshark Foundation] is a non-profit organization helping as many people as possible understand their networks as much as possible. As tim...
wireshark/packaging/macosx/entitlements.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>com.apple.security.cs.disable-library-validation</key> <true/> </dict> </plist>