Wireshark
Paquet d’installation silencieuse pour Wireshark
								
								4.2.1-5
								
							
							
                                   
                                       
                                           System and network
                                       
                                   
                                
								
							
                               
                                   
                                       System and network
                                   
                               
							
							
						- package: tis-wireshark
 - name: Wireshark
 - version: 4.2.1-5
 - 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: x64
 - signature_date:
 - size: 86.10 Mo
 - homepage : https://www.wireshark.org
 - depends:
 - conflicts :
 
package           : tis-wireshark
version           : 4.2.1-5
architecture      : x64
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.html
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      : 54226895-5264-4a17-ab55-be3ebc1ac65a
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         : Ete92X8Rfrir5dWkzFpsrcUoc4ZgD0HDR5gtUPumEr7FrghMyvj1om+Sbw9flm69zjOcWJwlS7W5k1E2jKDXXsxp6laNdFPXudDp9Rg113OYQOWPEiyhTXedtWlAt5ii10tOqD9kU5pbqiMvkOp4Rwn6B4Kv8KRx5K05ek1tjw/qWDM/IeRuQ8rQO0xfGD33qb8x7s8JyexIviezGsVeP3bXVsbTAabKqNS1nZVlDjT9/K0c0LFIr11GycMTb9Xkm37Rx4KnAygChQnQ+MdG5GY1xj06dS7yr82SoewxvY5+iX+S2cNtweeNlkB3RpNYznQFHpUVMnXVPcQ1vDqWMQ==
signature_date    : 2024-01-08T22:00:10.791142
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():
    bin_name = glob.glob("Wireshark-*.exe")[0]
    install_exe_if_needed(
        bin_name,
        silentflags="/S /NCRC /quicklaunchicon=no /desktopicon=no",
        key="Wireshark",
        min_version=control.get_software_version(),
    )
                            # -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    url = "https://www.wireshark.org/download.html"
    download_dict = {
        "windows-x64": "Windows x64 Installer",
        "windows-arm64": "Windows Arm64 Installer",
        "macos-x64": "macOS Arm Disk Image",
        "macos-x64": "macOS Intel Disk Image",
    }
    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all(url, "a", "href", proxies=proxies):
        if download_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] in bs_search.text:
            download_url = bs_search["href"]
            latest_bin = bs_search["href"].split("/")[-1]
            version = latest_bin.split("-")[1]
            break
    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)
    # Deleting outdated binaries
    remove_outdated_binaries(latest_bin)
    # Checking version from file
    if get_os_name() == "Windows" and "windows" in control.target_os.lower():
        version_from_file = get_version_from_binary(latest_bin)
        if Version(version_from_file, 4) == Version(version, 4):
            print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
        else:
            error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({version})")
    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()
    # Validating or not update-package-sources
    return package_updated
                            7a91b81ee847020889539969507741b5eaf4d3199d228ce904713b568e032891 : setup.py
c9e89dd241b7e0bdc86eb23be60ff6039a3cc69e8abd1a029112dcc642c98e86 : Wireshark-4.2.1-x64.exe
f488a540f9768781048ce15e6b2fa54dd062756f760723e92acb21997e068d73 : update_package.py
790a1e2a46c5470e8fd03c16f9701e4aafb62b070e200258e5d924f7efa5eaea : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
a8831a00c27fc09d6b198b882fcacd7f63a7d5fac5fa991ff742e5049f29ea6e : luti.json
6bfa67eec82af99e2ec97ae7ca34865abb182c217ccca96f6ed9b72c0b9b2c10 : WAPT/control