tis-proxyman-portable
2.18.0-2
Modern, powerful HTTP debugging proxy tool
579 downloads
Download
See build result See VirusTotal scan

- package : tis-proxyman-portable
- name : proxyman
- version : 2.18.0-2
- categories :
- maintainer : Amel FRADJ
- editor :
- licence : MIT license
- locale :
- target_os : windows
- impacted_process :
- architecture : x64
- signature_date : 2024-11-19 15:00
- size : 95.95 Mo
- homepage : proxyman.io/
package : tis-proxyman-portable
version : 2.18.0-2
architecture : x64
section : base
priority : optional
name : proxyman
categories :
maintainer : Amel FRADJ
description : Modern, powerful HTTP debugging proxy tool
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Outil proxy de débogage HTTP moderne et puissant
description_pl : Nowoczesne, wydajne narzędzie proxy do debugowania HTTP
description_de : Modernes und leistungsstarkes Proxy-Tool für HTTP-Debugging
description_es : Moderna y potente herramienta proxy de depuración HTTP
description_pt : Ferramenta proxy de depuração HTTP moderna e poderosa
description_it : Strumento proxy moderno e potente per il debugging HTTP
description_nl : Modern, krachtig hulpprogramma voor HTTP debuggen
description_ru : Современный, мощный прокси-инструмент для отладки HTTP
audit_schedule :
editor :
keywords :
licence : MIT license
homepage : proxyman.io/
package_uuid : 6fa8807b-2ef3-4d7d-aa9f-d078e238a69d
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 53238132dd0cf55e6d0a14fbcbba7179427995dfb82f3cf987a8cd520a753ee6
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-11-19T15:00:10.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 : NRqaYTpoB5AuV6xHHK2FMDFPehn9pqhhem7geyBZUA8jWFH7SfTiAXQeX+5Fv/WbuBRJiUw8LuLOpWcCqtPrmPBDN5hTOzNoXqR5lM2eEzIp2PBLtlnD5GYn9gxVF9HmnxNDocTpKasKstljI3EDBpPxo2oL/U+JhZu1e3pcpfITw47Q1jE84mYH07xH9MqXXOwm21ITfSvAf0Xesjc1PmSLAmasgF1TDAv2dESSLbDA15WCw/No+bZkgyItG2krpTTmZXrcCIddYEzeHbjAhA1qfDtZQB7R1Zn2fLNggUWkFtMrC4HJHvKgKF67FKMDT/sJQLdBmMFox0JhZtZm/Q==
# -*- coding: utf-8 -*-
from setuphelpers import *
import glob
import shutil
import os
app_name = "Proxyman"
app_dir = makepath(programfiles, app_name)
userprofile = os.environ['USERPROFILE']
source_install_dir = makepath(userprofile, "AppData", "Local", "Programs", "proxyman")
def install():
bin_name = glob.glob('*.exe')[0]
app_path = makepath(app_dir, bin_name)
# Installing software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir) and force:
remove_tree(app_dir)
mkdirs(app_dir)
run(f'"{bin_name}" /S')
# Copying all files from the installation directory to Program Files
if isdir(source_install_dir):
shutil.copytree(source_install_dir, app_dir, dirs_exist_ok=True)
# Creating custom shortcuts
create_desktop_shortcut(app_name, target=makepath(app_dir, "Proxyman.exe"))
create_programs_menu_shortcut(app_name, target=makepath(app_dir, "Proxyman.exe"))
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
for uninstall in installed_softwares('Proxyman'):
uninstall_string = uninstall.get("uninstall_string", "")
print(f"Uninstalling Proxyman: {uninstall_string}")
run(f"{uninstall_string} --uninstall --uninstall -s")
wait_uninstallkey_absent(uninstall['key'], max_loop=600)
if isdir(app_dir):
remove_tree(app_dir)
# Removing shortcuts
remove_desktop_shortcut(app_name)
remove_programs_menu_shortcut(app_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "ProxymanApp/proxyman-windows-linux"
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") :
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()
6c3e003a72b89726fed8d33ac758f3cbcc0dce6329677e7e4437dfbb6aa97099 : Proxyman.Setup.2.18.0.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
6d730e0f666899400b990f4991241bbd917ee3fad471b056b881847eabbae9b8 : WAPT/control
53238132dd0cf55e6d0a14fbcbba7179427995dfb82f3cf987a8cd520a753ee6 : WAPT/icon.png
6f9e82b9ea26b43bd6f183db9fdc9e4407013143dbc9b4aff3c9c4615523bd56 : luti.json
58735aa1a33150f2cc343ff9764e1df9ca30e614fdccb40938b82d9de2b08d62 : setup.py
a64cf88ff81690f08b3d518d1b4b66f876d440bb85a6b9f74608e2b72c9d1124 : update_package.py