
RoboForm
Paquet d’installation silencieuse pour RoboForm
9.7.1.1-1
- package: tis-roboform-enterprise
- name: RoboForm
- version: 9.7.1.1-1
- maintainer: Amel FRADJ
- licence: RoboForm License Agreement
- target_os: windows
- architecture: all
- signature_date:
- size: 40.22 Mo
- homepage : https://www.roboform.com/
package : tis-roboform-enterprise
version : 9.7.1.1-1
architecture : all
section : base
priority : optional
name : RoboForm
categories :
maintainer : Amel FRADJ
description : RoboForm remembers your passwords so you don't have to!
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : RoboForm se souvient de vos mots de passe pour que vous n'ayez pas à le faire !
description_pl : RoboForm zapamiętuje Twoje hasła, abyś Ty nie musiał tego robić!
description_de : RoboForm merkt sich Ihre Passwörter, damit Sie es nicht tun müssen!
description_es : RoboForm recuerda sus contraseñas para que usted no tenga que hacerlo
description_pt : O RoboForm memoriza as suas palavras-passe para que não tenha de o fazer!
description_it : RoboForm ricorda le vostre password in modo che non dobbiate farlo voi!
description_nl : RoboForm onthoudt je wachtwoorden zodat jij dat niet hoeft te doen!
description_ru : RoboForm запоминает ваши пароли, чтобы вам не пришлось этого делать!
audit_schedule :
editor :
keywords :
licence : RoboForm License Agreement
homepage : https://www.roboform.com/
package_uuid : 03660158-1037-4944-96de-5832c05d1aba
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 546becf435df8f321970dd65d2c0eb5ccf385ac5beceec71245e4d3ca48da57e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-05-19T16:06:54.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 : h057mHNE7lMWgIOxD6Q0mfvIwnsR7cXsaDaa9RGKe52Y8NtOSr2bxH7Ak7B06tBtxGwYM+GT8u1tg8vqFPzgEX6wxP1j++9aj/gHv37VjSItFwii+Nuvjl2EbUKC3wIduYw0Gc1aNH7EzH1hNAe9fztN7D2r1c4VDN+dPH7Lcw/pxa7OGFT9EFkM1jkb+BeeOK0hOpiIa4ggU2IAR8VJbYlCYXHdaT4xwn/PYPYqGf6Fz4CKOY5stuObtr/j27m+mcFHmWA6NMMxR4Bj2pN1bXmPxtEUZysuKkdpxWK6BsUdrgfEugH7oA7tVa2ez/qlFrKoqgm83lYyP0MDhOYLPg==
# -*- 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():
bin_name = glob.glob('RoboForm-*-Setup.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/silent /unatt',
key='AI RoboForm',
min_version= control.get_software_version(),
)
uninstallkey.clear()
def uninstall():
for to_uninstall in installed_softwares('AI RoboForm'):
print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
killalltasks(ensure_list(control.impacted_process))
quiet_uninstall_string = (installed_softwares(uninstallkey=to_uninstall["key"])[0]["uninstall_string"] + r' /silent /unatt')
run(quiet_uninstall_string)
wait_uninstallkey_absent(to_uninstall["key"])
# def uninstall() :
# run('"C:\\Program Files (x86)\\Siber Systems\\AI RoboForm\\rfwipeout.exe\" /silent /unatt')
def audit():
if not uninstall_key_exists("AI RoboForm"):
print('uninstallkey RoboForm not found')
return "ERROR"
else:
return "OK"
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url_base = "https://www.roboform.com/download"
response = requests.get(url_base,allow_redirects=True, proxies=proxies)
# Extract the correct div using bs_find_all
divs = bs_find_all(response.text, "div","class","action", proxies=proxies)
exe_file = None
for div in divs:
if exe_file:
break
links = div.find_all('a', href=True)
for link in links:
if link['href'].endswith('.exe'):
href = link['href']
exe_file = href
download_url = exe_file
latest_bin = exe_file.split('/')[-1]
version = latest_bin.split("-")[1].replace("v","")
break
# Find the div with class "info-text" to get the version
#info_text_divs = bs_find_all(response.text,"div", "class","info-text", proxies=proxies)
#version = None
#version_pattern = re.compile(r'RoboForm for Windows MSI v(\d+\.\d+\.\d+)')
#for div in info_text_divs:
#h3 = div.find('h3')
#if h3:
#match = version_pattern.search(h3.text)
#if match:
#version = match.group(1)
#break
# 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)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
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()
803d60cfae0e76d7db647d928e185ec6a3e21f69f84cd47cd502ec7ac46a5be9 : RoboForm-v9-Setup.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
4f1a104631e61a887059c32890e2db3de0f0a0ca146a28e2800a6f6a8d9fc337 : WAPT/control
546becf435df8f321970dd65d2c0eb5ccf385ac5beceec71245e4d3ca48da57e : WAPT/icon.png
ab6d36a9b309cd5bcecda7e9b586f89f585d934ca4be6de5c4b75e6b99f229ab : luti.json
88535bdd113aefb87147e1cc3fb8709aa835049b3b2b0b2a1ac677612f13f1c7 : setup.py
d09df4f1a8d21c2298884300b9b507274bc8111d111004483869a5e869f10617 : update_package.py