tis-angry-ipscanner icon

Angry IP Scanner

Silent install package for Angry IP Scanner

3.9.2-1

  • package: tis-angry-ipscanner
  • name: Angry IP Scanner
  • version: 3.9.2-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: 19.38 Mo
  • installed_size: 26.77 Mo
  • homepage : https://angryip.org/

package           : tis-angry-ipscanner
version           : 3.9.2-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      : 1a752a86-50b7-4100-869a-6b5faba5e204
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-08-25T09:03:24.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         : j4wc6khNl/DB8QOjnINk6jgyZturuTt9hxI8iL8H2ZhhF6nkF2WHfDEVDUxraiVOIkb38H8g3GOmZeRa7g3cx99HBbekCbQ6zddPEjZgP0lyBAOvX5Rlet5npbTV+mq/sKuqBuYNE/spDWmFvkFT8NyJu983Cwkj0GXIA0D/SDzQqFRIJMUsEvxg3xuYAgivJPcJ8c8t0olkMn1+2NRhRdbCfNpJxtoDR1rDK/m32XoIqCD5Lx6hMwpaNbqnhJ4V0DNCV9dtu7TnbRyZ14/2tvGN/dACnwGHZgx5WQuIWSaMr1rtFOBpg84s96BJlwAs2YZCXVCE5Ft0DY3colWHHg==

# -*- 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
e08d70e0f5d478c1b933d6ae3fe24f6f0502fb754ef42b62c434ab993ef7e749 : WAPT/control
d9ea8c8c02935216d5ed48b9a312c186d18e47802bfcc4f16815cc75a53216d7 : WAPT/icon.png
324c97b0e1c84382c3d059aaea39eb4dbc9cdeb9ee631a7d31c1129f983b867a : ipscan-3.9.2-setup.exe
244f48c91e1bc64b8c7c633d01389ce3ac44dab2b0158b8282812e323b09f540 : luti.json
f19b5438d7fcb36daa0e1a24e1b865e3ae5d1dbf5053614bf1103dadabe82fb1 : setup.py
51a245547c4fe45ad6f34c330ba2fbfa62254859649d8f02c6d6bc3b55996143 : update_package.py