tis-yubico-authenticator icon

Yubico Authenticator

Paquet d’installation silencieuse pour Yubico Authenticator

7.3.1-1
Security
Security

  • package: tis-yubico-authenticator
  • name: Yubico Authenticator
  • version: 7.3.1-1
  • categories: Security
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: proprietary_restricted,wapt_private
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 53.30 Mo

package           : tis-yubico-authenticator
version           : 7.3.1-1
architecture      : x64
section           : base
priority          : optional
name              : Yubico Authenticator
categories        : Security
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : Yubico Authenticator for desktop computers
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.5
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Yubico Authenticator pour ordinateur de bureau
description_pl    : Yubico Authenticator dla komputerów stacjonarnych
description_de    : Yubico Authenticator für Desktop-Computer
description_es    : Yubico Authenticator para ordenadores de sobremesa
description_pt    : Yubico Authenticator para computadores de secretária
description_it    : Yubico Authenticator per computer desktop
description_nl    : Yubico Authenticator voor desktopcomputers
description_ru    : Аутентификатор Yubico для настольных компьютеров
audit_schedule    : 
editor            : 
keywords          : 
licence           : proprietary_restricted,wapt_private
homepage          : 
package_uuid      : 49fca46d-4d24-4963-a87e-f42efbbb818c
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : fec13c90f38c525de949d13243cc24009951d4cbdb86692635031d6b860435b0
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-10-14T14:19:29.000000
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
signature         : D0Yady7xv7ZspCw1qwO3DM+s87QCRgUd6FSEEZMUD+NzA3SfFbIX873B99bKKBP6C63nUNQH+4XJLPJuNoXiwgryHPpwEbbCMctD7Nusjl9bHAs0yUEvV+81/4CPGuFIv/hTIIZKal75Os1+GSqkExjexpAcplpd9yV0vv0Ynt1qn1BRIhXhL7CC/vs2ZQlWWhLFQtLsqRi+9BuJL9daPUu+b9EHlj56RvO+l1sxVKiwwOZbsOzwH97Vobxgn3BRBGugh8yvaPvwlMjCr4mBtgILd2LQISZCUwqO2nXTbInHDglGPgdz8lsTs5Ku29sK0jtjTF7NH3NmgJVDeIoD/g==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    bin_name = glob.glob('yubico-authenticator-*.msi')[0]
    # Installing the software
    
    install_msi_if_needed(bin_name)



# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
import msilib
import waptlicences

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()
    
    git_repo = "Yubico/yubioath-flutter"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo   
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if download["browser_download_url"].endswith('.msi') :
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v","")
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl,filename,proxies=proxies)

    # Check signature bin
    expected_issuer = 'Yubico AB'
    sign_name = waptlicences.check_msi_signature(filename)[0]
    if sign_name != expected_issuer:
        error('Bad issuer %s != %s ' % (sign_name,expected_issuer))

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.msi'):
        if f != filename:
            remove_file(f)

    version =get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ce61d73fb6f36e541bb8b09dbeb83527a3776f2ededf30b2512278704689ea20 : WAPT/control
fec13c90f38c525de949d13243cc24009951d4cbdb86692635031d6b860435b0 : WAPT/icon.png
e937b4af80807b6ce64a5c97497890d249ef7f16839950f7439c057e2bbd5848 : luti.json
3b2849b6388c05abd23a6237a28066ce5ffb75c8aaba4fd157a672762d01881c : setup.py
fec909bbe6cec470620667c505c3ce62db7146dc3d8ea5f1414ae3567103cd84 : update_package.py
a278b9b558315f6eee4798034defe3716dd759ea36c1b0d076fbb386357a61e3 : yubico-authenticator-7.3.1-win64.msi