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

- package : tis-proxyman-portable
- name : proxyman
- version : 3.2.0-2
- categories :
- maintainer : Amel FRADJ
- editor :
- licence : MIT license
- locale :
- target_os : windows
- impacted_process :
- architecture : x64
- signature_date : 2025-09-02 01:10
- size : 103.34 Mo
- homepage : proxyman.io/
- depends :
package : tis-proxyman-portable
version : 3.2.0-2
architecture : x64
section : base
priority : optional
name : proxyman
categories :
maintainer : Amel FRADJ
description : Modern, powerful HTTP debugging proxy tool
depends : tis-vcredist2015-2022
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 : 8c6eefa6-5b9b-4f08-81c2-7fc0e7d5f931
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 53238132dd0cf55e6d0a14fbcbba7179427995dfb82f3cf987a8cd520a753ee6
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-09-02T01:10: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 : g21R32eJF/CQSY0Z/G+rRZa+Eu+070rWp797BEllIhXyjh4nFF403p+DyNzO+IDMktVOvvzeJ8wZB3dtgIh+0LEqjQ3FvQM31Yvm6wHF38GdAoHF8oxwWyzANRsDdI2cPSeco1zs0Udyax0W7MXqWGk7/A0t7Hc6B5DzZa9a/jSbPcgy9TXMTB5qBL54vthW6xOoYRIfzH+9D4WZTim3sicoAyNPMR8nUPCcKwCDyQ+GWa7ovjRNzg3yw4dDoKdC4l2aKvOG9OaCeuw2T08tWInPJYYQPOwNSmA48lcsAh9AmaKh6yr4Vl6vY4QLiK4wV3h9UcXAHfQKnsSvZT3+Jw==
# -*- 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)
while True:
try:
run(f'"{bin_name}" /S')
break
except:
if not params.get("install_with_luti", False):
raise
else:
time.sleep(10)
# 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)
remove_tree(source_install_dir)
# 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))
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()
c35b813ebfb81ded311fd14645c8fdc8dff310cdf9170fbc1792f687cdbe3dad : Proxyman.Setup.3.2.0.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
643e565c3578e03eeed3e23066669e45b0e0d6bd88a0c3de161cecaa3e41b03f : WAPT/control
53238132dd0cf55e6d0a14fbcbba7179427995dfb82f3cf987a8cd520a753ee6 : WAPT/icon.png
111b04a5608362bfec6aaa58e19d9ae501286542d79c2858b7e2232d75477a17 : luti.json
97a60081f12105f9dce25363dbd8fe80485ce6ff926cab3aae935edb3539bc03 : setup.py
a64cf88ff81690f08b3d518d1b4b66f876d440bb85a6b9f74608e2b72c9d1124 : update_package.py