tis-winlogbeat
8.17.0-1
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
975 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal

- package : tis-winlogbeat
- name : winlogbeat
- version : 8.17.0-1
- categories :
- maintainer : Amel FRADJ
- installed_size :
- editor :
- licence : Apache 2.0
- signature_date : 2024-12-18T12:15:57.000000
- size : 29.30 Mo
- locale :
- target_os : windows
- impacted_process :
- architecture : x64
- Page d'accueil : https://www.elastic.co/fr/
package : tis-winlogbeat
version : 8.17.0-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 : ec64193e-b289-471a-8475-88ba820bd773
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 : 2024-12-18T12:15:57.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 : dxJ6rdrMJXDlnHdAkaPlJ1dX/WVaIceM/Hf2D0ac0WGxtw92wFfAPFkaFbjhXuykC7yTn1SCEXTb0GO4mwiCjAlkBkckOyF1fwkFEtAphAO7+yHayM30SFogTxP90Pzou2KMSTKrQn4RviG7QYPdnW4MTT6vyyzTklTzJUoER8EITHTlhwd4WlI2Iu+YSKkIx+KLaTCCTtCQ4U1kfiTAtawEUUVQYbfVpAt+yzV8pcah8Pi4I6Ngt2mjvmShNzWrK1Lz/hzpxSzRQgTk4DDs/Ir4MmqvCqTe/GRZ8AI6b3EqQDv0iTtd0rrEq1dfmuTmg7MdTZ6cPuhu7O/SI70Elg==
# -*- 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
a44eba5d59a909ca8a4900aad1d14835b2f41f7346eb0b1477bddd45da862179 : WAPT/control
8235a1cb525e7a622a31dd0db8fb59b883e8fb5d6ba06a2605add77a0e583b7d : WAPT/icon.png
2405c81ceb5d61ab0c281d96dc6dbc3d58c674312089567be0d64a55ebe80350 : luti.json
13fb48b2f9edd270e147209ab449110d72d5734e46b3386291d8bb87d90b1440 : setup.py
07214796a8c1cb4d8a14a8a43817cd6233d924033af0e73ecda4d352539a4c5e : update_package.py
5dd9442f6e5b9c8609373eeb41119ebb90417c2dd091d91e4233773b1ba7b14b : winlogbeat-8.17.0-windows-x86_64.msi