Enforce Device Protection During Package Installation
Why use this
How it works
/Applications/Aikido\ Endpoint\ Protection.app/Contents/Resources/scripts/healthy& "C:\Program Files\AikidoSecurity\EndpointProtection\scripts\Healthy.ps1"Package manager examples
{
"scripts": {
"preinstall": "/Applications/Aikido\ Endpoint\ Protection.app/Contents/Resources/scripts/healthy"
}
}{
"scripts": {
"preinstall": "/Applications/Aikido\ Endpoint\ Protection.app/Contents/Resources/scripts/healthy"
}
}install: check-aikido
pip install -r requirements.txt
check-aikido:
/Applications/Aikido\ Endpoint\ Protection.app/Contents/Resources/scripts/healthy<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>check-aikido</id>
<phase>validate</phase>
<goals><goal>exec</goal></goals>
<configuration>
<executable>bash</executable>
<arguments>
<argument>-c</argument>
<argument>/Applications/Aikido\ Endpoint\ Protection.app/Contents/Resources/scripts/healthy</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>Git hooks
Last updated
Was this helpful?