tis-wireshark icon

Wireshark

Paquet d’installation silencieuse pour Wireshark

3.6.8-3
System and network
System and network

  • package: tis-wireshark
  • name: Wireshark
  • version: 3.6.8-3
  • categories: System and network
  • maintainer: WAPT Team,Jimmy PELÉ,Amelie Le Jeune
  • editor: The Wireshark team
  • licence: GPLv2
  • locale: all
  • target_os: windows
  • impacted_process: wireshark.exe
  • architecture: x86
  • signature_date:
  • size: 60.89 Mo
  • homepage : https://www.wireshark.org
  • depends:
  • conflicts :

package           : tis-wireshark
version           : 3.6.8-3
architecture      : x86
section           : base
priority          : optional
name              : Wireshark
categories        : System and network
maintainer        : WAPT Team,Jimmy PELÉ,Amelie Le Jeune
description       : Wireshark is a free and open-source packet analyzer. It is used for network troubleshooting, analysis, software and communications protocol development, and education.
depends           : tis-win10pcap
conflicts         : tis-npcap
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://www.wireshark.org/#download
installed_size    : 
impacted_process  : wireshark.exe
description_fr    : Wireshark est un analyseur de paquets libre et gratuit. Il est utilisé dans le dépannage et l’analyse de réseaux informatiques, le développement de protocoles, l’éducation et la rétro-ingénierie.
description_pl    : Wireshark to darmowy i open-source'owy analizator pakietów. Jest używany do rozwiązywania problemów z siecią, analizy, rozwoju oprogramowania i protokołów komunikacyjnych oraz edukacji
description_de    : Wireshark ist ein freier und quelloffener Paketanalysator. Es wird für die Fehlersuche in Netzwerken, die Analyse, die Entwicklung von Software und Kommunikationsprotokollen sowie für die Ausbildung verwendet
description_es    : Wireshark es un analizador de paquetes gratuito y de código abierto. Se utiliza para la resolución de problemas de red, el análisis, el desarrollo de software y protocolos de comunicación, y la educación
description_pt    : Wireshark é um analisador de pacotes gratuito e de código aberto. É utilizado para a resolução de problemas de rede, análise, desenvolvimento de software e protocolos de comunicação, e educação
description_it    : Wireshark è un analizzatore di pacchetti gratuito e open-source. È utilizzato per la risoluzione dei problemi di rete, l'analisi, lo sviluppo di software e protocolli di comunicazione e la formazione
description_nl    : Wireshark is een gratis en open-source pakketanalysator. Het wordt gebruikt voor netwerk troubleshooting, analyse, software en communicatie protocol ontwikkeling, en onderwijs
description_ru    : Wireshark - это бесплатный анализатор пакетов с открытым исходным кодом. Он используется для устранения неполадок в сети, анализа, разработки программного обеспечения и протоколов связи, а также для обучения
audit_schedule    : 
editor            : The Wireshark team
keywords          : wireshark,wire,shark,packet,analyzer,network,troubleshooting,analysis,protocol
licence           : GPLv2
homepage          : https://www.wireshark.org
package_uuid      : d08787ef-4aa7-482d-a875-609a4d356e47
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://www.wireshark.org/docs/relnotes/
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : 790a1e2a46c5470e8fd03c16f9701e4aafb62b070e200258e5d924f7efa5eaea
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : l+rMs0QPWtgu0CnmtfxBCdIYZ6V07iKiDNLW6QCi+CvrH1P+6iPZf1B1ScIox/yhYqpiKbCc44POOcQjLSdtKwbVs5Wsa1SEQB0/co+nbcTHu1b+fAe6uBusaLB2SagmLsgpqeu57DFm+h/o1308n7S5e2QOKQeBSu+fCBEaTtMc1mb3xdG7sBGEADxOIOXDoLLhsBs4JVnsQ7ghwojmuhdtChSmgTrhl0huqcnDIJLKfIqQ6+7+Nlq5nHHulmdoNiE27ivNrw3LiKKEaVn7/fPjAHhElWKM7uzdxPAkn74RGT+te9oJ2R8uWQvPlS+7hovahJWjDb6OIl11kgkFJA==
signature_date    : 2022-10-10T06:01:49.936888
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    # Specific app values
    package_version = control.get_software_version()
    # Installing the package
    install_exe_if_needed(
        "Wireshark-win32-%s.exe" % package_version,
        silentflags="/S /NCRC /quicklaunchicon=no /desktopicon=no",
        key="Wireshark",
        min_version=package_version,
    )

# -*- coding: utf-8 -*-
from setuphelpers import *


bin_name_string = "Wireshark-win32-%s.exe"


def update_package():
    print("Download/Update package content from upstream binary sources")

    from waptpackage import PackageEntry
    import requests

    # Update transition from BeautifulSoup 3 to 4
    try:
        import bs4 as BeautifulSoup
    except:
        import BeautifulSoup

    # Getting proxy informations from WAPT settings
    proxy = {}
    if isfile(makepath(application_data(), "waptconsole", "waptconsole.ini")):
        proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
        if proxywapt:
            proxy = {"http": proxywapt, "https": proxywapt}

    # Specific app values
    app_name = control.name
    url = control.sources

    # Getting latest version from official website
    page = requests.get(url, headers={"User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64)"}, proxies=proxy).text
    bs = BeautifulSoup.BeautifulSoup(page)
    # bs = BeautifulSoup.BeautifulSoup(page,features="html.parser") # For bs4 only
    bs_raw_string = bs.find("a", {"class": "accordion-toggle"}).text
    version = (bs_raw_string.split(")")[0]).split("(")[1]

    latest_bin = bin_name_string % version
    url_dl = "https://1.eu.dl.wireshark.org/win32/" + latest_bin

    print("Latest " + app_name + " version is: " + version)
    print("Download url is: " + url_dl)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: " + latest_bin)
        wget(url_dl, latest_bin, proxies=proxy)

        # Change version of the package
        pe = PackageEntry().load_control_from_wapt(".")
        pe.version = "%s-%s" % (version, int(pe.version.split("-", 1)[1]) + 1)
        pe.save_control_to_wapt(".")
        print("Changing version to " + pe.version + " in WAPT\\control")
        print("Update package done. You can now build-upload your package")
    else:
        print("This package is already up-to-date")

    # Deleting outdated binaries
    for bin_in_dir in glob.glob("*.exe") or glob.glob("*.msi"):
        if bin_in_dir != latest_bin:
            print("Outdated binary: " + bin_in_dir + " Deleted")
            remove_file(bin_in_dir)

567b5b01ddb10055ce0a54bb57a06c22504b0f3e053422511bc3f208d640a26a : setup.py
ee833aec9c45eedeb082e1dc1d7ede4dfe713d51490fc112b73237855bb5695e : update_package.py
790a1e2a46c5470e8fd03c16f9701e4aafb62b070e200258e5d924f7efa5eaea : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
332aff4889f73ee1daf656e3411554685796a51f8059e2cd531bb60fb754799c : Wireshark-win32-3.6.8.exe
91aabff5f4f6eec097b526482166ed096fcab75ab913770ccab1681759a14393 : luti.json
af30e7f27e7530932552f03ec2655a30b2af09a3f39e83fb81ae8be5ff4f9e40 : WAPT/control