Skip to content

Instantly share code, notes, and snippets.

@rdammkoehler
Created July 9, 2019 18:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdammkoehler/53b83b1043f1b9419e5aac6822017762 to your computer and use it in GitHub Desktop.
Save rdammkoehler/53b83b1043f1b9419e5aac6822017762 to your computer and use it in GitHub Desktop.
Mac Users: Kill the Zoom.us server running on your machine and disable it permanently in one line!
# for details see this article
# https://medium.com/@jonathan.leitschuh/zoom-zero-day-4-million-webcams-maybe-an-rce-just-get-them-to-visit-your-website-ac75c83f4ef5
lsof -i :19421 | tail -1 | awk '{print $2}' | xargs -I {} kill -9 {} && rm -Rf ~/.zoomus && touch ~/.zoomus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment