tis-httpmaster-professional-edition icon

HttpMaster PRO

Silent install package for HttpMaster PRO

6.2.9-1
Utilities
Utilities

  • package: tis-httpmaster-professional-edition
  • name: HttpMaster PRO
  • version: 6.2.9-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
  • licence: proprietary_restricted,wapt_private
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 7.50 Mo

package           : tis-httpmaster-professional-edition
version           : 6.2.9-1
architecture      : all
section           : base
priority          : optional
name              : HttpMaster PRO
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ,
description       : PROFESSIONAL SOFTWARE TOOL FOR TESTING WEB APPLICATIONS
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : OUTIL LOGICIEL PROFESSIONNEL POUR TESTER LES APPLICATIONS WEB
description_pl    : PROFESJONALNE NARZĘDZIE DO TESTOWANIA APLIKACJI INTERNETOWYCH
description_de    : PROFESSIONELLES SOFTWARE-TOOL ZUM TESTEN VON WEBANWENDUNGEN
description_es    : HERRAMIENTA INFORMÁTICA PROFESIONAL PARA PROBAR APLICACIONES WEB
description_pt    : FERRAMENTA DE SOFTWARE PROFISSIONAL PARA TESTAR APLICAÇÕES WEB
description_it    : STRUMENTO SOFTWARE PROFESSIONALE PER IL TEST DELLE APPLICAZIONI WEB
description_nl    : PROFESSIONEEL SOFTWAREPROGRAMMA VOOR HET TESTEN VAN WEBAPPLICATIES
description_ru    : ПРОФЕССИОНАЛЬНЫЙ ПРОГРАММНЫЙ ИНСТРУМЕНТ ДЛЯ ТЕСТИРОВАНИЯ ВЕБ-ПРИЛОЖЕНИЙ
audit_schedule    : 
editor            : 
keywords          : 
licence           : proprietary_restricted,wapt_private
homepage          : 
package_uuid      : 6a4990ca-f59c-4ce1-9324-040555a73c07
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : d94502e98af9d58fdd844d84411cedca83ea27341bd8ffdbe5bddacd6900863c
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-04-14T16:43:32.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         : ud+I2X0WrrIauoJ/nAEDzQiyNO0DKsx9jXYlAw9PZcX13M+ggCyC/IEZieaLcke6gfn9a2oi0CJyP2CCygJFKQAQTB/JIDhM/TfbgyN1jO+vpRLtdwoJTpL3K/KmME/J+3pb3lcntBIA6w3cjyKgIYhWy+lJnznuwgiJTu/JckgiWmbbdSZvD9sFcrAF66kC8IEJAMB7I22jysoE5JZsY0ZXb5PQH+sN6nVnXLFGq6veZPRxDARTdGSFk1OFw84S+FpEeq2N86RswulLV6xwFL7uf5CQnYLMxOjU4PaLDz6oBjXYd8LYsY0/y1sBEWPx4AzRbpuXRsyI6r7x0PA6tg==

# -*- 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("httpmaster*.msi")[0]
    # Installing the software
    
    install_msi_if_needed(bin_name)

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




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

  
    url_base = "https://www.httpmaster.net/download"
    response = requests.get(url_base,allow_redirects=True, proxies=proxies)
    # Extract the correct div using bs_find_all
    divs = bs_find_all(response.text, "div","class","container content", proxies=proxies)
    msi_file = None
    for div in divs:
        if msi_file:
            break
        links = div.find_all('a', href=True)
        for link in links:
            if link['href'].endswith('.msi'):
                href = link['href']
                msi_file = href
                download_url = "https://www.httpmaster.net" +msi_file
                latest_bin = msi_file.split('/')[-1]
                version = latest_bin.split('_')[-1].rsplit('.msi')[0]
                break


    # Downloading latest binaries
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
        package_updated = True
    else:
        print("Binary is present: %s" % latest_bin)


    # Deleting outdated binaries
    for f in glob.glob('*.msi'):
        if f != latest_bin:
            remove_file(f)

            
    version = get_version_from_binary(latest_bin)
    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()    
        

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5d6513dab2db74cb94806c524134fcb2a07434d8b050cc0c060060fb5ffa20df : WAPT/control
d94502e98af9d58fdd844d84411cedca83ea27341bd8ffdbe5bddacd6900863c : WAPT/icon.png
5a6a14e4e37bb7396b1e2ad402b330d69acf69f9d3398d3886ed3130c8dac700 : httpmaster_6.2.9.msi
eb67992300a33f76b84b19670497e9a59f2239e40ac5839cc041c02e55c91e7a : luti.json
9d898beaf6e67ba5c015a0de4242a8b37a0bca819865f75c4804160661ba3dc1 : setup.py
6d14b0cb669a3702d3eaeb64ed12b8c2a46459476a4c5c5e9fb6e5daf46ee656 : update_package.py