- package: tis-mullvad-browser
- name: Mullvad Browser
- version: 14.5.4-0
- categories: Internet,Security
- maintainer: WAPT Team,Tranquil IT,Clément Baziret
- editor: Mullvad
- licence: opensource_free,cpe:/a:mozilla:public_license_2.0,wapt_public
- locale: all
- target_os: macos
- impacted_process: mullvadbrowser
- architecture: x64
- signature_date:
- size: 163.11 Mo
- installed_size: 495.32 Mo
- homepage : https://mullvad.net/fr/browser
package : tis-mullvad-browser
version : 14.5.4-0
architecture : x64
section : base
priority : optional
name : Mullvad Browser
categories : Internet,Security
maintainer : WAPT Team,Tranquil IT,Clément Baziret
description : Mullvad Browser is Tor Browser without the Tor Network - that allows anyone to take advantage of all the privacy features Tor created
depends :
conflicts :
maturity : PROD
locale : all
target_os : macos
min_wapt_version : 2.3
sources : https://github.com/mullvad/mullvad-browser/releases
installed_size : 495317957
impacted_process : mullvadbrowser
description_fr : Mullvad Browser est un navigateur Tor sans le réseau Tor - qui permet à n'importe qui de profiter de toutes les fonctionnalités de confidentialité créées par Tor
description_pl : Mullvad Browser to przeglądarka Tor bez sieci Tor - która pozwala każdemu korzystać ze wszystkich funkcji prywatności stworzonych przez Tor
description_de : Mullvad Browser ist ein Tor-Browser ohne das Tor-Netzwerk, der es jedem erlaubt, alle Vorteile der Privatsphäre zu nutzen, die Tor geschaffen hat
description_es : Mullvad Browser es el Navegador Tor sin la Red Tor - que permite a cualquiera aprovechar todas las características de privacidad que Tor creó
description_pt : O Mullvad Browser é o Tor Browser sem a rede Tor - que permite a qualquer pessoa tirar partido de todas as funcionalidades de privacidade que o Tor criou
description_it : Mullvad Browser è un browser Tor senza la rete Tor, che permette a chiunque di sfruttare tutte le caratteristiche di privacy create da Tor
description_nl : Mullvad Browser is Tor Browser zonder het Tor Netwerk - waarmee iedereen kan profiteren van alle privacyfuncties die Tor heeft gecreëerd
description_ru : Mullvad Browser - это Tor Browser без сети Tor, который позволяет любому воспользоваться всеми возможностями конфиденциальности, созданными Tor
audit_schedule :
editor : Mullvad
keywords : mullvad,browser,tor,network,privacy
licence : opensource_free,cpe:/a:mozilla:public_license_2.0,wapt_public
homepage : https://mullvad.net/fr/browser
package_uuid : e8fc549b-f366-4a41-86d4-037b3b4e8923
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : b5986b3ccc217e1bc0e9ced367ce55ef2ea8293e7d527c09be84e3c7cd6eef23
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-30T15:06:26.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 : bzWphfDvw8PZ5/CjzrG7YEkAjwmciLCS6Ju8GAN+K8nYkhnYxqxOKLOnLbqVLtzIoTEEVrLSKWBx8oVPnaJZdQEEMWAY7AW1XtShnCeV1zqs45HPE9zsEIECR8UMp0/h0cnbqxh8N3s6hJ+/XDvz/SYgv3HNVoLxc065RwFMuR1RhQiMm9BLrO38KLXBGsvQNbX+Ac9QKMdFZK1ovjKYaPuKOym0qGiKY+EYznsYZuAl43ATlQylV4WqGTdWQaMGmyLBG8wi5r9L6P7IHjNH2b1i95fR9D8vRZsTmdRsbBLwMWQRZyJwd42PPAh2UJT4B6PMWZEFvIs8bW0knwkoKA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("mullvad-browser-macos-*.dmg")[0]
install_dmg(bin_name, min_version=control.get_software_version())
def uninstall():
uninstall_app("MullvadBrowser")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
api_url = "https://api.github.com/repos/mullvad/mullvad-browser/releases/latest"
update_dict = {
"windows-x64": ".exe",
"macos-x64": ".dmg",
"debian_based-x64": ".tar.xz",
}
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = wgets(api_url, proxies=proxies, as_json=True)
version = json_load["tag_name"].replace("v", "").replace(".windows", "")
for to_download in json_load["assets"]:
if to_download["name"].endswith(update_dict[control.target_os + "-" + ensure_list(control.architecture)[0]]):
download_url = to_download["browser_download_url"]
latest_bin = to_download["name"]
break
# Downloading latest binaries
print("Latest %s version is: %s" % (control.name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
remove_outdated_binaries(latest_bin)
# Checking version from file
if get_os_name() == "Windows" and "windows" in control.target_os.lower():
version_from_file = get_version_from_binary(latest_bin)
if Version(version_from_file, 4) == Version(version, 4):
print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
else:
error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({version})")
# Changing version of the package
if Version(version, 4) > Version(control.get_software_version(), 4):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.set_software_version(version)
control.save_control_to_wapt()
# Validating update-package-sources
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
8c4e574de18bcc4ce8e330cae37eb18d8187ed0b6ab51881961968b620981b53 : WAPT/control
b5986b3ccc217e1bc0e9ced367ce55ef2ea8293e7d527c09be84e3c7cd6eef23 : WAPT/icon.png
e9b31317714d5720ed1704f6ae2d1d52c12e6074851c5a9797bb06070c3b3997 : luti.json
813c098a966f954a0b4631b14472a6bcc3a4cb269036b73da3be85492641c8bd : mullvad-browser-macos-14.5.4.dmg
dd9a03d1f8f89630e8bf06174bda14cc05639585ac18392806a02a31ad894b85 : setup.py
a4b1f7b47506e51967b7ee222800ac43a9737967ecd3310fbd08f5cee2a79f31 : update_package.py