System Recovery using SysRq Key

From Kicksecure
Jump to navigation Jump to search

The SysRq function in Linux is equivalent to the well known Control-Alt-Delete (Ctrl+Alt+Del) function in Window. This page documents how to use SysRq for system recovery and to prevent malware from sniffing the root password.

Use Cases[edit]

The SysRq (a.k.a Raising Skinny Elephants Is Utterly Boringarchive.org) or "Security Keys" (SAKarchive.org key) function in Linux is equivalent to the well known Control-Alt-Delete (Ctrl+Alt+Del) function in Windows, otherwise referred to as the "three-finger salute". Debian documentation notes that SysRq combinations are useful for bypassing bad situations and gaining usable keyboard access, without stopping the system. [1] In effect this provides insurance against system malfunctions due to support compiled in the Linux kernel -- pressing SysRq followed by the required key for a specific command "rescues" the system.

SysRq is handled directly by the kernel. Not by (a)getty, systemd or the X Window System.

Call oom_kill, which kills a process to alleviate an OOM condition

This is more effective than Ctrl + C or kill -s sigkill. When the whole machine appears frozen Ctrl + C often will not have any effect. SysRq has a higher chance of being processed by the kernel except if the kernel itself is locked up.

System Recovery[edit]

Wikipediaarchive.org notes:

The magic SysRq key is a key combination understood by the Linux kernelarchive.org, which allows the user to perform various low-level commands regardless of the system's state. It is often used to recover from freezesarchive.org, or to rebootarchive.org a computer without corrupting the filesystemarchive.org. Its effect is similar to the computer's hardware reset buttonarchive.org (or power switch) but with many more options and much more control.

This key combination provides access to powerful features for software development and disaster recovery. In this sense, it can be considered a form of escape sequencearchive.org. Principal among the offered commands are means to forcibly unmount file systems, kill processes, recover keyboard state, and write unwritten data to disk. With respect to these tasks, this feature serves as a tool of last resort.

The magic SysRq key cannot work under certain conditions, such as a kernel panicarchive.org or a hardware failure preventing the kernel from running properly.

In the Kicksecure case, magic SysRq keys are useful when the guest is unresponsive, especially in cases where VMs are running headless and a GUI console is not available for forcing them to shut off on the host.

Malware[edit]

SysRq can be used to defeat login spoofing, that is, malware masquerading as a login prompt and stealing login passwords.

Quote Linux Kernel Documentationarchive.org:

Sak (Secure Access Key) is useful when you want to be sure there is no trojan program running at console which could grab your password when you would try to login. It will kill all programs on given console, thus letting you make sure that the login prompt you see is actually the one from init, not some trojan program.

Kicksecure Default SysRq Configuration[edit]

SysRq is disabled by default in Kicksecure. [2]

This is provided by package security-misc in the file /usr/lib/sysctl.d/990-security-misc.conf.

Enable SysRq[edit]

SysRq can be enabled temporarily or permanently.

  • A) To temporarily enable SysRq, run:
    • echo "1" | sudo tee /proc/sys/kernel/sysrq
  • B) To permanently enable SysRq, run:
    • echo "kernel.sysrq = 1" | sudo tee -a /etc/sysctl.d/999_sysrq.conf

After completing the temporary or permanent change, check that SysRq has been properly set.

cat /proc/sys/kernel/sysrq

The output should show.

1

Overview of Commands[edit]

SysRq : HELP : loglevel(0-9) reboot(b) crash(c) terminate-all-tasks(e) memory-full-oom-kill(f) kill-all-tasks(i) thaw-filesystems(j) sak(k) show-backtrace-all-active-cpus(l) show-memory-usage(m) nice-all-RT-tasks(n) poweroff(o) show-registers(p) show-all-timers(q) unraw(r) sync(s) show-task-states(t) unmount(u) force-fb(V) show-blocked-tasks(w) dump-ftrace-buffer(z)

  • loglevel(0-9)s
  • reboot(b)
  • crash(c)
  • terminate-all-tasks(e)
  • memory-full-oom-kill(f)
  • kill-all-tasks(i)
  • thaw-filesystems(j)
  • sak(k)
  • show-backtrace-all-active-cpus(l)
  • show-memory-usage(m)
  • nice-all-RT-tasks(n)
  • poweroff(o)
  • show-registers(p)
  • show-all-timers(q)
  • unraw(r)
  • sync(s)
  • show-task-states(t)
  • unmount(u)
  • force-fb(V)
  • show-blocked-tasks(w)
  • dump-ftrace-buffer(z)

Usage[edit]

SysRq can also be used by writing to /proc/sysrq-trigger.

sudo -u root bash

echo h > /proc/sysrq-trigger

Qubes[edit]

See: add Qubes host key to allow switching virtual console (ctrl + alt + F1) or SysRq for HVMarchive.org.

Development[edit]

Security Discussion[edit]

A number of security concerns and unanswered questions concerning SysRq require further investigation.


Possible privilege escalation

SysRq Security concern raised by madaidanarchive.org:

Being able to run a bunch of commands that would normally require root (such as killing every process, remounting all filesystems read-only etc.) as an unprivileged user doesn’t look very good. Sounds like a possible privilege escalation hole and/or a feature that can easily be abused.

On the other hand, SysRq + k is also dubbed Secure Access Key. Therefore, SysRq is not completely disabled without further consideration. This raises the following questions:

  • Can a user only kill its own processes with SysRq or any process?
  • What if an unprivileged user kills a very important process that is usually only accessible by root?

Screensavers

Quote screensaver FAQarchive.org:

Backdoor #3: Alt-SysRq-F.

This is the Linux kernel "OOM-killer" keystroke. It shoots down random long-running programs of its choosing, and so might might target and kill xscreensaver, and there's no way for xscreensaver to protect itself from that. You can disable it globally with: sudo 'echo 176 > /proc/sys/kernel/sysrq'

(As of version 5.41, if xscreensaver is setuid, and you are running Linux 2.6.37 or newer, xscreensaver attempts to request that the kernel's out-of-memory assassin not randomly unlock the screen on you, but it's only a request.)

Related: Screen Locker (In)Security - Can we disable these at least 4 backdoors?archive.org


Keyboard events

Quote Linux Magic System Request Key Hacksarchive.org:

Note that the value of /proc/sys/kernel/sysrq influences only the invocation via a keyboard.

Invocation of any operation via /proc/sysrq-trigger is always allowed (by a user with admin privileges).

This raises the question:

  • Could any compromised non-root user generate the keyboard event and thereby use SysRq? Quotearchive.org:

Things such as xdotool won’t work as the SysRq key isn’t handled by Xorg and things like /dev/uinput or /proc/sysrq-trigger requires root access already.


Remote SysRq use

SysRq can be triggered remotely, see: unlockdownarchive.org.

Virtual Console Handling[edit]

It is unclear whether control is reserved to users performing “alt + ctrl + F1”, see:

Attacks from Lesser Adversaries with Physical Access[edit]

See: Should (lesser) Adversaries with Physical Access be part of the Threat Model of Whonix / Whonix-Host / Kicksecure?archive.org

Development Discussion[edit]

Forum development discussion: SysRq (Magic SysRq key)archive.org

See Also[edit]

Footnotes[edit]


Unfinished: This wiki is a work in progress. Please do not report broken links until this notice is removed, use Search Engines First and contribute improving this wiki.

We believe security software like Kicksecure needs to remain Open Source and independent. Would you help sustain and grow the project? Learn more about our 12 year success story and maybe DONATE!