tis-winlogbeat icon

winlogbeat

Silent install package for winlogbeat

9.2.2-4

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-winlogbeat
  • name: winlogbeat
  • version: 9.2.2-4
  • maintainer: Amel FRADJ
  • licence: Apache 2.0
  • target_os: windows
  • impacted_process: winlogbeat
  • architecture: x64
  • signature_date:
  • size: 33.32 Mo
  • homepage : https://www.elastic.co/fr/

package           : tis-winlogbeat
version           : 9.2.2-4
architecture      : x64
section           : base
priority          : optional
name              : winlogbeat
categories        : 
maintainer        : Amel FRADJ
description       : Winlogbeat (Elastic) Keep a pulse on what's happening across your Windows-based infrastructure. Stream Windows event logs to Elasticsearch and Logstash with Winlogbeat
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : https://www.elastic.co/downloads/past-releases#winlogbeat
installed_size    : 
impacted_process  : winlogbeat
description_fr    : Winlogbeat (Elastic) Prenez le pouls de ce qui se passe dans votre infrastructure Windows. Stream des journaux d'événements Windows vers Elasticsearch et Logstash avec Winlogbeat
description_pl    : Winlogbeat (Elastic) Trzymaj rękę na pulsie tego, co dzieje się w infrastrukturze opartej na systemie Windows. Przesyłaj strumieniowo dzienniki zdarzeń systemu Windows do Elasticsearch i Logstash za pomocą Winlogbeat
description_de    : Winlogbeat (Elastic) Behalten Sie den Überblick über die Vorgänge in Ihrer Windows-basierten Infrastruktur. Streamen Sie Windows-Ereignisprotokolle zu Elasticsearch und Logstash mit Winlogbeat
description_es    : Winlogbeat (Elastic) Mantenga el pulso de lo que ocurre en su infraestructura basada en Windows. Transmita los registros de eventos de Windows a Elasticsearch y Logstash con Winlogbeat
description_pt    : Winlogbeat (Elastic) Mantenha-se informado sobre o que está a acontecer na sua infraestrutura baseada no Windows. Transmita logs de eventos do Windows para o Elasticsearch e o Logstash com o Winlogbeat
description_it    : Winlogbeat (Elastic) Tenete sotto controllo ciò che accade nella vostra infrastruttura basata su Windows. Trasmettete i log degli eventi di Windows a Elasticsearch e Logstash con Winlogbeat
description_nl    : Winlogbeat (Elastic) Houd een vinger aan de pols van wat er gebeurt in je Windows-gebaseerde infrastructuur. Stream Windows event logs naar Elasticsearch en Logstash met Winlogbeat
description_ru    : Winlogbeat (Elastic) Следите за тем, что происходит в вашей инфраструктуре на базе Windows. Потоковая передача журналов событий Windows в Elasticsearch и Logstash с помощью Winlogbeat
audit_schedule    : 
editor            : 
keywords          : 
licence           : Apache 2.0
homepage          : https://www.elastic.co/fr/
package_uuid      : 16687730-7398-4c58-b561-d6dafe1345bc
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://www.elastic.co/downloads/past-releases#winlogbeat
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 8235a1cb525e7a622a31dd0db8fb59b883e8fb5d6ba06a2605add77a0e583b7d
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-12-03T18:53:43.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         : UZR9OPpMG6j9RYcu8g0vx7dBwMZ3Lg+RHKewL/wgKouUpzhxFM5EWTh64Q/VcTC+20N5iFTFqB8pHziSAFKRnNE9VVaBIOer63z0zFhjkZ8OizjbG1FQCLFNSbkNaCXGkSzgm7sdElCZjQr9nxqrJcGedznN3mnH7nigHDHGqpFPscLRyGhCdAUG3uz/OflxKzhx69+TA8ViEWYxd/DFfVm2z+n8mV6OlTKALwCpSftz3oaNhgkuesUMgB/fQZ6T0X3Ej3dc4+wtNM6Qmq/i7LY0JnS392VAoyktVe6F9LSUA9eFpZncaf4FKZp+5XHeD48FNYaQq2DrGoN2pT8kDg==

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    # Declaring local variables
    bin_name = glob.glob("winlogbeat-*-windows-x86_64.msi")[0]
    
    # Installing the software
    install_msi_if_needed(
        bin_name,
        name=f'Beats winlogbeat',
        min_version=control.get_software_version()
    )

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import waptlicences


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name

    url_base = "https://www.elastic.co/downloads/beats/winlogbeat"
    version = bs_find(url_base, "div", "class", "version-details", proxies=proxies).get_text().split(':')[-1].strip()
    download_url = f"https://artifacts.elastic.co/downloads/beats/winlogbeat/winlogbeat-{version}-windows-x86_64.msi"
    latest_bin = download_url.rsplit("/", 1)[-1]
    latest_bin_extension = latest_bin.rsplit('.', 1)[-1]

    # Downloading latest binaries
    print(f"Latest {app_name} version is: {version}")
    print(f"Download URL is: {download_url}")
    if not isfile(latest_bin):
        print(f"Downloading: {latest_bin}")
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print(f"Binary is present: {latest_bin}")

    expected_issuer = "Elasticsearch, Inc."
    sign_name = waptlicences.check_msi_signature(latest_bin)[0]
    if sign_name != expected_issuer:
        error(f'Bad issuer {sign_name} != {expected_issuer} ')

    # 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)})")

    for f in glob.glob(f'*.{latest_bin_extension}'):
        if f != latest_bin:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
a90b2f9eac38a25ee180ba9639180f7d3814ed3fd983b152352070161f54a116 : WAPT/control
8235a1cb525e7a622a31dd0db8fb59b883e8fb5d6ba06a2605add77a0e583b7d : WAPT/icon.png
3835753ae995772e10f28e9501dbfc0d9d04bfd5e6bdaa699ef34cb2398ba609 : luti.json
35e1913d726589b0551a59acdf7b8fad791d05393f1113f827c9a3bd8c7c8ee4 : setup.py
6e7a5e8297b56c63162f4abe21124c6cac3b7a6f33c727cad7d24586a76219ea : update_package.py
441ed314f3af93bab5f2c9e413ae470f1f71026ce55ac61ed22e8db00d20b1e8 : winlogbeat-9.2.2-windows-x86_64.msi