1Password
Silent install package for 1Password
8.12.34-3
Security
Security
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-1password
- name: 1Password
- version: 8.12.34-3
- categories: Security
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_private
- target_os: windows
- architecture: x64
- signature_date:
- size: 235.20 Mo
- homepage : https://1password.com/downloads/windows
package : tis-1password
version : 8.12.34-3
architecture : x64
section : base
priority : optional
name : 1Password
categories : Security
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Password manager for Windows
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version : 2.5
sources :
installed_size :
impacted_process :
description_fr : Gestionnaire de mots de passe pour Windows
description_pl : Menedżer haseł dla systemu Windows
description_de : Passwort-Manager für Windows
description_es : Gestor de contraseñas para Windows
description_pt : Gestor de palavras-passe para Windows
description_it : Gestore di password per Windows
description_nl : Wachtwoordmanager voor Windows
description_ru : Менеджер паролей для Windows
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_private
homepage : https://1password.com/downloads/windows
package_uuid : 047877cf-a91b-4be6-b229-e479d6b6e0bf
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 398df5ca51a569a2f1621473ac25315eff6680ba1910f01da89690cc8f7dd6b5
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-08-25T16:27:59.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 : ujaeQSo8noSg3bSxVug6PZYNOlOUQUukWLKPK4bWpazKfFZ2UfVfINsOA8kL4xUVB5Lyk7jeZiWzwO1XJXVf8jWloJm5lC2SGB2NgX86t1wesGLwZzBgMLZSy1c28aSb2xdr5twWEEKhTGiIKD0gN2u0DmXdqa9JSYGfun0e9AzZu2mIYWGQ5brZ4hzgRXGbjEbx45+VXeIIo9fxzZSIHuSTUSA0wcehxD3qmdM3dGo1lNLY59ku8euiyU2v6mgnC975to1BD+cD7xwAo+3i1xGn2EKCm9e/1+TKIdMBeL6RaAK9tXIXZRsc1p9tYTJMu3LCpyUOlZkfZNzYsY0fVA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("*.msi")[0]
#Disables autoinstall and autoupdate
properties = {
"MANAGED_INSTALL": 1,
"MANAGED_UPDATE": 1
}
# Installing the software
install_msi_if_needed(
bin_name,
name="1Password",
properties=properties,
min_version=control.get_software_version(),
time_wait_uninstallkey_present=1000
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import msilib
import waptlicences
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://downloads.1password.com/win/1PasswordSetup-latest.msi"
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Check signature bin
expected_issuer = 'Agilebits'
sign_name = waptlicences.check_msi_signature(latest_bin)[0]
if sign_name != expected_issuer:
error('Bad issuer %s != %s ' % (sign_name,expected_issuer))
# Deleting outdated binaries
for f in glob.glob("*.msi"):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
038702f3035ca13c81970318219bc8a29e001198bdd4a2cae639cc059a30d7e4 : 1PasswordSetup-latest.msi
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
df44d378a77f52aba3a02d955b3d47dc8e6f8163206f962820cfbd4f2b9ea9df : WAPT/control
398df5ca51a569a2f1621473ac25315eff6680ba1910f01da89690cc8f7dd6b5 : WAPT/icon.png
327d2b8127cc91da69ff16e3c8e9b3321506f16042a9c667db237e0d739c5fbc : luti.json
d7c81b17a35d3cd61bf959a09b7563aa649537dd1156593f5d5e80ae5f44923c : setup.py
d12c5b766233758af68d29aee35985af297bc9bd24b30e30d03043e89a99a6f1 : update_package.py