Skip to content

Instantly share code, notes, and snippets.

@nicwestvold
Last active July 9, 2019 14:52
Show Gist options
  • Save nicwestvold/44264155f26b02d7527af8428a9ba7cc to your computer and use it in GitHub Desktop.
Save nicwestvold/44264155f26b02d7527af8428a9ba7cc to your computer and use it in GitHub Desktop.
zoom security vulnerability - 2019-07-08
# notes taken from this article:
# https://medium.com/@jonathan.leitschuh/zoom-zero-day-4-million-webcams-maybe-an-rce-just-get-them-to-visit-your-website-ac75c83f4ef5
# saved as a gist so I don't lose the info
# disable video on join
# For just your local account
defaults write ~/Library/Preferences/us.zoom.config.plist ZDisableVideo 1
# For all users on the machine
sudo defaults write /Library/Preferences/us.zoom.config.plist ZDisableVideo 1
# shutdown webserver
lsof -i :19421
# get PID from above command
kill -9 [process_number]
# this would probably work -> kill -9 $(lsof -i :19421)
# remove webserver
rm -rf ~/.zoomus
# prevent server from being restored after updates
rm -rf ~/.zoomus
touch ~/.zoomus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment