
- 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: redhat_based
- impacted_process: ipscan
- architecture: x64
- signature_date:
- size: 1.95 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 : 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 : e73c3d79-418d-40d2-a90b-6d78d710eec6
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-24T13:04:47.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 : lWGIq8273kxgezYZM9Gkpy/40a/qlMNF2bt3LLQTKJkhPUtEqE9GdxPMSVocnXyKFLncBG/zRceJ3XudiBkWapc80EqijwDg7onA9NG5PNkJiUEhzYk+I0tWo7fxDt70IB34AgLIskP8fBDx9woWbV2xChujN1xJAk5rbjqfjcflCY/FabFDi2bw6fQg/eM6rFPY/8qNIDkQhmHzCa8mOxnnGYrsvh79hP2tSX33QvqFCT8uOy8Y5Nl9/QJcKWOTWC+Yk5yjgQETqtoxdISZ8StHsi31PU6CIOBZWgdn/uVeDrw9jmteBs3Gh7HzsDqMckR9MxOX2TEWvsWKyFuCBw==
# -*- 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
086e170dd853c1c56d5c1d02f60aec0f8acfbd2b6d345be540915a3f83c807b7 : WAPT/control
d9ea8c8c02935216d5ed48b9a312c186d18e47802bfcc4f16815cc75a53216d7 : WAPT/icon.png
e8aeda7bc2ffc7d18b7957e1814e083977c5bf410ef5c3260e6ed9d44fb101fd : ipscan-3.9.2-1.x86_64.rpm
e48d8ee0807c34928a77a59390f5a2a81786aae67375104f458d32c017c9746d : luti.json
9715a12c61883143780b8c32b517991cbb08db055426152eb27a0912e0bbba72 : setup.py
7d50cb587e6ce058ffd1614f80d6bf31cc76b6964fd3ab2c3b300a75fb9f6379 : update_package.py