-1

Ctrl+Alt+Del is the path to the Secure attention key on Windows computers.

Some of the answers on related questions imply it is possible to modify the this.

My thinking is that a password does not do you any good, if you can't get to the screen to enter it. If you changed the key combination required to access Winlogon and don't publish the change, would there be a measurable change in your system security?

Presumably it would be possible to send users of Ctrl+Alt+Del to a sandbox, and begin security containment activities. While users with the correct different combination go to the production system.

Related

James Jenkins
  • 723
  • 1
  • 5
  • 10

2 Answers2

3

To my knowledge, you cannot change the SAS (Secure Attention Sequence) keystroke combination (Ctrl + Alt + Del). But even if you can, only the valid SAS key combination would invoke the login procedure (LogonUI). An invalid key combination cannot direct user to some kind of sandbox, it'll do nothing.

So overall, this idea of changing SAS key combination might only be good for preventing unaware users from getting to LogonUI.

  • 1
    Most critically, Ctrl+Alt+Del has a special meaning to the IBM PC architecture, and triggers a specific interrupt which operating systems can handle. – Polynomial Oct 26 '16 at 21:08
  • @Polynomial: I thought so as well, but could not find evidence to support it. Do you have a "normative" reference? It's quite impossible to trigger a hardware interrupt. How shall a USB keyboard trigger a special hardware interrupt? Therefore I'd say it must be a software interrupt. And then again, the OS could trigger a software interrupt for any key combination. – Thomas Weller Oct 27 '16 at 19:26
  • I disagree with "An invalid key combination cannot direct user to some kind of sandbox": if the key combination would not have special OS handling (after changing it, that would be the case), you could write a hotkey handler for it and implement anything you want - i.e. a sandbox – Thomas Weller Oct 27 '16 at 19:29
2

It sounds like you want to invoke security by obscurity. Yes, you might eke out some measure of confusion, but all benefits evaporate if your users discover the 'real' sequence.

It's also of note that this only affects local users who have physical access to the machine. Playing games at the UI level is not worth the effort when you consider the potential access your target users already have.

schroeder
  • 129,372
  • 55
  • 299
  • 340