Cyberwatch Agent
Silent install package for Cyberwatch Agent
4.20-0
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-cyberwatch-agent
- name: Cyberwatch Agent
- version: 4.20-0
- categories: Security
- maintainer: WAPT Team,Tranquil IT
- editor: Cyberwatch
- locale: all
- target_os: redhat_based
- architecture: all
- signature_date:
- size: 34.66 Ko
- installed_size: 179.06 Mo
- homepage : https://cyberwatch.fr
package : tis-cyberwatch-agent
version : 4.20-0
architecture : all
section : base
priority : optional
name : Cyberwatch Agent
categories : Security
maintainer : WAPT Team,Tranquil IT
description : Cyberwatch Vulnerability Manager is a vulnerability management platform with Assets mapping, Vulnerability scanning, Prioritization. Vulnerability Manage
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : redhat_based
min_wapt_version : 2.0
sources :
installed_size : 179061248
impacted_process :
description_fr : Cyberwatch Vulnerability Manager est une plateforme de gestion des vulnérabilités avec cartographie des actifs, analyse des vulnérabilités et priorisation. Gestion des vulnérabilités
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor : Cyberwatch
keywords :
licence :
homepage : https://cyberwatch.fr
package_uuid : 7599afe9-15ec-4655-a976-c9492ea47741
valid_from :
valid_until :
forced_install_on :
changelog : https://docs.cyberwatch.fr/help/fr/general_administration_software/changelog/agent/
min_os_version :
max_os_version :
icon_sha256sum : 84c8d943064b7613cd3ed456ddd81ab07c487931ae81fbbe029c670255d379d2
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-01-26T09:27: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 : mPM6M5qq2ZPmlCBivjsOYGjCvDLaX0X9piiwFbo3bWw4gaXPvSbzKudVkPvlhXcrVlZdd+HySvN7JzxLV6e4CusPeZv8tPEseDFaB3uYrsVrJ7Ykyln+8VVv89/s9G3d2/L8ofSnf4WRdthUMtl7YAmQSDhqFVkFC3KcdtQD+I7nUEhWwk2hT9LVlIu1FiI9OaqJhBxOIp72Ex3lVL9ntxj85xopvnHG86qLinpOPIqVMcg3EhSFYGAzTEweGMdcYZIROWfPkM1467B/OAJn0BISL0DozMdvp2vPldmhdBwk27arpAAU2cTrzH/RDVvr3SksOFNEd2o5gX884xwkMg==
from setuphelpers import *
def install():
# Declaring local variables
bin_name = glob.glob("*.rpm")[0]
if get_distrib_linux() == 'fedora':
install_yum(bin_name)
else:
install_rpm(bin_name)
def uninstall():
uninstall_yum('cyberwatch-agent')
from setupdevhelpers import *
def update_package():
# Declaring local variables
result = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
last_versionbin = '0'
for entry in bs_find_all('https://dl.cyberwatch.fr/rpm/incoming/',"a","href",proxies=proxies):
if not entry.attrs['href'].endswith('.rpm') or not entry.attrs['href'].startswith('cyberwatch-agent-'):
continue
fname = entry.attrs['href']
versionbin = fname.split('-')[2]
if Version(versionbin) > Version(last_versionbin):
last_versionbin = versionbin
download_url = 'https://dl.cyberwatch.fr/rpm/incoming/' + fname
lastestbin = download_url.split('/')[-1]
if not isfile(lastestbin):
result = True
wget(download_url,lastestbin)
for f in glob.glob('*.rpm'):
if f != lastestbin:
remove_file(f)
version = last_versionbin
control.set_software_version(version)
control.save_control_to_wapt()
return result
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
b8bb01f517487e863b3f5ecf7d007a6e3a4ab03df3aa5368b563f87f43715a56 : WAPT/control
84c8d943064b7613cd3ed456ddd81ab07c487931ae81fbbe029c670255d379d2 : WAPT/icon.png
673fc43aadb20c17be36afae8000e1fe6a49a5f17b633f60455c83ee92328dea : cyberwatch-agent-4.20-1.noarch.rpm
4381c653f36aa08c7956e65ec64388ef5944455bd08204b9fc6d1fa60bed052c : luti.json
27afbaf1fa1307ec3ae689be5c8bc009edb8ddd7d67ef96c6433038bc829c939 : setup.py
2368f2e4613b85321b0fe87851771680b72725654d31a0fc33a20002292e6e7b : update_package.py