tis-openrsat icon

OpenRSAT

Paquet d’installation silencieuse pour OpenRSAT

0.4.115
Utilities
Security
System and network
Utilities
Security
System and network

  • package: tis-openrsat
  • name: OpenRSAT
  • version: 0.4.115
  • categories: Utilities,Security,System and network
  • maintainer: WAPT Team,Tranquil IT,Louis Persin,Thomas Prud'homme
  • locale: all
  • target_os: macos
  • architecture: arm
  • signature_date:
  • size: 8.49 Mo

package           : tis-openrsat
version           : 0.4.115
architecture      : arm
section           : base
priority          : optional
name              : OpenRSAT
categories        : Utilities,Security,System and network
maintainer        : WAPT Team,Tranquil IT,Louis Persin,Thomas Prud'homme
description       : 
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : macos
min_wapt_version  : 2.3
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      : 5441d618-30c1-481c-97c3-707df2994262
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 03ea977bb46ee771b0e00d075fd36c1b185129a40260935db691719e6f42483d
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-12-03T14:05:51.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         : tDV6ZYDDCnCFQGAJQowTvf3rS/XVIQpV5O2DcDOQjXld9ojdMZdEzIa0E463mE7Yp+qjqhdz25aNQBvqkUvkGvOH1h8oiuGmRHcP1FfvdcWbSvZCyMm9JsgUc9edV2HomTaI9pNa924F7BtQqIB/lWIMaUnFYGQqhX3NU2Nx/AkXvndcYjhVkrD1hAWilCrN6PIJhrX9xtLLzdkSaEvoXGm5yegjmGyAe5kGqAjO4OfWSXRpFHvs3Gvp4ij6/QDgy7PIcwEO+fWKFctyJAJjxidSBBw8oRo8ad1y/krglhGQE1U/Rb7RLqMqVVLsPlD52cwwr04gyF5OqTml7aP29w==

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

path = '/Applications/OpenRSAT.app'
name = 'OpenRSAT'

def install():
    if isdir(path):
        remove_tree(path)

    for f in glob.glob('OpenRSAT*.dmg'):
        install_dmg(f)

def uninstall():
    if isdir(path):
        remove_tree(path)


def audit():
    if not isfile(f"{path}/Contents/MacOS/{name}"):
        print("erreur file not found")
        return "ERROR"
    else:
        return "OK"

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

def update_package():
    # Declaring local variables
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()

    api_url = "https://api.github.com/repos/tranquilit/openrsat/releases/latest"

    # Get data from API
    releases_dict = json.loads(wgets(api_url, proxies=proxies))

    url_download = []
    for asset in releases_dict["assets"]:
        if 'darwin' in asset["browser_download_url"] and 'arm' in asset["browser_download_url"]:
            url_download.append(asset["browser_download_url"])
            break

    # Downloading latest binaries
    for url in url_download:
        print("Download URL is: %s" % url)
        latest_bin = url.split('/')[-1]
        if isfile(latest_bin):
            remove_file(latest_bin)
        print("Downloading: %s" % latest_bin)
        wget(url, latest_bin, proxies=proxies)

    version = releases_dict['tag_name'][1:]

    control.set_software_version(version)
    control.save_control_to_wapt()

cd154eadc6e75369f0294339dcc42a9ee8c9230f6975c8bb2dfd94ccd35818bd : OpenRSAT-darwin-arm.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
38e0a1c6383bce948380835666d407d575c1013cd5d6497554956077e84dff62 : WAPT/control
03ea977bb46ee771b0e00d075fd36c1b185129a40260935db691719e6f42483d : WAPT/icon.png
622aebdc7fdd71f4cb62388430a5c7aea3286dc596fec1d720dc86d2a8a1e2f4 : WAPT/icon_1024.png
9908cee4bcc264abf4eef1023210ddd2735c8983c7f1af9be0d02731ee8b6e4c : luti.json
bd319e162a4c415bd19ce265f762c5a5caa262c37b7d8cb549a485297d5b21e7 : setup.py
cb556846f0573045f3061e9723e5cd19885fac0addff7835ad5e7105bbab0da6 : update_package.py