tis-angry-ipscanner icon

Angry IP Scanner

Silent install package for Angry IP Scanner

3.9.3-1
System and network
System and network

  • package: tis-angry-ipscanner
  • name: Angry IP Scanner
  • version: 3.9.3-1
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
  • editor: Angry IP Scanner
  • licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: ipscan
  • architecture: x64
  • signature_date:
  • size: 22.15 Mo
  • installed_size: 26.77 Mo
  • homepage : https://angryip.org/

package           : tis-angry-ipscanner
version           : 3.9.3-1
architecture      : x64
section           : base
priority          : optional
name              : Angry IP Scanner
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Ingrid TALBOT
description       : Angry IP scanner is a freely available and cross-platform IP address and port scanner
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 26770370
impacted_process  : ipscan
description_fr    : Angry IP scanner est un scanner d'adresses IP et de ports disponible gratuitement et multiplateforme
description_pl    : Angry IP scanner to dostępny za darmo i wieloplatformowy skaner adresów IP i portów
description_de    : Angry IP Scanner ist ein frei verfügbarer und plattformübergreifender IP-Adress- und Port-Scanner
description_es    : Angry IP scanner es un escáner de puertos y direcciones IP multiplataforma de libre acceso
description_pt    : O Angry IP scanner é um scanner de portas e endereços IP disponível gratuitamente e multiplataforma
description_it    : Angry IP Scanner è uno scanner di indirizzi IP e porte multipiattaforma, disponibile gratuitamente
description_nl    : Angry IP scanner is een vrij beschikbare en cross-platform IP-adres- en poortscanner
description_ru    : Angry IP scanner - это свободно распространяемый и кроссплатформенный сканер IP-адресов и портов
audit_schedule    : 
editor            : Angry IP Scanner
keywords          : ip,port,scanner
licence           : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage          : https://angryip.org/
package_uuid      : 75863b16-f79c-44ad-afe9-d471cc900e56
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/angryip/ipscan/releases
min_os_version    : 
max_os_version    : 
icon_sha256sum    : d9ea8c8c02935216d5ed48b9a312c186d18e47802bfcc4f16815cc75a53216d7
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-11-15T23:00:22.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         : LM4awIztr14CbIln+JrXdaOjeCK5R//RhNmrmfpHxPxhCZtSvPkqLLPdOu8HHITyweXcjdf3U4/9KWXvgaaVahIRbwhiXS3O1hFfuaAu/x+6bNdE3pdj8dKwSgSxtPDlDeuDXdovDBx0NMQE9rU25Xf9/eNKMWbUuVSQsYQgKbupt12xGYPQpk1BhwXHM5n/gFuPr9R5s8y4f5sIYa3a+/0FIEKKaGxNMAU7tyoAOWEixwU3JyLqRsd4EJkQkztQ/nU4wP4rcaGJnvFkdSVlNDXmk7KEZ8uY0kInpCyNATYNZqCxSnmCVz+Ka82IYxl9yUBN4NWFUZVG4Bg2Mg5tjg==

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


def install():
    bin_name = glob.glob("ipscan-*-setup.exe")[0]
    install_exe_if_needed(
        bin_name,
        silentflags=" /allusers /S",
        key="Angry IP Scanner",
        min_version=control.get_software_version(),
    )

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


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    update_dict = {"windows": "setup.exe", "debian_based": "amd64.deb", "redhat_based": ".rpm"}
    api_url = "https://api.github.com/repos/angryip/ipscan/releases/latest"

    # Get data from API
    releases_dict = json.loads(wgets(api_url, proxies=proxies))
    exe_found = False  # Flag pour indiquer la découverte d'un fichier .exe
    for release in releases_dict:
        if exe_found:
            break
        for asset in releases_dict["assets"]:
            if asset["browser_download_url"].endswith(".exe") and update_dict[control.target_os] in asset["browser_download_url"]:
                url_download = asset["browser_download_url"]
                latest_bin = url_download.split("/")[-1]
                version = releases_dict["name"]
                exe_found = True  # Mettre à jour le flag pour indiquer qu'un exe a été trouvé
                break

    # Deleting binaries
    for f in glob.glob("*.exe"):
        if f != latest_bin:
            remove_file(f)

    # Downloading latest binaries
    print("Download URL is: %s" % url_download)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_download, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    control.set_software_version(version)
    control.save_control_to_wapt()

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
41f8b8aa9bb530289fb2b5c9465e1dc04ecc0b9a712603f1fe2fe5c5de7e7a9a : WAPT/control
d9ea8c8c02935216d5ed48b9a312c186d18e47802bfcc4f16815cc75a53216d7 : WAPT/icon.png
91d77c63169249e8fcdd2d912963d4d5cd143d87b65352fc62ba8113fb49f9f5 : ipscan-3.9.3-setup.exe
9beabfa458d945fe1d6c2228dde115e6ca3ae16984dd338b4e7640a8e48fcaf9 : luti.json
f19b5438d7fcb36daa0e1a24e1b865e3ae5d1dbf5053614bf1103dadabe82fb1 : setup.py
51a245547c4fe45ad6f34c330ba2fbfa62254859649d8f02c6d6bc3b55996143 : update_package.py