Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ee/maintained-apps/inputs/homebrew/mozilla-vpn.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "Mozilla VPN",
"slug": "mozilla-vpn/darwin",
"unique_identifier": "org.mozilla.macos.FirefoxVPN",
"token": "mozilla-vpn",
"installer_format": "pkg",
"default_categories": ["Security"]
}
10 changes: 10 additions & 0 deletions ee/maintained-apps/inputs/winget/mozilla-vpn.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "Mozilla VPN",
"slug": "mozilla-vpn/windows",
"package_identifier": "Mozilla.VPN",
"unique_identifier": "Mozilla VPN",
"installer_arch": "x64",
"installer_type": "msi",
"installer_scope": "machine",
"default_categories": ["Security"]
}
14 changes: 14 additions & 0 deletions ee/maintained-apps/outputs/apps.json
Original file line number Diff line number Diff line change
Expand Up @@ -5370,6 +5370,20 @@
"unique_identifier": "io.mountainduck",
"description": "Mountain Duck is a mounts servers and cloud storages as a disk on the desktop."
},
{
"name": "Mozilla VPN",
"slug": "mozilla-vpn/darwin",
"platform": "darwin",
"unique_identifier": "org.mozilla.macos.FirefoxVPN",
"description": "Mozilla VPN is a virtual private network service from the makers of Firefox that encrypts your device's internet connection and hides your location."
},
{
"name": "Mozilla VPN",
"slug": "mozilla-vpn/windows",
"platform": "windows",
"unique_identifier": "Mozilla VPN",
"description": "Mozilla VPN is a virtual private network service from the makers of Firefox that encrypts your device's internet connection and hides your location."
},
{
"name": "MQTTX",
"slug": "mqttx/darwin",
Expand Down
22 changes: 22 additions & 0 deletions ee/maintained-apps/outputs/mozilla-vpn/darwin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"versions": [
{
"version": "2.38.0",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'org.mozilla.macos.FirefoxVPN';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'org.mozilla.macos.FirefoxVPN' AND version_compare(bundle_short_version, '2.38.0') < 0);"
},
Comment on lines +6 to +8
"installer_url": "https://archive.mozilla.org/pub/vpn/releases/2.38.0/mac/MozillaVPN.pkg",
"install_script_ref": "751cc04c",
"uninstall_script_ref": "c4f6b4ee",
"sha256": "2803d4b4fa5bfc9ac3beb3c248aecf7185ef8aec83c169b4d0a566926723cda0",
"default_categories": [
"Security"
]
}
],
"refs": {
"751cc04c": "#!/bin/bash\n\n# variables\nAPPDIR=\"/Applications/\"\nTMPDIR=$(dirname \"$(realpath \"$INSTALLER_PATH\")\")\n# functions\n\nquit_and_track_application() {\n local bundle_id=\"$1\"\n local var_name=\"APP_WAS_RUNNING_$(echo \"$bundle_id\" | tr '.-' '__')\"\n local timeout_duration=10\n\n # check if the application is running\n local app_running\n app_running=$(osascript -e \"application id \\\"$bundle_id\\\" is running\" 2>/dev/null)\n if [[ \"$app_running\" != \"true\" ]]; then\n eval \"export $var_name=0\"\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'.\"\n eval \"export $var_name=0\"\n return\n fi\n\n # App was running, mark it for relaunch\n eval \"export $var_name=1\"\n echo \"Application '$bundle_id' was running; will relaunch after installation.\"\n\n echo \"Quitting application '$bundle_id'...\"\n\n # try to quit the application within the timeout period\n local quit_success=false\n SECONDS=0\n while (( SECONDS < timeout_duration )); do\n if osascript -e \"tell application id \\\"$bundle_id\\\" to quit\" >/dev/null 2>&1; then\n if ! pgrep -f \"$bundle_id\" >/dev/null 2>&1; then\n echo \"Application '$bundle_id' quit successfully.\"\n quit_success=true\n break\n fi\n fi\n sleep 1\n done\n\n if [[ \"$quit_success\" = false ]]; then\n echo \"Application '$bundle_id' did not quit.\"\n fi\n}\n\n\nrelaunch_application() {\n local bundle_id=\"$1\"\n local var_name=\"APP_WAS_RUNNING_$(echo \"$bundle_id\" | tr '.-' '__')\"\n local was_running\n\n # Check if the app was running before installation\n eval \"was_running=\\$$var_name\"\n if [[ \"$was_running\" != \"1\" ]]; then\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping relaunching application ID '$bundle_id'.\"\n return\n fi\n\n echo \"Relaunching application '$bundle_id'...\"\n\n # Launch the app in the logged-in user's GUI session. Apps launched by root\n # won't register with the user's Dock/GUI, so run 'open' as the console user.\n # Use 'launchctl asuser' to bootstrap into the console user's Mach namespace\n # and GUI session — 'sudo -u' alone doesn't do this, which can cause\n # LSOpenURLsWithRole() failures even when 'open' exits 0.\n local open_status=0\n if [[ $EUID -eq 0 ]]; then\n local console_uid\n console_uid=$(id -u \"$console_user\")\n /bin/launchctl asuser \"$console_uid\" sudo -u \"$console_user\" open -b \"$bundle_id\" >/dev/null 2>&1 || open_status=$?\n else\n open -b \"$bundle_id\" >/dev/null 2>&1 || open_status=$?\n fi\n\n if [[ $open_status -eq 0 ]]; then\n echo \"Application '$bundle_id' relaunched successfully.\"\n else\n echo \"Failed to relaunch application '$bundle_id'.\"\n fi\n}\n\n\n# install pkg files\nquit_and_track_application 'org.mozilla.macos.FirefoxVPN'\nsudo installer -pkg \"$TMPDIR/MozillaVPN.pkg\" -target /\nrelaunch_application 'org.mozilla.macos.FirefoxVPN'\n",
"c4f6b4ee": "#!/bin/bash\n\n# variables\nLOGGED_IN_USER=$(scutil <<< \"show State:/Users/ConsoleUser\" | awk '/Name :/ { print $3 }')\n# functions\n\nexpand_pkgid_and_map() {\n local PKGID=\"$1\"\n local FUNC=\"$2\"\n if [[ \"$PKGID\" == *\"*\" ]]; then\n local prefix=\"${PKGID%\\*}\"\n echo \"Expanding wildcard for PKGID: $PKGID\"\n for receipt in $(pkgutil --pkgs | grep \"^${prefix}\"); do\n echo \"Processing $receipt\"\n \"$FUNC\" \"$receipt\"\n done\n else\n \"$FUNC\" \"$PKGID\"\n fi\n}\n\nforget_pkg() {\n local PKGID=\"$1\"\n expand_pkgid_and_map \"$PKGID\" forget_receipt\n}\n\nforget_receipt() {\n local PKGID=\"$1\"\n sudo pkgutil --forget \"$PKGID\"\n}\n\nquit_application() {\n local bundle_id=\"$1\"\n local timeout_duration=10\n\n # check if the application is running\n local app_running\n app_running=$(osascript -e \"application id \\\"$bundle_id\\\" is running\" 2>/dev/null)\n if [[ \"$app_running\" != \"true\" ]]; then\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'.\"\n return\n fi\n\n echo \"Quitting application '$bundle_id'...\"\n\n # try to quit the application within the timeout period\n local quit_success=false\n SECONDS=0\n while (( SECONDS < timeout_duration )); do\n if osascript -e \"tell application id \\\"$bundle_id\\\" to quit\" >/dev/null 2>&1; then\n if ! pgrep -f \"$bundle_id\" >/dev/null 2>&1; then\n echo \"Application '$bundle_id' quit successfully.\"\n quit_success=true\n break\n fi\n fi\n sleep 1\n done\n\n if [[ \"$quit_success\" = false ]]; then\n echo \"Application '$bundle_id' did not quit.\"\n fi\n}\n\n\nremove_pkg_files() {\n local PKGID=\"$1\"\n expand_pkgid_and_map \"$PKGID\" remove_receipt_files\n}\n\nremove_receipt_files() {\n local PKGID=\"$1\"\n local PKGINFO VOLUME INSTALL_LOCATION FULL_INSTALL_LOCATION\n\n echo \"pkgutil --pkg-info-plist \\\"$PKGID\\\"\"\n PKGINFO=$(pkgutil --pkg-info-plist \"$PKGID\")\n VOLUME=$(echo \"$PKGINFO\" | awk '/<key>volume<\\/key>/ {getline; gsub(/.*<string>|<\\/string>.*/, \"\"); print}')\n INSTALL_LOCATION=$(echo \"$PKGINFO\" | awk '/<key>install-location<\\/key>/ {getline; gsub(/.*<string>|<\\/string>.*/, \"\"); print}')\n\n if [ -z \"$INSTALL_LOCATION\" ] || [ \"$INSTALL_LOCATION\" = \"/\" ]; then\n FULL_INSTALL_LOCATION=\"$VOLUME\"\n else\n FULL_INSTALL_LOCATION=\"$VOLUME/$INSTALL_LOCATION\"\n FULL_INSTALL_LOCATION=$(echo \"$FULL_INSTALL_LOCATION\" | sed 's|//|/|g')\n fi\n\n echo \"sudo pkgutil --only-files --files \\\"$PKGID\\\" | sed \\\"s|^|${FULL_INSTALL_LOCATION}/|\\\" | tr '\\\\\\\\n' '\\\\\\\\0' | /usr/bin/sudo -u root -E -- /usr/bin/xargs -0 -- /bin/rm -rf\"\n sudo pkgutil --only-files --files \"$PKGID\" | sed \"s|^|/${INSTALL_LOCATION}/|\" | tr '\\n' '\\0' | /usr/bin/sudo -u root -E -- /usr/bin/xargs -0 -- /bin/rm -rf\n\n echo \"sudo pkgutil --only-dirs --files \\\"$PKGID\\\" | sed \\\"s|^|${FULL_INSTALL_LOCATION}/|\\\" | grep '\\\\.app$' | tr '\\\\\\\\n' '\\\\\\\\0' | /usr/bin/sudo -u root -E -- /usr/bin/xargs -0 -- /bin/rm -rf\"\n sudo pkgutil --only-dirs --files \"$PKGID\" | sed \"s|^|${FULL_INSTALL_LOCATION}/|\" | grep '\\.app$' | tr '\\n' '\\0' | /usr/bin/sudo -u root -E -- /usr/bin/xargs -0 -- /bin/rm -rf\n\n root_app_dir=$(\n sudo pkgutil --only-dirs --files \"$PKGID\" \\\n | sed \"s|^|${FULL_INSTALL_LOCATION}/|\" \\\n | grep 'Applications' \\\n | awk '{ print length, $0 }' \\\n | sort -n \\\n | head -n1 \\\n | cut -d' ' -f2-\n )\n if [ -n \"$root_app_dir\" ]; then\n echo \"sudo rmdir -p \\\"$root_app_dir\\\" 2>/dev/null || :\"\n sudo rmdir -p \"$root_app_dir\" 2>/dev/null || :\n fi\n}\n\ntrash() {\n local logged_in_user=\"$1\"\n local target_file=\"$2\"\n local timestamp=\"$(date +%Y-%m-%d-%s)\"\n local rand=\"$(jot -r 1 0 99999)\"\n\n # replace ~ with /Users/$logged_in_user\n if [[ \"$target_file\" == ~* ]]; then\n target_file=\"/Users/$logged_in_user${target_file:1}\"\n fi\n\n local trash=\"/Users/$logged_in_user/.Trash\"\n\n # If the target contains glob characters, expand it and move each match.\n if [[ \"$target_file\" == *[*?[]* ]]; then\n local file file_name\n local matched=false\n local i=0\n # compgen -G expands the (quoted) pattern itself, so paths containing\n # spaces glob correctly; reading line by line keeps each match intact.\n while IFS= read -r file; do\n [[ -n \"$file\" ]] || continue\n [[ -e \"$file\" || -L \"$file\" ]] || continue\n matched=true\n i=$((i + 1))\n file_name=\"$(basename \"$file\")\"\n echo \"removing $file.\"\n # The per-match counter keeps matches that share a basename from\n # overwriting each other in the trash.\n mv -f \"$file\" \"$trash/${file_name}_${timestamp}_${rand}_${i}\"\n done < <(compgen -G \"$target_file\" 2>/dev/null)\n if [[ \"$matched\" == false ]]; then\n echo \"$target_file doesn't exist.\"\n fi\n return\n fi\n\n local file_name=\"$(basename \"${target_file}\")\"\n\n if [[ -e \"$target_file\" ]]; then\n echo \"removing $target_file.\"\n mv -f \"$target_file\" \"$trash/${file_name}_${timestamp}_${rand}\"\n else\n echo \"$target_file doesn't exist.\"\n fi\n}\n\nquit_application 'org.mozilla.macos.FirefoxVPN'\nremove_pkg_files 'org.mozilla.macos.FirefoxVPN'\nforget_pkg 'org.mozilla.macos.FirefoxVPN'\ntrash $LOGGED_IN_USER '/Library/Application Support/Crash Reporter/Mozilla VPN_*'\ntrash $LOGGED_IN_USER '/Library/Logs/DiagnosticReports/Mozilla VPN_*'\ntrash $LOGGED_IN_USER '~/Library/Application Support/CrashReporter/Mozilla VPN_*'\ntrash $LOGGED_IN_USER '~/Library/Application Support/Mozilla/Mozilla VPN'\ntrash $LOGGED_IN_USER '~/Library/Application Support/mozillavpn.txt'\ntrash $LOGGED_IN_USER '~/Library/Caches/Mozilla VPN'\ntrash $LOGGED_IN_USER '~/Library/Saved Application State/org.mozilla.macos.FirefoxVPN.savedState'\n"
}
}
23 changes: 23 additions & 0 deletions ee/maintained-apps/outputs/mozilla-vpn/windows.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"versions": [
{
"version": "2.38.0",
"queries": {
"exists": "SELECT 1 FROM programs WHERE name = 'Mozilla VPN' AND publisher = 'Mozilla Corporation';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name = 'Mozilla VPN' AND publisher = 'Mozilla Corporation' AND version_compare(version, '2.38.0') < 0);"
},
Comment on lines +6 to +8
"installer_url": "https://archive.mozilla.org/pub/vpn/releases/2.38.0/windows/MozillaVPN.msi",
"install_script_ref": "8959087b",
"uninstall_script_ref": "500bade7",
"sha256": "11a270b3ee858a7e10cd49f59fb9452fa30c87b15ffaa35af6cf3851d60876f0",
"default_categories": [
"Security"
],
"upgrade_code": "{ABD1AA2B-11D7-4C4D-85EE-CC987D82A443}"
}
],
"refs": {
"500bade7": "# Fleet uninstalls app by finding all related product codes for the specified upgrade code\n$inst = New-Object -ComObject \"WindowsInstaller.Installer\"\n$timeoutSeconds = 300 # 5 minute timeout per product\n\n# MSI exit codes that indicate success. 3010 = ERROR_SUCCESS_REBOOT_REQUIRED,\n# 1641 = ERROR_SUCCESS_REBOOT_INITIATED. Treat these as success rather than failure.\n$successCodes = @(0, 3010, 1641)\n\nforeach ($product_code in $inst.RelatedProducts('{ABD1AA2B-11D7-4C4D-85EE-CC987D82A443}')) {\n $process = Start-Process msiexec -ArgumentList @(\"/quiet\", \"/x\", $product_code, \"/norestart\") -PassThru\n\n # Wait for process with timeout\n $completed = $process.WaitForExit($timeoutSeconds * 1000)\n\n if (-not $completed) {\n Stop-Process -Id $process.Id -Force -ErrorAction SilentlyContinue\n Exit 1603 # ERROR_UNINSTALL_FAILURE\n }\n\n # If the uninstall failed, bail\n if ($successCodes -notcontains $process.ExitCode) {\n Write-Output \"Uninstall for $($product_code) exited $($process.ExitCode)\"\n Exit $process.ExitCode\n }\n}\n\n# All uninstalls succeeded; exit success\nExit 0\n",
"8959087b": "$logFile = \"${env:TEMP}/fleet-install-software.log\"\n\ntry {\n\n$installProcess = Start-Process msiexec.exe `\n -ArgumentList \"/quiet /norestart /lv ${logFile} /i `\"${env:INSTALLER_PATH}`\"\" `\n -PassThru -Verb RunAs -Wait\n\nGet-Content $logFile -Tail 500\n\nExit $installProcess.ExitCode\n\n} catch {\n Write-Host \"Error: $_\"\n Exit 1\n}\n"
}
}
14 changes: 14 additions & 0 deletions frontend/pages/SoftwarePage/components/icons/MozillaVpn.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import * as React from "react";

import type { SVGProps } from "react";

const MozillaVpn = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" width={32} height={32} {...props}>
<image
Comment on lines +5 to +7
width={32}
height={32}
href="data:image/png;base64,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"
Comment on lines +6 to +10
/>
</svg>
);
export default MozillaVpn;
2 changes: 2 additions & 0 deletions frontend/pages/SoftwarePage/components/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,7 @@ import Moonlight from "./Moonlight";
import Morgen from "./Morgen";
import Mos from "./Mos";
import MountainDuck from "./MountainDuck";
import MozillaVpn from "./MozillaVpn";
import Mqttx from "./Mqttx";
import MullvadBrowser from "./MullvadBrowser";
import MullvadVpn from "./MullvadVpn";
Expand Down Expand Up @@ -1747,6 +1748,7 @@ export const SOFTWARE_NAME_TO_ICON_MAP = {
mos: Mos,
"mountain duck": MountainDuck,
"mozilla firefox": Firefox,
"mozilla vpn": MozillaVpn,
mqttx: Mqttx,
"mullvad browser": MullvadBrowser,
"mullvad vpn": MullvadVpn,
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading