We're happy to share that Workbrew has achieved SOC 2 compliance.
Customers in regulated environments can use Workbrew with the confidence of The American Institute of Certified Public Accountants (AICPA) Service Organization Controls “SOC 2” security standards.
This milestone reinforces our commitment to security and compliance, providing third-party validation of the measures we take to protect customer data and build trust.
A big thank you to Vanta and Advantage Partners for their support and guidance throughout the process.
You can find out more about Workbrew’s ongoing commitments to security by visiting our new Security page.
#!/bin/bash
# Check for Homebrew in supported installation paths.
if [[ -x "/opt/homebrew/bin/brew" ]] ||
[[ -x "/usr/local/bin/brew" ]] ||
[[ -x "/home/linuxbrew/.linuxbrew/bin/brew" ]]
then
echo "Homebrew is installed."
exit 0
else
echo "Homebrew is not installed."
exit 1
fi
We're happy to share that Workbrew has achieved SOC 2 compliance.
Customers in regulated environments can use Workbrew with the confidence of The American Institute of Certified Public Accountants (AICPA) Service Organization Controls “SOC 2” security standards.
This milestone reinforces our commitment to security and compliance, providing third-party validation of the measures we take to protect customer data and build trust.
A big thank you to Vanta and Advantage Partners for their support and guidance throughout the process.
You can find out more about Workbrew’s ongoing commitments to security by visiting our new Security page.
#!/bin/bash
# Check for Homebrew in supported installation paths.
if [[ -x "/opt/homebrew/bin/brew" ]] ||
[[ -x "/usr/local/bin/brew" ]] ||
[[ -x "/home/linuxbrew/.linuxbrew/bin/brew" ]]
then
echo "Homebrew is installed."
exit 0
else
echo "Homebrew is not installed."
exit 1
fi