tis-winlogbeat

8.16.1-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
tis-winlogbeat icon
  • package : tis-winlogbeat
  • name : winlogbeat
  • version : 8.16.1-1
  • categories :
  • maintainer : Amel FRADJ
  • installed_size :
  • editor :
  • licence : Apache 2.0
  • signature_date : 2024-11-27T12:02:55.000000
  • size : 29.10 Mo
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : x64
  • Homepage : https://www.elastic.co/fr/
package           : tis-winlogbeat
version           : 8.16.1-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      : 536f5c40-f0f3-4e31-b06b-1665fe106ec1
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-11-27T12:02:55.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         : g9wk5TotheudtP7o/nAR/b8Wv6dQf3Kjtqe/eemEkjQvWtQeF4BjonxYBWqP4sK0Ome2kUHqcZOz2UXExV6iGXL4X1qDup0BiEIDyWY47PD91x/kkApw6bIHAe3pOp2Yk+RcUd0nVYHF+jDKymvOsFw/uIkYRkfNaTeMWWAR66NEsIkcZAJfjy0HjjNQWgcwuTAqM3v0iwZX76iQGbpVPDlkwJWES8XC4JkKE8KXYw2pENuSssj9DB4kOXdmPIVjlLQPep1fvaiXbtnWzjmbyH5ydO/13OHPDRAtENPzlRLvQyZb8aaIqHcLYJdf4Nc+TE/zbWUaBanLYH6dk82vaA==
# -*- 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
34ea30cd2c1118d80598bed1d87f8fee80e8c397ffd618af607ddbc256d9a82c : WAPT/control
8235a1cb525e7a622a31dd0db8fb59b883e8fb5d6ba06a2605add77a0e583b7d : WAPT/icon.png
b5ad7179eaa92a398747cb47f82b2d932edbd243d4d29f201b8001e23b32e908 : luti.json
13fb48b2f9edd270e147209ab449110d72d5734e46b3386291d8bb87d90b1440 : setup.py
07214796a8c1cb4d8a14a8a43817cd6233d924033af0e73ecda4d352539a4c5e : update_package.py
ccf8e8542cbebb11c1c4d410373fbc0df893cef40b8a7515b81fd5e899bab2fa : winlogbeat-8.16.1-windows-x86_64.msi