keeper-forcefield
Paquet d’installation silencieuse pour keeper-forcefield
1.1.0.174-0
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-keeper-forcefield
- name: keeper-forcefield
- version: 1.1.0.174-0
- maintainer: Kevin Cherel
- licence: ©
- target_os: windows
- architecture: x64
- signature_date:
- size: 1.32 Mo
package : tis-keeper-forcefield
version : 1.1.0.174-0
architecture : x64
section : base
priority : optional
name : keeper-forcefield
categories :
maintainer : Kevin Cherel
description : Keeper Forcefield (Keeper Security, Inc.)
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
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 : 7019fa43-b190-4cdc-8405-c113421925e8
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : bc450e774d11559166cde9109240add30160e9666cc2fe147d34368ca858de9a
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-12-12T13:05:42.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 : syrbmMljKVinhtjX70vI1k8Q+aTWhn30sFms5HmhdzOsQ/3l5bDW5QXsdsGn8jIJfy+AkMoDO9h55BwyybQUuYgAHtORD/BHiJmuH1yvzCaOuCqMVX1WJeoCcpRaVzajGIEEI0YXtF51Ua33M+i6GHeAiW3n15QfZN1JgeNlXuqgHjB7j5J1MoQxJH66apQIFwtnn1smXvABQWWFrU7BEBvziQ3Wf8Txt/2zz+nsnlnZpIE0lOfWKBAylvwU2rSyngSHKn3EM3GtMZ+47Wxd9KCEb8OB/6FdhzkNuueSfCSn4m+RSpMFrqDZaMiaBiXujQBdot/QiornCYhZQ4l+tQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
#app_uninstallkey = "{0DE9AB82-26AE-4846-9CB5-C2DB31B5EA85}"
def install():
bin_name = glob.glob('keeper*.msi')[0]
install_msi_if_needed(
bin_name,
name="Keeper Forcefield"
#key="{0DE9AB82-26AE-4846-9CB5-C2DB31B5EA85}",
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import requests
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
app_name = control.name
if control.architecture == "x64":
download_url = "https://download.keepersecurity.com/forcefield/keeperforcefield.msi"
else:
download_url = "https://download.keepersecurity.com/forcefield/arm64/keeperforcefield.msi"
version = wgets("https://download.keepersecurity.com/forcefield/version.json", as_json=True)["version"]
latest_bin = download_url.rsplit("/", 1)[-1]
# Deleting outdated binaries
for f in glob.glob("*.msi"):
if f != latest_bin:
remove_file(f)
# 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)
version = get_version_from_binary(latest_bin)
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
0f0e7bd0bad1d3173f05f99287d800fbd174960d0ef3c4a52b1bc889a93c8f3a : WAPT/control
bc450e774d11559166cde9109240add30160e9666cc2fe147d34368ca858de9a : WAPT/icon.png
afb3b6db32ce4b2806d4768f3d0e01ad75dad14e621fd8c499c3100852c22de2 : keeperforcefield.msi
15d31763c0a1fde69c42c6f1cb81848cd9268a089b2e681ff7189404166ea8af : luti.json
7159531b9cd3d7b2f4585334696d974e69c8e8318a3b8daf5c63e57e66b749f7 : setup.py
65710c9ca641b986d202ba3a102a76b26b596ddb7f752ad2ee5ed4d5edd56eda : update_package.py