From 7f3ec62383d4d4bbfeabc6c553e90c28ff57ad91 Mon Sep 17 00:00:00 2001 From: Albin Kerouanton <557933+akerouanton@users.noreply.github.com> Date: Thu, 9 Jan 2025 23:17:10 +0100 Subject: [PATCH] Cert revoke: grep 'ps aux' output in a case-insensitive way (#21771) ## Description This will make sure that any binary running from Docker.app, and any Desktop process will be killed appropriately. ## Related issues or tickets ## Reviews - [ ] Technical review - [ ] Editorial review - [ ] Product review Signed-off-by: Albin Kerouanton --- content/manuals/desktop/cert-revoke-solution.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/manuals/desktop/cert-revoke-solution.md b/content/manuals/desktop/cert-revoke-solution.md index ca18033730..4407739638 100644 --- a/content/manuals/desktop/cert-revoke-solution.md +++ b/content/manuals/desktop/cert-revoke-solution.md @@ -30,7 +30,7 @@ If possible, update directly through the app. If not, and you’re still seeing $ sudo rm /Library/PrivilegedHelperTools/com.docker.vmnetd || true $ sudo rm /Library/PrivilegedHelperTools/com.docker.socket || true - $ ps aux | grep docker | awk '{print $2}' | sudo xargs kill -9 2>/dev/null + $ ps aux | grep -i docker | awk '{print $2}' | sudo xargs kill -9 2>/dev/null ``` 2. Make sure the malware pop-up is permanently closed. @@ -80,7 +80,7 @@ For versions 4.32 - 4.33, a patch fix is in progress. If you need an immediate s $ sudo rm /Library/PrivilegedHelperTools/com.docker.vmnetd || true $ sudo rm /Library/PrivilegedHelperTools/com.docker.socket || true - $ ps aux | grep docker | awk '{print $2}' | sudo xargs kill -9 2>/dev/null + $ ps aux | grep -i docker | awk '{print $2}' | sudo xargs kill -9 2>/dev/null ``` 2. Download and install a re-signed installer matching your exact version of Docker Desktop from the [Release notes](/manuals/desktop/release-notes.md).