keeper-forcefield
Silent install package for keeper-forcefield
1.1.0.174-0
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-keeper-forcefield
- name: keeper-forcefield
- version: 1.1.0.174-0
- maintainer: Kevin Cherel
- licence: ©
- target_os: windows
- architecture: arm
- signature_date:
- size: 1.29 Mo
package : tis-keeper-forcefield
version : 1.1.0.174-0
architecture : arm
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 : 5cec1aef-0081-4983-963d-abe31f85ceca
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:08:26.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 : qh+ukO0lorg6VdlFvFvujW76mDxz+NZfWV/9zasyKLQw9f287r/S+bS1YzSZ0xSAguxQ68M8xB/Cq1RsraHhEF/NbYIAUoirCYZTTj+ljw7StP5iZPCaZSa2/Zt9EAHQE1r44aD7ZltZumSNiydNbVONbbUHuK4x5lB+lSIdTv9/qyz2ocv27nveYcsNyW/yIUedwwwjUXl2tASzy+k0PnOEcoL7hQVSW2uWvi7+u9exD/VtxyDGIa6v4/VTG2G5hwt2NtOspRyElM1Ql75ORWceeCsV5FITNAW24nwKUjOVdhwSt9UYlIZO48bNODqPzdLJXQnmOZb5RrAHBiqQEQ==
# -*- 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
bcd845f461da901f4c476b24d0b27ec756ca3b53493ba4d1b6edfc3a4f4721b3 : WAPT/control
bc450e774d11559166cde9109240add30160e9666cc2fe147d34368ca858de9a : WAPT/icon.png
68196aaa71b49d4d1d1d7922ccdd19d7e4655b472098f4a2ae9f35c53d6a2887 : keeperforcefield.msi
64668f994dfcb89ab8ac24d29f771610b75b310cffd9c5ede74f4a7499ec7d45 : luti.json
7159531b9cd3d7b2f4585334696d974e69c8e8318a3b8daf5c63e57e66b749f7 : setup.py
65710c9ca641b986d202ba3a102a76b26b596ddb7f752ad2ee5ed4d5edd56eda : update_package.py