
- package: tis-angry-ipscanner
- name: Angry IP Scanner
- version: 3.9.1-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: debian(>=10),ubuntu(>=18)
- impacted_process: ipscan
- architecture: x64
- signature_date:
- size: 1.73 Mo
- installed_size: 26.77 Mo
- homepage : https://angryip.org/
package : tis-angry-ipscanner
version : 3.9.1-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 : debian(>=10),ubuntu(>=18)
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 : 68d8a41e-cd94-442e-b4f4-62aa8e70c780
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 : TSjA48xxBTRpY1kAwT0JEVF9T+or1F5KcAZ28c4tfKWPgWgWvlXDuzVNb/FbykOVpXLwVfmU1vGsJSFwQl2A2xnuIZF4YoCjjb3QJt8aNLREDFy3GFlb2zJu2j/67BWjQSJpVRodfPsfa886wpdB2n9Xz4K/NGp2KXkmoeWHMRStktdzStuIkG2G5bxYWR1wj70rzN84+T45Xm4PJ81ph7WZ/PWYQYKuZEBxO1lkblc5L00cFTrOSayBHpIirTEPSyL10ObE1BhE5cM605EKiMnX4w11Q7IpH5lD8ZX52GyeEbmjT/tJaoWF/glTA4gCDHD219UARNzrM/atxdLRwA==
signature_date : 2024-07-08T10:00:37.703502
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
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
install_deb(glob.glob("ipscan_*_amd64.deb")[0])
def uninstall():
uninstall_apt("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(>=10),ubuntu(>=18)": "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(".deb")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("*.deb"):
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()
e87ea1d20ff089f46b4b80f1af210bf4917c46fd3622e12566bbe83fc1c11f3c : setup.py
06c55120273d5901656d01a3f8769aa97db0c7ea004d1a8c54f22c3ec7b255be : update_package.py
d9ea8c8c02935216d5ed48b9a312c186d18e47802bfcc4f16815cc75a53216d7 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
8725bb17821e003e1b664fb41400477f1b52d895a6c9985841079ee79488f699 : luti.json
50f914c195773487957cbdf262fa8e866e17e715bee3418e9591b2f161a16269 : ipscan_3.9.1_amd64.deb
a11d0a8c13cffbde13e745618d0a6837bacfe238dce2be20d4b2b0865a4c533d : WAPT/control