headlamp icon indicating copy to clipboard operation
headlamp copied to clipboard

Run commands only after user consent

Open joaquimrocha opened this issue 5 months ago • 0 comments

With #1677 we allow plugins to run commands when in the app mode, but we should make this option available only after user consent, for extra security.

Since the command running is done in the app layer, I think we should be able to show a (native/electron) dialog asking the user to run the command. If there was a way to have a list of allowed commands for the user to review, that'd be even better, but maybe that's too complicated.

I can think of a couple of options for the UX, but maybe this works:

  • Plugin calls runCommand, which continues till the request is done to the electron layer
  • The electron app checks the run-command-consent setting:
    • If true: continue to running the command
    • If false: trigger the ask-for-command-consent dialog; after which the command is run.

In general settings, we should have a setting showing whether commands are allowed to run. When clicking the switch, the dialog runs again (we can never set the setting directly/automatically from the frontend, else it can simply be faked without user intervention)

joaquimrocha avatar Feb 26 '24 18:02 joaquimrocha