######################################################################################## # __ __ ___ ____ ___ _ _ _ # # | \/ | __ _ ___ / _ \/ ___| |_ _|_ __ ___| |_ __ _| | | ___ _ __ ___ # # | |\/| |/ _` |/ __| | | \___ \ | || '_ \/ __| __/ _` | | |/ _ \ '__/ __| # # | | | | (_| | (__| |_| |___) | | || | | \__ \ || (_| | | | __/ | \__ \ # # |_| |_|\__,_|\___|\___/|____/ |___|_| |_|___/\__\__,_|_|_|\___|_| |___/ # # # ######################################################################################## # # # Instructions: # # # # Open Terminal window # # # # Copy the script below and paste it into the Terminal window # # # # Pay attention for when your password is required # # # ######################################################################################## echo Start pwd cd ~/ mkdir temp cd ~/temp echo InsightVM curl "https://it.poly.edu/mac__Insight_Agent.zip" -o mac__Insight_Agent.zip unzip mac__Insight_Agent.zip if [[ $(uname -m) == 'arm64' ]]; then chmod u+x agent_installer-arm64.sh sudo ./agent_installer-arm64.sh install_start --token us:760cd8ec-1e31-46d8-ba9f-9dd3d12a5045 --attributes "tandon-macos-workstations" fi if [[ $(uname -m) == 'x86_64' ]]; then chmod u+x agent_installer-x86_64.sh sudo ./agent_installer-x86_64.sh install_start --token us:760cd8ec-1e31-46d8-ba9f-9dd3d12a5045 --attributes "tandon-macos-workstations" fi echo BigFix curl https://it.poly.edu/BigFix-11.0.3.82-MacOS-Tandon.pkg -o BigFix-11.0.3.82-MacOS-Tandon.pkg sudo installer -pkg ./BigFix-11.0.3.82-MacOS-Tandon.pkg -target /Applications echo Cortex curl https://it.poly.edu/NYU_Tandon_-_MacOS_8_8_0_1.zip -o NYU_Tandon_-_MacOS_8_8_0_1.zip unzip NYU_Tandon_-_MacOS_8_8_0_1.zip sudo installer -pkg ./Cortex\ XDR.pkg -target /Applications open -W -n /Library/Application\ Support/PaloAltoNetworks/Traps/bin/Cortex\ XDR\ Configuration\ Wizard.app echo Cleanup cd ~/ rm -r ~/temp