Created
July 9, 2019 18:41
-
-
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!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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