‘For many such issues the simplest mitigation is to stop calling the buggyfunction. Killswitch provides that’: Experts propose Linux kernel “killswitch” following worrying recent security issues

‘For many such issues the simplest mitigation is to stop calling the buggyfunction. Killswitch provides that’: Experts propose Linux kernel “killswitch” following worrying recent security issues

‘For many such issues the simplest mitigation is to stop calling the buggyfunction. Killswitch provides that’: Experts propose Linux kernel “killswitch” following worrying recent security issues

https://www.techradar.com/pro/security/for-many-such-issues-the-simplest-mitigation-is-to-stop-calling-the-buggy-function-killswitch-provides-that-experts-propose-linux-kernel-killswitch-following-worrying-recent-security-issues

Publish Date: 2026-05-11 13:35:00

Source Domain: www.techradar.com

  • Maintainers proposed a killswitch mechanism to temporarily disable vulnerable kernel functions at runtime via securityfs
  • The feature aims to mitigate high‑severity flaws like Copy Fail and Dirty Frag until patches arrive, though it risks system instability
  • It’s under community review, positioned as a stopgap measure—not a replacement for proper patching

The Linux kernel could soon get a new feature that serves as a temporary safeguard against high-severity vulnerabilities until patches are deployed.

One of the Linux stable kernel co-maintainers, Sasha Levin, recently proposed a new patch that would allow system administrators to temporarily disable a vulnerable kernel function.

That way, if security researchers discover malicious code in the future, users would be able to quickly instruct the kernel not to use it. The feature would not address underlying issues, but since the function would return an error, it could prevent the vulnerability from causing any serious harm before a proper patch is deployed.

Latest Videos From

You may like

Good idea, does (not) work?

If adopted, the feature would be available through the kernel’s securityfs interface, allowing admins to enable killswitches for specific functions which would render them unusable immediately. The change would take effect at runtime, and would remain active until disabled, or until the system is restarted.

On paper, the idea sounds good. In practice, there are many challenges and moving parts to address. When a function is disabled, it could disrupt the entire system or crash other parts. It could also introduce additional vulnerabilities.

Therefore, it is important to note that the feature is not imagined for general purpose use. It is also worth mentioning that this feature cannot serve as a replacement for patching.

Still, it could be a solid first-aid kit to prevent further escalation with high-severity vulnerabilities.

Source