tis-sandboxie-plus icon

Sandboxie-Plus

Paquet d’installation silencieuse pour Sandboxie-Plus

1.16.5-1
Internet
Internet

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-sandboxie-plus
  • name: Sandboxie-Plus
  • version: 1.16.5-1
  • categories: Internet
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
  • licence: opensource_free,GPL-3.0,wapt_public
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 23.68 Mo
  • homepage : Sandboxie-Plus.com

package           : tis-sandboxie-plus
version           : 1.16.5-1
architecture      : x64
section           : base
priority          : optional
name              : Sandboxie-Plus
categories        : Internet
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ,
description       : A process sandbox lets you manage and limit a process's access to your data
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Un sandbox de processus permet de gérer et de limiter les autorisations d'accès d'un processus à vos données
description_pl    : Piaskownica procesu umożliwia zarządzanie i ograniczanie uprawnień dostępu procesu do danych
description_de    : Eine Prozesssandbox ermöglicht es, die Zugriffsrechte eines Prozesses auf Ihre Daten zu verwalten und zu beschränken
description_es    : Un sandbox de procesos le permite gestionar y limitar las autorizaciones de acceso de un proceso a sus datos
description_pt    : Uma área restrita de processos permite-lhe gerir e limitar as autorizações de acesso de um processo aos seus dados
description_it    : Una sandbox di processo consente di gestire e limitare le autorizzazioni di accesso di un processo ai dati
description_nl    : Met een processandbox kun je de toegangsautorisaties van een proces tot je gegevens beheren en beperken
description_ru    : Песочница процессов позволяет управлять и ограничивать полномочия доступа процесса к вашим данным
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,GPL-3.0,wapt_public
homepage          : Sandboxie-Plus.com
package_uuid      : 52f12b6d-4213-4454-a684-d66bda33a26a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : b69bff931d5e57e138f972c26e868c19e87e4b08c608cde0f89ebc3449609bd2
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-11-04T18:52:06.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         : i558XZysFazUAi07qng3vmPBCEo2/ZPaFEgq68eiqpWpgwAE3MhYvIfLZ+pHvBcrAb0e4CBx7yTxfi5cfVCj0oWfc8cy/xbUHmOiNKs3yQsRRZyuUPwOoylshZMLiWj+NAYzYjQ9E1nvkHTr+FjW7vT2yK78WYGUWreUVyo7Hu1/oqX6ifRtJ7BxffDHLprqe0ly+KUDNRfI1j5+t2fu8AFNlqHByVpv6w9P4ONJSHfhKWNPVo0PMRfC1QsSag1iDxNSbOHJ2Yh7N5k/AzC5hYT/vv8jSMg1Uj09WqXYQOmVFVar3keK+wXENQnJXUTghpoLDYV5CXDC7E3a+j3BpA==

# -*- 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('Sandboxie-Plus-*.exe')[0]
    # Installing the software
    
    install_exe_if_needed(bin_name,
        silentflags='/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-',
        key='Sandboxie-Plus_is1',
        min_version=control.get_software_version(),
    )



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

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()
    dict_arch = {
        "x64" :"Sandboxie-Plus-x64",
        "x86" : "Sandboxie-Plus-x86"
    }
    git_repo = "sandboxie-plus/Sandboxie"
    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()

055fefc4f3ef7b45c3d07f0ae4bb083fdda148c388a4bce0154a47650eff2856 : Sandboxie-Plus-x64-v1.16.5.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
6cf110b684fe6ac2c0b8f759c98074d77917b8bcecc36117623f2afb234995e4 : WAPT/control
b69bff931d5e57e138f972c26e868c19e87e4b08c608cde0f89ebc3449609bd2 : WAPT/icon.png
8065c80f6b1f64d712ce0d998d126c62612baa3615a4823bf0dd1f93cd690350 : luti.json
2dabf9dd070fe20bbeac2b17cb905f232d62c617c7c7291783da80731ecacb4f : setup.py
f224321b6f078d681e5d819dd2c287ae49f3903dfaafd5472c0783e6bc5eec6c : update_package.py