- package: tis-crowdsec
- name: CrowdSec Agent
- version: 1.6.4-10
- categories: Security
- maintainer: Kevin Guerineau
- editor: CrowdSec
- licence: MIT license
- locale: all
- target_os: debian,ubuntu(<24)
- architecture: x64
- signature_date:
- size: 75.34 Mo
- homepage : https://www.crowdsec.net/
package : tis-crowdsec
version : 1.6.4-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 : 431466f5-1350-4490-996b-1d15062b223f
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 : 2024-12-29T17:00:30.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 : jwIeuRnr3TXbCA6UfD2xvrc0+/m3qRRvBLuKP2C0MLWB43do1KJQwMwXK/ohj6syo0EjdllLxq8iBLru+Ju6j4tRh/MPuHkW8fCAETc01BS1jSR98nGtwfOIt9Cra9qxD5qNKOc2ENrf00DmHsfN7SQqb4lgYeJ8g7paf/KDkH09MvZ9wke1bA1NMOW1YUuldHuMcoj35JW2iQ3q1JZMbPbkbe9yN0ibzO4ZZOwX8IDTbeq0kS8aDQQF7MX5LNAHUbc+h3ew6CXhuzLaBNucJt56wM5qLpakTTgyMFOBmKNrclZmBfbTjaSNGgM4HEXllIqTgduqOK6FgLmdgciQoA==
# -*- 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
1a68e22f84fc6029f5c714fcc9d11746de90f555348b20f5384f16e441c4470b : WAPT/control
ba401cac105d603ac5ab3c3769e77ea42f832031f322613e0580dd946f2240d8 : WAPT/icon.png
09e5c99b7c4419464765977de5403df99d57165902308bc1b639fd20b9933f9c : crowdsec-firewall-bouncer-iptables_0.0.31_amd64.deb
275d5d8f7cfcf41e6f1eb50f8d8d74e65148b3dad3c140ce937ea8697b4f7d2d : crowdsec_1.6.4_amd64.deb
1e80ea26f69458cb8c4c108c625bd5251a93dcad02f555fd58b470ff12f691ee : luti.json
5b4f87531f7e5bde27a6a7b3a8641f8ec493321bb5bdfc728b6d022ff9a9186c : setup.py
338de3a2739c037c3e9c75ef8c93f7e4655c5e901ef4795fc2c9efc9e233bfc8 : update_package.py