universal radio hacker
Silent install package for universal radio hacker
2.10.0-1
- package: tis-universal-radio-hacker
- name: universal radio hacker
- version: 2.10.0-1
- maintainer: Amel FRADJ
- licence: GPL-3.0 license
- target_os: windows
- architecture: x64
- signature_date:
- size: 48.78 Mo
- homepage : https://github.com/jopohl/urh
package : tis-universal-radio-hacker
version : 2.10.0-1
architecture : x64
section : base
priority : optional
name : universal radio hacker
categories :
maintainer : Amel FRADJ
description : Universal Radio Hacker: Investigate Wireless Protocols Like A Boss
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Universal Radio Hacker : étudier les protocoles sans fil comme un chef
description_pl : Uniwersalny haker radiowy: badaj protokoły bezprzewodowe jak szef
description_de : Universal Radio Hacker: Untersuchen Sie Wireless-Protokolle wie ein Boss
description_es : Universal Radio Hacker: Investiga los protocolos inalámbricos como un jefe
description_pt : Universal Radio Hacker: Investigar protocolos sem fios como um chefe
description_it : Hacker radiofonico universale: indagare i protocolli wireless come un capo
description_nl : Universele radiohacker: onderzoek draadloze protocollen als een baas
description_ru : Универсальный радиохакер: исследуйте беспроводные протоколы как босс
audit_schedule :
editor :
keywords :
licence : GPL-3.0 license
homepage : https://github.com/jopohl/urh
package_uuid : 32cd3574-a563-443d-a495-d4f02d7c4691
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 6afc5f0f9af3381b788fbe2c2f62a87d162522cf8678cb214a968853557e2742
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-12-31T11:01:55.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 : g06QO6kGNCp+Kv8V1FexU+W1TI3n6dZvVM47tVu4FgrJG8V28diIPkpE/9+wxXMWGRmRN5g/dpKgEOykgJyJvxQDmvAxELErK+bOQXKSBPq4iCkZcGB2cJTjjjpqmm0dcNF7Yp2ZRioD+uvCLTbc9VY3vFcYg4vZiXSlH7MCcOkt4Qo8JmBycu2B8Vgyafbn9E+p+43uOEMGFHHLP5FbQtt/+4mZuh7jDvoOHxEU7A0nZt0XXLOxJxcAPObiOWNfmw5hvlbkQRZJGHeMdIol5ns+miENjkNMplPWBNLdB4Yn+aDg36+iVHc4OUoRSfUGkcxlpMAGQkcuZfqF8N70Rg==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name = glob.glob('Universal.Radio.Hacker-*-x64.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/VERYSILENT',
key='{8A0E36A6-DE56-46B8-BCC3-C16D1BC759CC}_is1',
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()
dict_arch = {
"x64" : "-x64.exe",
"x86" : "-x86.exe"
}
git_repo = "jopohl/urh"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith(".exe") and dict_arch[control.architecture] in download["browser_download_url"]:
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v", "")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl,filename,proxies=proxies)
#nettoyer les fichiers temporaires
for f in glob.glob('*.exe'):
if f != filename:
remove_file(f)
version = get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
be4cad1798bcbb6c18fc5a86b1c63f4432686627c5794415d90c0e6b88ae0899 : Universal.Radio.Hacker-2.10.0-x64.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f05311afeeeba6d34e112742f24a593436726e698f31a955c9a6017f8675efa4 : WAPT/control
6afc5f0f9af3381b788fbe2c2f62a87d162522cf8678cb214a968853557e2742 : WAPT/icon.png
25a76274da7d687f3c2f52c8b53cf0411316f6f9ff3a69eb586831d3787196b8 : luti.json
501cd1626a5c36c8f148744072a3c6e688d707540e1818db40bcebf49313a063 : setup.py
0aea02e02a20bc559b9ce60951fab44e07d26cb29a9cb33a1ffc19bc661d213d : update_package.py