• 1 Post
  • 5 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle


  • I’m a fan of SystemRescue. It’s specifically designed for backing up and fixing disk layouts, and it supports both BIOS and UEFI booting.

    I’ve never tried it on Secure Boot enabled devices (I usually disable secureboot before troubleshooting systems), so I do not know if they use a valid signed efi-stub.

    For “simple” stuff, I usually boot a live ubuntu image. If the machine has sufficient RAM, I can get away with installing quite a few packages that I need for troubleshooting (gparted, gdisk, etc.).




  • Very capable tool, and useful in some cases. Does require security of the ptrace call to be unset (ptrace_scope) or set to the default (insecure one).

    I’m a big fan of using ptrace_scope to restrict PTRACE_ATTACH to only allow parents (or grandparents, etc.) to attach to children. Quite useful - this particular security feature was unique to grsecurity and was good enough to be implemented in mainline (changed).

    If you care about whether user processes should not be able to attach to other processes under the same UID, don’t use it though!