Appearance
Downloads
We provide agent distributables for common platforms. If your platform isn't supported below, please let us know.
Linux
Linux users can install the Enclave agent using a .deb or .rpm package. Use the table below to find the appropriate download link for your platform:
| Distribution | Architecture | Agent | GUI |
|---|---|---|---|
| Debian/Ubuntu (.deb) | x86_64 | Download agent (.deb) | Download GUI (.deb) |
| Debian/Ubuntu (.deb) | ARM64 | Download agent (.deb) | Download GUI (.deb) |
| RHEL/CentOS (.rpm) | x86_64 | Download agent (.rpm) | N/A |
| RHEL/CentOS (.rpm) | ARM64 | Download agent (.rpm) | N/A |
INFO
If you'd like to install a specific version, replace latest with the version in question:
https://enclave.sidechannel.com/downloads/agent/1.12.0/enclave_linux_amd64.debAgent only installation commands
sh
curl -Lo enclave.deb https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_amd64.deb \
&& sudo dpkg -i enclave.debsh
curl -Lo enclave.deb https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_arm64.deb \
&& sudo dpkg -i enclave.debsh
curl -Lo enclave.rpm https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_amd64.rpm \
&& sudo yum install ./enclave.rpmsh
curl -Lo enclave.rpm https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_arm64.rpm \
&& sudo yum install ./enclave.rpmAgent installation with GUI
sh
curl -Lo enclave.deb https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_amd64.deb \
&& sudo dpkg -i enclave.deb \
&& curl -Lo enclave-gui.deb https://enclave.sidechannel.com/downloads/gui/latest/enclave_linux_amd64.deb \
&& sudo dpkg -i enclave-gui.debsh
curl -Lo enclave.deb https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_arm64.deb \
&& sudo dpkg -i enclave.deb \
&& curl -Lo enclave-gui.deb https://enclave.sidechannel.com/downloads/gui/latest/enclave_linux_arm64.deb \
&& sudo dpkg -i enclave-gui.debMacOS
MacOS users can install the Enclave application using a .pkg installer. .pkg installers are signed and notarized by Apple, ensuring a secure installation process. Package installers can be installed via the command line or by double-clicking the downloaded file. Use the table below to find the appropriate download link for your platform:
| Architecture | Agent | GUI |
|---|---|---|
| x86_64 | Download agent (.pkg) | Download GUI (.pkg) |
| ARM64 | Download agent (.pkg) | Download GUI (.pkg) |
INFO
If you'd like to install a specific version, replace latest with the version in question:
https://enclave.sidechannel.com/downloads/agent/1.12.0/enclave_darwin_amd64.pkgAgent only installation commands
sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/agent/latest/enclave_darwin_amd64.pkg \
&& sudo installer -pkg enclave.pkg -target /sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/agent/latest/enclave_darwin_arm64.pkg && sudo installer -pkg enclave.pkg -target /Agent installation with GUI
sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/agent/latest/enclave_darwin_amd64.pkg \
&& sudo installer -pkg enclave.pkg -target / \
&& curl -Lo enclave-gui.pkg https://enclave.sidechannel.com/downloads/gui/latest/enclave_darwin_amd64.pkg \
&& sudo installer -pkg enclave-gui.pkg -target /sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/agent/latest/enclave_darwin_arm64.pkg \
&& sudo installer -pkg enclave.pkg -target / \
&& curl -Lo enclave-gui.pkg https://enclave.sidechannel.com/downloads/gui/latest/enclave_darwin_arm64.pkg \
&& sudo installer -pkg enclave-gui.pkg -target /Windows
Windows users can install the Enclave application using a .msi installer. .msi installers are signed by an EV certificate with a root that is trusted by Windows devices. This ensures a secure installation process. However, based on how Windows Smartscreen works, users may need to explicitly allow the download to proceed. This may happen until new agent release reaches a unknown threshold of reputation. We're actively looking for solutions in order to ensure this doesn't happen on new agent releases. Use the table below to find the appropriate download link for your platform:
| Architecture | Agent | GUI |
|---|---|---|
| x86_64 | Download agent (.msi) | Download GUI (.msi) |
| ARM64 | Download agent (.msi) | N/A |
INFO
If you'd like to install a specific version, replace latest with the version in question:
https://enclave.sidechannel.com/downloads/agent/1.12.0/enclave_windows_amd64.msiAgent only installation commands
powershell
curl.exe -Lo enclave.msi https://enclave.sidechannel.com/agent/latest/enclave_windows_amd64.msi `
&& msiexec /i enclave.msi /quiet /norestartpowershell
curl.exe -Lo enclave.msi https://enclave.sidechannel.com/agent/latest/enclave_windows_arm64.msi `
&& msiexec /i enclave.msi /quiet /norestartAgent installation with GUI
powershell
curl.exe -Lo enclave.msi https://enclave.sidechannel.com/agent/latest/enclave_windows_amd64.msi `
&& msiexec /i enclave.msi /quiet /norestart `
&& curl.exe -Lo enclave-gui.msi https://enclave.sidechannel.com/gui/latest/enclave_windows_amd64.msi `
&& msiexec /i enclave-gui.msi /quiet /norestartVerifying checksums
To verify the integrity of the downloaded files, all releases contain a checksum.txt file which includes checksums for all assets available in a release. For example, you can use the sha256sum command to verify the checksum of the downloaded file:
sh
curl -Lo enclave_linux_amd64.deb https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_amd64.deb
curl -Lo checksums.txt https://enclave.sidechannel.com/downloads/agent/latest/checksums.txt
cat ./checksums.txt | grep "enclave_linux_amd64.deb" | sha256sum -c
