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: x64
  • signature_date:
  • size: 8.83 Mo

package           : tis-openrsat
version           : 0.4.115
architecture      : x64
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      : 1d98f36d-5306-4293-a64e-40d0bb65b3fb
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-03T15:06:31.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         : V1n40oLQbDBQNBsKUEK195Y5tvKZuOo430TZ20vN6mskoR6j9uBN8y058iC4E/bnEpQJo8xSwV8+3EQ/nzOlKYWMRnNMOfdYYYInjOXy1vKP7p1FrV0GyWfeSgI1qjGLhxLZk8pMn7F9NoXTNAcgx9C7eFLJTixPJRL6KYjB1HMHFofYjqMGVLCm6fflTqJdImui8B99TkNPyggjpoVHaTgueIqViisCZtBHdRy/Y3Y/fU9/rJKWtW9JQ96OuG084PeVf4XQ4QE/3o17jmMvixOnSmqJbW4b5VTUumDG3xZ+ZBaHR/k4k0Tunm8mhG4cHozkVg87l88iHqmB81B1Sg==

# -*- 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 'x64' 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()

a1eac1117b1b83a916197a7f5a2d7b02ac32db16865c31018fa0d6add1063de6 : OpenRSAT-darwin-x64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
d15fb2ac3a9ec14dfa85301d84ebc264e5eff1af97cef448eadf5b7139eedace : WAPT/control
03ea977bb46ee771b0e00d075fd36c1b185129a40260935db691719e6f42483d : WAPT/icon.png
622aebdc7fdd71f4cb62388430a5c7aea3286dc596fec1d720dc86d2a8a1e2f4 : WAPT/icon_1024.png
8ba76e99dcbb857ef6a63a1ac9da887017bb9d7a9c75d301a7d64ba6364efec8 : luti.json
a14f0b026f8954813fb1162a5eb5d9455e05bb2fb2b7ea3336c87be3d60cb58e : setup.py
6d08295718cfb05a55e551f75704e40e696c9bac50690d03d900f7e18cd36365 : update_package.py