
- package: tis-win10pcap
- name: Win10Pcap
- version: 10.2.5002-9
- categories: System and network,Drivers
- maintainer: WAPT Team, Tranquil IT, Jimmy PELÉ
- editor: Daiyuu Nobori
- locale: all
- target_os: windows
- impacted_process: dumpcap, Wireshark
- architecture: all
- signature_date:
- size: 1.06 Mo
- homepage : http://www.win10pcap.org/
package : tis-win10pcap
version : 10.2.5002-9
architecture : all
section : base
priority : optional
name : Win10Pcap
categories : System and network,Drivers
maintainer : WAPT Team, Tranquil IT, Jimmy PELÉ
description : Win10Pcap is a new WinPcap-based Ethernet packet capture library
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources : http://www.win10pcap.org/download/
installed_size :
impacted_process : dumpcap, Wireshark
description_fr : Win10Pcap est une nouvelle bibliothèque de capture de paquets Ethernet basée sur WinPcap
description_pl : Win10Pcap to nowa biblioteka przechwytywania pakietów Ethernet oparta na WinPcap
description_de : Win10Pcap ist eine neue WinPcap-basierte Bibliothek zur Erfassung von Ethernet-Paketen
description_es : Win10Pcap es una nueva librería de captura de paquetes Ethernet basada en WinPcap
description_pt : Win10Pcap é uma nova biblioteca de captura de pacotes Ethernet baseada no WinPcap
description_it : Win10Pcap è una nuova libreria per la cattura dei pacchetti Ethernet basata su WinPcap
description_nl : Win10Pcap is een nieuwe op WinPcap gebaseerde bibliotheek voor het vastleggen van ethernetpakketten
description_ru : Win10Pcap - новая библиотека захвата пакетов Ethernet на базе WinPcap
audit_schedule :
editor : Daiyuu Nobori
keywords : win10pcap,new,winpcap,based,ethernet,packet,capture,library.
licence :
homepage : http://www.win10pcap.org/
package_uuid : 47a7f4a0-03e4-46c9-bb82-0b94347bb0d9
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 6.1
max_os_version :
icon_sha256sum : 0557e621dfd243c21f22189a82de98022d898b970a12540091f375addb37a3c3
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : n5aC1x/CeequpXCJIBunJAZ8aMkpvs352b6PaTdzVVyo4w6LuZVWLg4FSddf75dtUrxpxUwCrMDvL0KMTxFJFIhurJOlKcknd8lP4wIEOpIBAHQUt1nXbtC1nRyYi+73z+uCuA5OZQKh0bAXZpufXHMYSS8m3SNF4iBAicnkBFE5V794Rw8Ti0JNVnaSfuUAAv5V3FEPbtrRRx+h/4fqG6N1T7bCfp7CUH6piyNC5CBV2suAfkwxOGAXdPhAV1kk/P802AFBqfLKHAwhsScAkOeQUIdMlcCc6iXKCt30K49Pwg8sV0d7cJh2+63CmQ4hRnGLTAlHKdUj8KWC5jqXCw==
signature_date : 2023-08-29T13:02:19.881906
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
bin_name = glob.glob("Win10Pcap-v*.msi")[0]
# Adding "SoftEther Corporation" as trusted driver signer
with disable_file_system_redirection():
run('"%s" -addstore TrustedPublisher "%s"' % (makepath(system32, "certutil.exe"), makepath(basedir, "softether-drivers.cer")))
# Installing the package
install_msi_if_needed(
bin_name,
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
url = "http://www.win10pcap.org/download/"
# Getting latest version from official sources
print("URL used is: %s" % url)
for bs_search in bs_find_all(url, "a"):
if bs_search["href"].endswith(".msi"):
latest_bin = bs_search["href"]
version = latest_bin.split("-")[1].replace("v", "")
download_url = url + latest_bin
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
version_from_file = get_version_from_binary(latest_bin)
if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
version = version_from_file
print("ERROR: Binary file version do NOT corresponds to online version")
else:
print("INFO: Binary file version corresponds to online 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
01e536985ac7c3d17b00183b854b56181cb96051e10e352129878c1306ba9afd : setup.py
46ee0fcff8231ebecc5351162d682abf9bf2c22aa4ae7f67742a8f961dcc49ba : update_package.py
636508685341b4c0e374d23be4567becffae608717758328ca999e0d30a5862e : softether-drivers.cer
0557e621dfd243c21f22189a82de98022d898b970a12540091f375addb37a3c3 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
c10033107336a12f89b7cda55c6c17b4df167bcf01efa0b67f6a8efac6a2d26b : luti.json
ce1169c7cac4bc9bc45e159cec069f0ab57c42fc3f636456a2e404cc6b91e855 : Win10Pcap-v10.2-5002.msi
2ce1d60779e6dd2db40bb40e02e6e5e59fa40651c0e09ef544030a22e6367129 : WAPT/control