Coder Social home page Coder Social logo

Add long-running proxy about sudo-prompt HOT 4 CLOSED

jorangreef avatar jorangreef commented on July 22, 2024
Add long-running proxy

from sudo-prompt.

Comments (4)

jorangreef avatar jorangreef commented on July 22, 2024

Thanks Igor. Would you please provide a small test case to reproduce with tty_tickets disabled? What platform is that on?

I have been thinking about how to work with enabled tty_tickets. It may be worthwhile for sudo-prompt to have a persistent privileged child process (launched the first time sudo.exec() is called) which can be used for subsequent calls. This would work as long as the process remains live.

For permission that would last across reboots, that's dangerous from a vulnerability point of view. It can be done with a setuid binary but then the app would need a way to authenticate with the binary so that the binary can't be exploited by other processes. This kind of authentication would be easy if the app has an in-memory token, but I don't know how to persist that across reboots. Perhaps there may be another way for the setuid binary to authenticate that it really is the app that's calling, but even then, one would need to lock the app down and make it read only (otherwise a hostile process could overwrite some of the source of the app).

from sudo-prompt.

igor-lemon avatar igor-lemon commented on July 22, 2024

Yep, I reproduced. I'm using macOS Sierra. With disabled tty_tickets ask password per each request too but if I input some sudo command in terminal I can exec any command without password promt.

What do you think about up a small sudo sh/bash process and after exec all sudo commands through that process (Linux + macOS)? As example I found I a forked electron-sudo rep and found that we can do that I wrote above.
https://github.com/ppoffice/electron-sudo
And after make something like that

let options = {name: 'Application'},
     sudoer = new Sudoer(options);
...
function sudoTest(command) {
  if (!this.cp || this.cp.exitCode !== null) {
    sudoer.spawn('/bin/sh', []).then(cp => {
       this.cp = cp;
       this.cp.stdin.write(`${command} \n`);
    });
  } else { 
    this.cp.stdin.write(`${command} \n`);
  }
}

That solution is works on Linux and macOS but has troubles on macOS Sierra :(

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

What do you think about up a small sudo sh/bash process and after exec all sudo commands through that process (Linux + macOS)

Yes, this is what I would like to do.

from sudo-prompt.

treyreynolds avatar treyreynolds commented on July 22, 2024

You are able to disable tty_tickets on your own machine if that helps with your use case. My application is only loaded onto custom machines so I am able to edit /etc/sudoers as mentioned in this article:
TTY Tickets Option Now on by Default for MacOS Sierra

If you want sudo to return to using the pre-Sierra behavior on macOS Sierra, edit /etc/sudoers to add the following option:
Defaults !tty_tickets

from sudo-prompt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.