
Authme
Paquet d’installation silencieuse pour Authme
6.3.1-2
Security
Security
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-authme
- name: Authme
- version: 6.3.1-2
- categories: Security
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: Levminer
- licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
- locale: all
- target_os: windows
- impacted_process: Authme
- architecture: x64
- signature_date:
- size: 3.73 Mo
- installed_size: 4.25 Mo
package : tis-authme
version : 6.3.1-2
architecture : x64
section : base
priority : optional
name : Authme
categories : Security
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Authme is a cross-platform two-factor (2FA) authenticator app for desktop
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 4247992
impacted_process : Authme
description_fr : Authme est une application multiplateforme d'authentification à deux facteurs pour les ordinateurs de bureau
description_pl : Authme to wieloplatformowa, dwuskładnikowa aplikacja uwierzytelniająca dla komputerów stacjonarnych
description_de : Authme ist eine plattformübergreifende Zwei-Faktor-Authentifizierungs-App für Desktop
description_es : Authme es una aplicación de autenticación de dos factores multiplataforma para ordenadores de sobremesa
description_pt : O Authme é uma aplicação de autenticação de dois factores multiplataforma para ambiente de trabalho
description_it : Authme è un'applicazione multipiattaforma per l'autenticazione a due fattori per desktop
description_nl : Authme is een cross-platform twee-factor authenticator app voor desktop
description_ru : Authme - это кроссплатформенное приложение для двухфакторной аутентификации для настольных компьютеров
audit_schedule :
editor : Levminer
keywords : authenticator,2fa
licence : opensource_free,cpe:/a:gnu:gpl_v3,wapt_public
homepage :
package_uuid : 8d3bdc08-d41a-4220-be64-c5759df6e2ec
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/Levminer/authme/releases
min_os_version : 10.0
max_os_version :
icon_sha256sum : 87051b3393f4947ba882eeb40ecfc2eb967d6cf455bb29bff44a390c14b14750
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-10-14T12:56:34.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 : n4Vzn3CBIdtEF7sBsyXjZVj9gPIWUystD+j7Yn04oa8kQ8t+mRKZ1izk8MUeCSJDpVaX36y1OTUInatxXH/HRlQUH8ylTJDdEJ4NvtCyIrUH6cr4rIu85MVWqgVA/B1QtroBTZtX/3Lfq26EIQ7RMCVHYn29DZcRJxjj+YDyUA2ZaeWsKGsnDgw4Wp2EY54QBgw0VwLapye6TjCkX27pio6ZA6yGRARAnJMdfsZJ3sJYAn/8UZhj66kTQiQBU/pLULEegan4EKaQJoWdktRUBv8+Jxkua3EfLtD2pX2ZknbeESHO5B+Q0AXtPv426JgEkWvo2ia1mo650rd2JRNc4w==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("authme-*-windows-x64.msi")[0]
install_msi_if_needed(bin_name, properties="/quiet", min_version=control.get_software_version())
remove_desktop_shortcut("Authme")
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".msi", "debian_based": ".deb", "macos": ".dmg"}
api_url = "https://api.github.com/repos/Levminer/authme/releases/latest"
# Get data from API
releases_dict = json.loads(wgets(api_url, proxies=proxies))
msi_found = False # Flag pour indiquer la découverte d'un fichier .msi
for release in releases_dict:
if msi_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(".msi") and update_dict[control.target_os] in asset["browser_download_url"]:
url_download = asset["browser_download_url"]
latest_bin = url_download.split("/")[-1]
version = releases_dict["name"].split(" ")[1]
msi_found = True # Mettre à jour le flag pour indiquer qu'un msi a été trouvé
break
# Deleting binaries
for f in glob.glob("*.msi"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
print("Download URL is: %s" % url_download)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_download, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
version = get_version_from_binary(latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
cdf6a7dae0030d0596a284c912600409cc63c145bbdb085a056229c063b1be67 : WAPT/control
87051b3393f4947ba882eeb40ecfc2eb967d6cf455bb29bff44a390c14b14750 : WAPT/icon.png
03f72c52c9e66b6b03eee0a1da3b9f152a673caee970d15839e580bc7af5d057 : authme-6.3.1-windows-x64.msi
a77e35fbf1a38e69fdb2017a19e6a8e13bc0a8a2da261b6c54011c45ad5c774b : luti.json
08e39590c4cdac2980df3ed4ffdb070969263f54d7a6c1fbad76d9b250563b57 : setup.py
74902063e17a584c3b8ea481ee7c73a19a8216171b73643e24029bbfba160a1c : update_package.py