tis-winlogbeat
8.17.2-1
Winlogbeat (Elastic) Keep a pulse on what's happening across your Windows-based infrastructure. Stream Windows event logs to Elasticsearch and Logstash with Winlogbeat
968 downloads
Download
See build result See VirusTotal scan

- package : tis-winlogbeat
- name : winlogbeat
- version : 8.17.2-1
- categories :
- maintainer : Amel FRADJ
- installed_size :
- editor :
- licence : Apache 2.0
- signature_date : 2025-02-16T17:35:26.000000
- size : 29.31 Mo
- locale :
- target_os : windows
- impacted_process :
- architecture : x64
- Homepage : https://www.elastic.co/fr/
package : tis-winlogbeat
version : 8.17.2-1
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 : PROD
locale :
target_os : windows
min_wapt_version :
sources : https://www.elastic.co/downloads/past-releases#winlogbeat
installed_size :
impacted_process :
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 : 36c6c98b-f33d-4954-9898-17290df7e5a2
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 : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-02-16T17:35: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 : JhJVjuKaI6A/VECt0Hf91552/1saIVer8DBuxi3V6jANXH4w1ydGyRPFzBLwMZDZyHCKlcWji3EszhnVG7ZAB2gZ2Vj9IsCMp5q80pD/OK4BF+EYBd7TQlV8oj47pS7NaTuuJnaCSNwUursnpk4qHl9hXatrEJubKritjIL4KVImh8zuDWDLgK99aklJllDUscZajRfvAKnREUapm82n3A+S+qJGdQck4Ck5RTguijNbfTdHtPAXi0YbRdF7jkrx7R4VV9AzO5Drv4atcOWkiPb9gLUATsIrkujWfNSMyvmbFo2w3wUKOy5oQ5Has3vOrHJva5A8IiA/hV+H9DuMyg==
# -*- 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():
# Declaring local variables
bin_name = glob.glob("winlogbeat-*-windows-x86_64.msi")[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- 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 = proxies = get_proxies()
url_base = "https://www.elastic.co/downloads/past-releases#winlogbeat"
# Split the text
version = [u.text for u in bs_find_all(url_base,"h3", "class", "jsx-1955866259 h5",proxies=proxies) if 'Winlogbeat' in u.text and not 'rc' in u.text.lower()][0].split()[-1]
download_dict = {
"windows-x64": "https://artifacts.elastic.co/downloads/beats/winlogbeat/winlogbeat-{version}-windows-x86_64.msi"}
download_url = download_dict[control.target_os + "-" + ensure_list(control.architecture)[0]].format(version=version)
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
if not isfile(latest_bin):
package_updated = True
wget(download_url, latest_bin, proxies=proxies)
filtre = '*.' + latest_bin.split('.')[-1]
for f in glob.glob(filtre):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
4faba8955070a88853ae2fa6b0fb6c260e5781acaf06c22c42599818e8fb4412 : WAPT/control
8235a1cb525e7a622a31dd0db8fb59b883e8fb5d6ba06a2605add77a0e583b7d : WAPT/icon.png
f63a85c61954688cfa393f759d154c674c2437fd2c17a28083604aa497078a18 : luti.json
13fb48b2f9edd270e147209ab449110d72d5734e46b3386291d8bb87d90b1440 : setup.py
07214796a8c1cb4d8a14a8a43817cd6233d924033af0e73ecda4d352539a4c5e : update_package.py
f4fabaf6401137174310c4bcdd2dbbecd390c9609ff18481d1386d9b7bacf29b : winlogbeat-8.17.2-windows-x86_64.msi