tis-unbound

1.22.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
tis-unbound icon
  • package : tis-unbound
  • name : Unbound
  • version : 1.22.0-1
  • categories : System and network
  • maintainer : WAPT Team,Tranquil IT,Amel FRADJ,
  • installed_size :
  • editor :
  • licence : opensource_free,wapt_private
  • signature_date : 2024-10-22T09:00:41.000000
  • size : 26.89 Mo
  • locale :
  • target_os : windows
  • impacted_process :
  • architecture : x64
package           : tis-unbound
version           : 1.22.0-1
architecture      : x64
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      : dcbc818b-3976-4669-aa58-52dd49a5ace5
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 25c3e76c29bfbb86859f4f77f8705aaf45725db8a9df83f512f857a11a33794e
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-10-22T09:00:41.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         : AeFmNtwYbhole+Q/ARZnCQnQlKRekot5oyathQCEGkAXFTsA51OkW1e9aOJG/+hg4OSopQ8AW3+QWWIKq2qjEVceEsKbDIOhvto2h2944bsgoY2N5kIn+VKpeEaOqeCGjkJ2QnZWAhAvR1Ox9x00D+5LFqDP+8rJXSHnSVfcZKDY7nyLPby/9WXpZ1kRBhgTe+uEewWm8GB9gyvpl08Pd54yAm0lplDROVPDAnSwqg5FSSwwg5fwx6wgwtUvOilZk53QQ5zikO/jj+rJMMt+O+jFhK3q2M3LS/iLCk5ufVB6cRrsXDsLEncOeYDqHYangxIdWjQAEW1PJuExSYu1JA==
# -*- coding: utf-8 -*-
from setuphelpers import *

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
   "key":"Unbound",
   "name":"Unbound",
   "version":"1.21.0",
   "install_date":"",
   "install_location":"",
   "uninstall_string":"\"C:\\Program Files\\Unbound\\uninst.exe\"",
   "publisher":"NLnet Labs",
   "system_component":0,
   "win64":true
  }

"""
# 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())
# -*- 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+)\.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 == "x64":
            latest_bin = "unbound_setup_%s.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()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
2fb67b3f1019f0df31f2682338a332908941b6086c7ecbd0c114e7009cc210bf : WAPT/control
25c3e76c29bfbb86859f4f77f8705aaf45725db8a9df83f512f857a11a33794e : WAPT/icon.png
6f3691f664f7d906f8faae9158338c7fe95bd5579991f57ffc9cd23c4d88d79c : luti.json
c2b83ecb650f3c7788b240e5437427f62dc33b2a98c9d7e73f9a79f9f99ff1c3 : setup.py
6084fb97325ba44ac84420d3b389faf073d99504ed8ce85cacbabfbb1a1fbbef : unbound_setup_1.22.0.exe
b8e9847e48402dc7add4208130910ad5d7e1fdbd2d7f8876100d1e61c11bd5a7 : update_package.py