tis-crowdsec icon

CrowdSec Agent

Silent install package for CrowdSec Agent

1.6.5-10

  • package: tis-crowdsec
  • name: CrowdSec Agent
  • version: 1.6.5-10
  • categories: Security
  • maintainer: Kevin Guerineau
  • editor: CrowdSec
  • licence: MIT license
  • locale: all
  • target_os: debian,ubuntu(<24)
  • architecture: x64
  • signature_date:
  • size: 76.30 Mo
  • homepage : https://www.crowdsec.net/

package           : tis-crowdsec
version           : 1.6.5-10
architecture      : x64
section           : base
priority          : optional
name              : CrowdSec Agent
categories        : Security
maintainer        : Kevin Guerineau
description       : CrowdSec is a free, modern and collaborative behavior detection engine, coupled with a global IP reputation network
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : debian,ubuntu(<24)
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : CrowdSec est un moteur de détection des comportements gratuit, moderne et collaboratif, associé à un réseau mondial de réputation IP
description_pl    : CrowdSec to darmowy, nowoczesny i oparty na współpracy mechanizm wykrywania zachowań, połączony z globalną siecią reputacji IP
description_de    : CrowdSec ist eine kostenlose, moderne und kollaborative Verhaltenserkennungs-Engine, gekoppelt mit einem globalen IP-Reputationsnetzwerk
description_es    : CrowdSec es un motor de detección de comportamientos gratuito, moderno y colaborativo, unido a una red global de reputación IP
description_pt    : O CrowdSec é um motor de deteção de comportamentos gratuito, moderno e colaborativo, associado a uma rede global de reputação de IP
description_it    : CrowdSec è un motore di rilevamento del comportamento gratuito, moderno e collaborativo, abbinato a una rete globale di reputazione IP
description_nl    : CrowdSec is een gratis, moderne en collaboratieve engine voor gedragsdetectie, gekoppeld aan een wereldwijd IP-reputatienetwerk
description_ru    : CrowdSec - это бесплатная, современная и совместная система обнаружения поведения в сочетании с глобальной сетью IP-репутации
audit_schedule    : 
editor            : CrowdSec
keywords          : 
licence           : MIT license
homepage          : https://www.crowdsec.net/
package_uuid      : e686ba80-f3f5-4a17-ad05-693da3821a6b
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : ba401cac105d603ac5ab3c3769e77ea42f832031f322613e0580dd946f2240d8
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-02-18T14:57:31.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         : BenKBFmy/w3QCFa3e9PjTe7/2HCdWF7pBL3nHY1T2fI06L6wFPPDWv8ivDVVjVOaEsNqvlV4/8oisbSzvqeZrVNFs8siy71pb9ejzDs0NVMEBO0jFIfb4lmGOGz0/HrYxfDlbO6ibKJG3flWQPCW+BPeaoDXSSutjjvRLzIyyJBpt7VZit9d+iGCREOUmUcUApi9322G3qsIzw5IwRm46l9l5+8RLEhekdsOcDyjQeecqTulvOH77qkCULbD4T7YaM3UAd2pCNOgLOP1s1y+7/rx1ExeBR8AEf80iDIrcSnaj697fIA1E+1h8Pb+kVltnvEI0YE7j3gRhJTfN3xP7Q==

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


def install():
    run('LANG=C DEBIAN_FRONTEND=noninteractive apt-get install -y ./*.deb')

def uninstall():
    uninstall_apt('crowdsec crowdsec-firewall-bouncer-iptables')

# -*- coding: utf-8 -*-
from setuphelpers import *
import gzip
from io import BytesIO
from setuphelpers import Version,wgets
from setupdevhelpers import *

