Cert revoke: grep 'ps aux' output in a case-insensitive way (#21771)

<!--Delete sections as needed -->

## Description

This will make sure that any binary running from Docker.app, and any
Desktop process will be killed appropriately.

## Related issues or tickets

<!-- Related issues, pull requests, or Jira tickets -->

## Reviews

<!-- Notes for reviewers here -->
<!-- List applicable reviews (optionally @tag reviewers) -->

- [ ] Technical review
- [ ] Editorial review
- [ ] Product review

Signed-off-by: Albin Kerouanton <albinker@gmail.com>
This commit is contained in:
Albin Kerouanton 2025-01-09 23:17:10 +01:00 committed by GitHub
parent 4d160e7d00
commit 7f3ec62383
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ If possible, update directly through the app. If not, and youre 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).