- package: tis-crowdsec
- name: CrowdSec Agent
- version: 1.6.3-10
- categories: Security
- maintainer: Kevin Guerineau
- editor: CrowdSec
- licence: MIT license
- locale: all
- target_os: debian,ubuntu(<24)
- architecture: x64
- signature_date:
- size: 51.42 Mo
- homepage : https://www.crowdsec.net/
package : tis-crowdsec
version : 1.6.3-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 : e004be7e-37ac-4273-8922-d93cae3467ae
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-09-24T15:03: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 : MWWYblYvpNtSUZPeDICDVGUDThYurzqO/HT5867KDUZ9tuVjpkvNbRkSwjACymUSXGUxlq8KSl+ZDbMni9CE5nkuNB3iDs9Krx9Wso9yU4PuZYlm7APAwKNKAwHgo7jtGC0TPvranQSQyl/R0oPznYRH9Gheu+m4DjesmH85bj0TcAfIo9okgwiC+RYSoRTenxvT6I1w+MyetqiyH+HrjC+yTwBdFjCzoVjbdRNrsCDPj8DILmV3JfIbJDu8ymAnJBgJETlp9dIN585SWmNMIUBqIfC/KM4fK7edlmA3zkeMcxf2925FXvbaLJa2YXoz3hCeUUcuYdStkgc+h19DFA==
# -*- 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
40fd5fe76bd67f9e320c6f662bf309fe173629397c73282a5c31f8c4f80b6198 : WAPT/control
ba401cac105d603ac5ab3c3769e77ea42f832031f322613e0580dd946f2240d8 : WAPT/icon.png
76598a24cd80ef54c35fd7855f0f8f942e2d514dd9b99d8d8e6f7d9462de8014 : crowdsec-firewall-bouncer-iptables_0.0.30_amd64.deb
9adef3b77d5504e5d9dd4ac6c50caa972559d3dbd9810ba0e852e8f54e82ee7a : crowdsec_1.6.3_amd64.deb
5192a30757e8d9273199650db89218f49244b272d04980afe286422d4892f535 : luti.json
5b4f87531f7e5bde27a6a7b3a8641f8ec493321bb5bdfc728b6d022ff9a9186c : setup.py
338de3a2739c037c3e9c75ef8c93f7e4655c5e901ef4795fc2c9efc9e233bfc8 : update_package.py