tis-unbound
1.21.0-1
Unbound is a validation, recursive and caching DNS resolver. It's designed for speed and simplicity, with modern features based on open standards
425 downloads
Download
See build result See VirusTotal scan

- package : tis-unbound
- name : Unbound
- version : 1.21.0-1
- categories : System and network
- maintainer : WAPT Team,Tranquil IT,Amel FRADJ,
- installed_size :
- editor :
- licence : opensource_free,wapt_private
- signature_date : 2024-09-02T16:28:47.019194
- size : 26.14 Mo
- locale :
- target_os : windows
- impacted_process :
- architecture : x86
package : tis-unbound
version : 1.21.0-1
architecture : x86
section : base
priority : optional
name : Unbound
categories : System and network
maintainer : WAPT Team,Tranquil IT,Amel FRADJ,
description : Unbound is a validation, recursive and caching DNS resolver. It's designed for speed and simplicity, with modern features based on open standards
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Unbound est un résolveur DNS de validation, récursif et de mise en cache. Il est conçu pour être rapide et simple et intègre des fonctionnalités modernes basées sur des normes ouvertes
description_pl : Unbound to sprawdzający poprawność, rekursywny i buforujący resolver DNS. Został zaprojektowany tak, aby był szybki i prosty oraz zawierał nowoczesne funkcje oparte na otwartych standardach
description_de : Unbound ist ein validierender, rekursiver und Caching-DNS-Resolver. Er ist auf Schnelligkeit und Einfachheit ausgelegt und enthält moderne Funktionen, die auf offenen Standards basieren
description_es : Unbound es un resolvedor DNS de validación, recursivo y de caché. Está diseñado para ser rápido y sencillo, e incorpora funciones modernas basadas en estándares abiertos
description_pt : O Unbound é um resolvedor de DNS de validação, recursivo e de cache. Foi concebido para ser rápido e simples, e incorpora caraterísticas modernas baseadas em normas abertas
description_it : Unbound è un resolver DNS di convalida, ricorsivo e con cache. È progettato per essere veloce e semplice e incorpora caratteristiche moderne basate su standard aperti
description_nl : Unbound is een validatie, recursieve en caching DNS-resolver. Het is ontworpen om snel en eenvoudig te zijn en bevat moderne functies gebaseerd op open standaarden
description_ru : Unbound - это DNS-резольвер с проверкой, рекурсией и кэшированием. Он разработан как быстрый и простой, и включает в себя современные функции, основанные на открытых стандартах
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_private
homepage :
package_uuid : ca427da8-7313-43be-844b-5da07ab6316b
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 25c3e76c29bfbb86859f4f77f8705aaf45725db8a9df83f512f857a11a33794e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : HMnhPBHuqj7F+BruOSq5sW7yDf38MdNaK8JAR6dCuKw5nrc1Va3EXkPcLeFhOYwAxbhGFPrMpadsypC4FHruzeUm2SCeDAtSHN03f65/OQ8aEb2XVFUqFdPhm4DJnJRNxphcAaihNQzrLe+vIQLhR2zgJ3IdiblCjKueHY8SryCI0qAght4hgoZ1WqSMUznfUlgsueydw/Lo/lgrBpCfYlHdL6+9WzZNFMsILWXXdqQmhCeWm9fpdA0z/LbMMxYQZLsFD1224cyK4fnwMVoVb7iGkw6kmsJv5AET9Kkh85lHYXd22L17vkFsyr08sCf1ueC5b+EukRITJJ8TGbqqrg==
signature_date : 2024-09-02T16:28:47.019194
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
# -*- 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("unbound_setup_*.exe")[0]
# Installing the software
install_exe_if_needed(bin_name, silentflags="/S", key="Unbound", min_version=control.get_software_version(),
get_version=get_version,
timeout=600,
)
def get_version(app_registry_dict):
return app_registry_dict["version"].split("-")[0]
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
import re
import requests
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
# Getting latest version from official sources
re_versions = re.compile(r'unbound_setup_(\d+\.\d+\.\d+)(?:-w32)?\.exe')
index = wgets("https://www.nlnetlabs.nl/downloads/unbound/", proxies=proxies)
for versionbutt in sorted(re_versions.findall(index), key=lambda p: (Version(p)), reverse=True):
if control.architecture == "x86":
latest_bin = "unbound_setup_%s-w32.exe" % versionbutt
download_url = "https://www.nlnetlabs.nl/downloads/unbound/%s" % latest_bin
if not requests.head(download_url, proxies=proxies).status_code == 404:
version = versionbutt
break
# remove files
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
wget(download_url, latest_bin, proxies=proxies)
control.set_software_version(version)
control.save_control_to_wapt()
3b23f42badf4bae667b46acd24f465b10662b21ecff3cd95890e0ecce6d2b79c : setup.py
: __pycache__
14dc012c2bd0d240b47bc6ac858b61908306fe195b1c19c3f6d6c09d45e1030d : update_package.py
25c3e76c29bfbb86859f4f77f8705aaf45725db8a9df83f512f857a11a33794e : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
406b3280dd5aa889b550c37901747ced954b6f6226ae26201e27451ccad403ab : luti.json
8bc5ca03670002de1c7ffb71238de8927c50cad89adddc0cb4caa97dd39c0663 : unbound_setup_1.21.0-w32.exe
5800e3f30fddfd9b82acc8bf8a5587c58d18da1c7a98f606696ad9bd15a854c7 : WAPT/control