def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies_from_wapt_console()

    if not proxies:
        proxies = get_proxies()

    dict_arch = {"x64": "amd64"}

    urldepot = 'https://packagecloud.io/crowdsec/crowdsec/debian/'
    dist = "bookworm"
    arch = dict_arch[control.architecture]
    package_name_list = ["crowdsec","crowdsec-firewall-bouncer-iptables"]


    with gzip.open(BytesIO(wgets('%s/dists/%s/main/binary-%s/Packages.gz' % (urldepot,dist,arch),proxies=proxies))) as f:
        data = f.read().decode('utf-8')

    list_package = listcontrol_to_dict_data(data,'\nPackage: ')
    all_dep=[]

    last_version= None
    list_deb = []
    for package_name in package_name_list :

        last_package = sorted([u for u in list_package if u['package'] == package_name], key=lambda p: (Version(p['version'].split(':',1)[-1].split('+')[0])), reverse=True)[0]
        if not last_version:
            last_version = last_package['version'].split(':',1)[-1].split('+')[0]

        all_dep.append(last_package)

        for s in last_package.get('depends','').split(','):
            for p in s.split('|'):
                get_all_dep_version_pacakge(list_package,p.split('(')[0].strip(),all_dep)

        for u in all_dep:
            list_deb.append(urldepot + '/' + u['filename'])

    list_all_file = []
    for f in list_deb:
        filename = f.split('/')[-1]
        list_all_file.append(filename)
        if not isfile(filename):
            wget(f,filename,proxies=proxies)

    for f in glob.glob('*.deb'):
        if not f in list_all_file:
            remove_file(f)

    control.set_software_version(last_version)
    control.save_control_to_wapt()



def listcontrol_to_dict_data(data=None, first_entry=None):
    list_package = '\n' + data
    list_control=[]
    for i in list_package.split(first_entry):
        if not i.strip('\n'):
            continue
        list_control.append(first_entry.replace('\n','') + i)

    list_package = []
    for pkg in list_control:
        entry = {}
        gpg = False
        for l in pkg.split('\n'):

            if '-----BEGIN PGP PUBLIC KEY BLOCK-----' in l:
                gpg = True
                continue
            if '-----END PGP PUBLIC KEY BLOCK-----' in l:
                gpg = False
                continue
            if gpg :
                continue

            if not l:
                continue
            if (':' in l) and (not '::' in l) and (not l.startswith(' ')) :
                key = l.split(':',1)[0].strip().lower()
                value = l.split(':',1)[1].strip()
                entry[key] = value.strip('\n')
            else:
                entry[key] =  entry[key].strip('\n') + ' ' if entry[key].strip() else "" + l.strip()

        list_package.append(entry)
    return list_package

def get_all_dep_version_pacakge(list_package,package_name,all_dep):
    last_package = sorted([u for u in list_package if u['package'] == package_name], key=lambda p: (Version(p['version'].split(':',1)[-1].split('+')[0])), reverse=True)
    if last_package:
        last_package = last_package[0]
        all_dep.append(last_package)
    else:
        return
    for k in last_package.get('depends','').split('|'):
        for p in k.split(','):
            get_all_dep_version_pacakge(list_package,p.split('(')[0].strip(),all_dep)

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
1d2b3e3a2fb3781429a87ef952d621b07a38bfa10156cf5408c0650e26f2df62 : WAPT/control
ba401cac105d603ac5ab3c3769e77ea42f832031f322613e0580dd946f2240d8 : WAPT/icon.png
09e5c99b7c4419464765977de5403df99d57165902308bc1b639fd20b9933f9c : crowdsec-firewall-bouncer-iptables_0.0.31_amd64.deb
8f7a248388918d6c7cee13dd2e9d1663546fb43b51aabd755a5ae35fed6936ea : crowdsec_1.6.5_amd64.deb
82e1754445d07557229a0aa5767bc1d5e10a7511a9bedb6e81374a47e6e7271a : luti.json
5b4f87531f7e5bde27a6a7b3a8641f8ec493321bb5bdfc728b6d022ff9a9186c : setup.py
338de3a2739c037c3e9c75ef8c93f7e4655c5e901ef4795fc2c9efc9e233bfc8 : update_package.py