tis-xpipe icon

XPipe

Silent install package for XPipe

19.1.0.0-1

Preprod packages are packages built on LUTI. They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.

  • package: tis-xpipe
  • name: XPipe
  • version: 19.1.0.0-1
  • maintainer: Amel FRADJ
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 170.57 Mo
  • homepage : https://xpipe.io/

package           : tis-xpipe
version           : 19.1.0.0-1
architecture      : x64
section           : base
priority          : optional
name              : XPipe
categories        : 
maintainer        : Amel FRADJ
description       : Hub for centralized connections (SSH, PowerShell, Dockers, etc.) and remote system administration
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Hub pour centraliser des connexion (SSH, PowerShell, Dockers, etc...) et administrer des système à distance
description_pl    : Hub do centralizacji połączeń (SSH, PowerShell, Dockers itp.) i administrowania zdalnymi systemami
description_de    : Hub, um Verbindungen zu zentralisieren (SSH, PowerShell, Dockers, etc.) und Systeme aus der Ferne zu verwalten
description_es    : Hub para centralizar conexiones (SSH, PowerShell, Dockers, etc.) y administrar sistemas remotos
description_pt    : Hub para centralizar ligações (SSH, PowerShell, Dockers, etc.) e administrar sistemas remotos
description_it    : Hub per la centralizzazione delle connessioni (SSH, PowerShell, Docker, ecc.) e l'amministrazione di sistemi remoti
description_nl    : Hub voor het centraliseren van verbindingen (SSH, PowerShell, Dockers, enz.) en het beheren van externe systemen
description_ru    : Концентратор для централизации подключений (SSH, PowerShell, Dockers и т. д.) и администрирования удаленных систем
audit_schedule    : 
editor            : 
keywords          : 
licence           : 
homepage          : https://xpipe.io/
package_uuid      : 8e63bdae-fca9-4087-9d6b-bac1df9239ef
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 1922a912047a3e311d8e87c77ea4a4fbce9f31baf03f32d178c14d7898948d86
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-11-19T16:38:04.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         : pckBeW8T6bv4MQWusZQ4PwCYGyCe1+97HmFP8nxIMK6SS1wSHuR5XILMJooKGHfab28BFfQyEV59t4T0mMqvHeq7xD9VEtFBZ5FL7m7PzbXvcfIKvrUaDFMbanRbVHQnl3MV6s7dtwwnyExSWwSc03dKNptR5yMzD7a2W7BBrLHi+W/OzhaiQcgjXVgly9hIJrp4eEogQu8itomkzdeGIYAgo1O3EVTJsBe3QxKdywkQKs9VV+sBoH5jqxFcGDvUvi7R/v5Q9Pddtr7AIDfO9gI+QcSbok30MCjCtDOA1NlCI+zHb/c++7ocGQw3yGBCFf1zhx8SFnB8tzzQz01N3g==

# -*- 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('xpipe-installer-windows-x86_64.msi')[0]
    # Installing the software
    
    install_msi_if_needed(bin_name)



# -*- 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()
        
    git_repo = "xpipe-io/xpipe"
    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('x86_64.msi'):
            url_dl = download["browser_download_url"]
            version = json_load["name"]
            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('*.msi'):
        if f != filename:
            remove_file(f)
    version = get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e9857b2af5eb987ae0e052e750ccf60b3269691d0da70460b9e3040fd281f03e : WAPT/control
1922a912047a3e311d8e87c77ea4a4fbce9f31baf03f32d178c14d7898948d86 : WAPT/icon.png
93f60f80bc7289b3e843070d2f978af907e58e7873176b1ceeebe895adffb5a2 : luti.json
4e235d1e432a9b58896294f2e50252bdd9ccecee680c4ab5e4aaf704f0e9cdb6 : setup.py
c56a94f05d416129143964139a8a434be2e258584fc0517ab53079b7c99521da : update_package.py
8052b3a4313856dd009d5e20ee1129931b023c22415fc5b1c6ecc83b063de287 : xpipe-installer-windows-x86_64.msi