Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Running application with user privillegions.
Qt 6.11 is out! See what's new in the release blog

Running application with user privillegions.

Scheduled Pinned Locked Moved Unsolved General and Desktop
24 Posts 7 Posters 1.1k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Joe von HabsburgJ Joe von Habsburg

    You could ask ai or search on google

    sudo cp your_program.exe /usr/local/bin/your_program
    sudo chmod +x /usr/local/bin/your_program
    

    These are Linux-related tasks.

    JonBJ Online
    JonBJ Online
    JonB
    wrote last edited by JonB
    #15

    @Joe-von-Habsburg said in Running application with user privillegions.:

    sudo chmod +x /usr/local/bin/your_program

    It's already executable after the copy, and chmod +x does nothing more than it already is. It does not make the executable run as root. You want/intended instead:

    chmod u+s path-to-executable
    

    so it will look like:

    root@ubuntu-22:~/QtTests/C++/sudopassword/build/Desktop-Debug# chmod u+s fred
    root@ubuntu-22:~/QtTests/C++/sudopassword/build/Desktop-Debug# ls -l fred
    -rwsr-xr-x 1 root root 379112 Mar 30 08:48 fred
    

    Note the -rws, the s there.

    Note that you will need to repeat the chmod every time after you recompile/recopy your executable. If you redistribute your executable then wherever it gets installed the root user would need to choose to run the chmod u+s there once, you cannot distribute (I don't think) with the executable owned by root and setuid.

    1 Reply Last reply
    3
    • N Offline
      N Offline
      nicholas_ru
      wrote last edited by nicholas_ru
      #16

      You have ubuntu. I have Debian. This is method change chmod, not exit for programmers.First post with running command very nice,but not full.

      JonBJ 1 Reply Last reply
      0
      • N nicholas_ru

        You have ubuntu. I have Debian. This is method change chmod, not exit for programmers.First post with running command very nice,but not full.

        JonBJ Online
        JonBJ Online
        JonB
        wrote last edited by JonB
        #17

        @nicholas_ru
        Did you even try it?? Debian man page https://manpages.debian.org/bookworm/coreutils/chmod.1.en.html

        Each MODE is of the form '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+'.

        How else would you setuid under Debian? No point my suggesting things if they do work but you say they do not.

        .First post with running command very nice,but not full.

        If you mean @Joe-von-Habsburg 's QString command = QString("echo %1 | sudo -S %2").arg(1234).arg("ifconfig") it won't work as written if passed to QProcess::start().... But I am getting a bit dispirited trying to help you so up to you.

        Joe von HabsburgJ N 2 Replies Last reply
        0
        • JonBJ JonB

          @nicholas_ru
          Did you even try it?? Debian man page https://manpages.debian.org/bookworm/coreutils/chmod.1.en.html

          Each MODE is of the form '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+'.

          How else would you setuid under Debian? No point my suggesting things if they do work but you say they do not.

          .First post with running command very nice,but not full.

          If you mean @Joe-von-Habsburg 's QString command = QString("echo %1 | sudo -S %2").arg(1234).arg("ifconfig") it won't work as written if passed to QProcess::start().... But I am getting a bit dispirited trying to help you so up to you.

          Joe von HabsburgJ Offline
          Joe von HabsburgJ Offline
          Joe von Habsburg
          wrote last edited by
          #18

          @JonB said in Running application with user privillegions.:

          But I am getting a bit dispirited trying to help you so up to you.

          :(

          @nicholas_ru said in Running application with user privillegions.:

          You have ubuntu. I have Debian. This is method change chmod, not exit for programmers.First post with running command very nice,but not full.

          so ? linux is linux and there is a qt forum. we try to help you

          JonBJ 1 Reply Last reply
          0
          • Joe von HabsburgJ Joe von Habsburg

            @JonB said in Running application with user privillegions.:

            But I am getting a bit dispirited trying to help you so up to you.

            :(

            @nicholas_ru said in Running application with user privillegions.:

            You have ubuntu. I have Debian. This is method change chmod, not exit for programmers.First post with running command very nice,but not full.

            so ? linux is linux and there is a qt forum. we try to help you

            JonBJ Online
            JonBJ Online
            JonB
            wrote last edited by JonB
            #19

            @Joe-von-Habsburg said in Running application with user privillegions.:

            But I am getting a bit dispirited trying to help you so up to you.

            :(

            To be clear: it is the OP I am getting "dispirited" trying to help, not your posts! :)

            He could use your code approach (perhaps, if that is what he wants), just that it needs changing to work. But since we (at least I) don't even know exactly what he wants I have not corrected it so far, waiting to see.....

            1 Reply Last reply
            1
            • JonBJ JonB

              @nicholas_ru
              Did you even try it?? Debian man page https://manpages.debian.org/bookworm/coreutils/chmod.1.en.html

              Each MODE is of the form '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+'.

              How else would you setuid under Debian? No point my suggesting things if they do work but you say they do not.

              .First post with running command very nice,but not full.

              If you mean @Joe-von-Habsburg 's QString command = QString("echo %1 | sudo -S %2").arg(1234).arg("ifconfig") it won't work as written if passed to QProcess::start().... But I am getting a bit dispirited trying to help you so up to you.

              N Offline
              N Offline
              nicholas_ru
              wrote last edited by nicholas_ru
              #20

              @JonB i am think in Qt framework must be integrated this is function.

              JonBJ 1 Reply Last reply
              0
              • N nicholas_ru

                @JonB i am think in Qt framework must be integrated this is function.

                JonBJ Online
                JonBJ Online
                JonB
                wrote last edited by
                #21

                @nicholas_ru No idea what you mean. You have plenty of answers & suggestions above, so over to you to do something....

                N 1 Reply Last reply
                0
                • JonBJ JonB

                  @nicholas_ru No idea what you mean. You have plenty of answers & suggestions above, so over to you to do something....

                  N Offline
                  N Offline
                  nicholas_ru
                  wrote last edited by
                  #22

                  @JonB if QProcess running with root true, if without false.

                  JonBJ 1 Reply Last reply
                  0
                  • N nicholas_ru

                    @JonB if QProcess running with root true, if without false.

                    JonBJ Online
                    JonBJ Online
                    JonB
                    wrote last edited by
                    #23

                    @nicholas_ru
                    Again, I don't know what that phrase means. You might trying typing in your questions/answers with full detail in your native language into Google and asking it to translate to English, that may give a more meaningful question.

                    We have explained what the possibilities are for running programs under Linux setuid/as root. You have to pick one. You have to try the suggestions you have been given. I don't even believe what you said about chmod u+s not being available under your Debian. Qt as a framework has nothing to say or do about setuid. QProcess can be used to run other programs in the standard Linux exec-type way. Just because you say "i am think in Qt framework must be integrated this is function." does not make it so there is magically something else in Qt we have not discussed.

                    At this point I don't think anybody here knows what you actually want, what your problem is or what you have tried from the suggestions.

                    1 Reply Last reply
                    0
                    • S Offline
                      S Offline
                      SimonSchroeder
                      wrote last edited by
                      #24

                      There is a reason why you can't just run anything with root privileges. And under normal circumstance you should not try to circumvent it. The most important question is if you really need to run something as root (while your own software is not started with root privileges). Qt does not provide anything special to run a process as root. You need to use OS functionality to run an elevated process (you can use QProcess to start sudo or use any of the other methods mentioned before). In the case of sudo it is up to you to ask the user for the password and hand it to sudo. But, even this is a bad idea because it is really easy to leak the password for an attacker.

                      1 Reply Last reply
                      0

                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Users
                      • Groups
                      • Search
                      • Get Qt Extensions
                      • Unsolved