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: redhat_based
  • impacted_process: ipscan
  • architecture: x64
  • signature_date:
  • size: 2.10 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         : redhat_based
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      : 69e4d6cd-2650-4d8a-be5d-3a3b951f9f95
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-12-06T17:19:45.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         : Q95hief77PLgR/lIuDHArtSgAzsC38155x8MDet0zryg0CKil5h5cSOC+4om95Gq3xjEd4jbYSyTpKJhUXCQEi5/QaVS6mgRSSYkO2Q9jArbz/5+zj+3I9F4XpukargYCuWhk7ifo7kh8pHhx9w/ctbAOZ3/GZIo5Rf0Vps/UIzy5zs/SXpypzhzqfzjOjs2dkqHzdvKWNGhxpIr/BWq+lrnkbZDUm5jNFjKEIw5cXCS6M/1eFE0YseGtYoCBlLV3L7RwzpqAQvO+12uRR+NfVdRUiMirdVl3xCCX3Rx6cvqVStmI7sxSIGh5pW7Vt6X6DStT845rfyPqmKrV53PjA==

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


def install():

    if get_distrib_linux() == 'fedora':
        install_yum(glob.glob("ipscan-*.x86_64.rpm")[0])
    else:
        install_rpm(glob.glob("ipscan-*.x86_64.rpm")[0])


def uninstall():
    uninstall_yum("ipscan")

# -*- 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
    # version = json_loads["tag_name"].replace("v", "").replace(".windows", "")
    for release in releases_dict:
        if exe_found:
            break
        for asset in releases_dict["assets"]:
            if asset["browser_download_url"].endswith(".rpm") 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("*.rpm"):
        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
1b752b9a9a774d3a63e91e2f9bcf042a3c52d5fb7a000f956ce1ee3ffc90015e : WAPT/control
d9ea8c8c02935216d5ed48b9a312c186d18e47802bfcc4f16815cc75a53216d7 : WAPT/icon.png
120c6a9e6b5aa0654b10db169baa3e654e92ff2b843ae60caa4d4c06233cc14e : ipscan-3.9.3-1.x86_64.rpm
11f1dba91b9ca7c0765a0064ff9bb719e1c6d5549f918f02d506b54052ccba0e : luti.json
9715a12c61883143780b8c32b517991cbb08db055426152eb27a0912e0bbba72 : setup.py
7d50cb587e6ce058ffd1614f80d6bf31cc76b6964fd3ab2c3b300a75fb9f6379 : update_package.py