• masterofn001
      link
      fedilink
      2511 months ago

      As a one time noob I may have done this once or more.

      To get one thing working I borked everything.

      Understanding permissions is pretty basic. But understanding permission requirements for system and user apps and their config and dirs can be a bit overwhelming at first.

      Thinking a little change to make your life simpler will break something else doesn’t always register immediately.

      Shit, even recently, wondering why my SSH keys were being refused and realising that somehow i set my private keys world readable.

      Thank god SSH checks file and dir permission.

    • Dhs92
      link
      fedilink
      2911 months ago

      Once had a friend run sudo chmod -R 777 / on a (public) Minecraft server we were running back in highschool. It made me die a bit on the inside.

      • Rikudou_Sage
        link
        fedilink
        2311 months ago

        Doesn’t it break a lot of things? Half the stuff refuses to work when some specific files have too permissive chmod.

        • Dhs92
          link
          fedilink
          1711 months ago

          Really only SSH and sudo broke. sudo would still work but you’d have to re-enter your password every time. It was a painful experience and I’m glad I know better now.

    • @[email protected]
      link
      fedilink
      English
      611 months ago

      Jesus, every time I have to run glx or vaapi under a container I end up having to do this then cringe.

        • @[email protected]
          link
          fedilink
          English
          111 months ago

          Nah, there’s something broken, I think it’s because group render under the container has a different GID than the container so the acl fails and you either sudo or chmod.

          Lxc is still a little wobbly in places.

          • Possibly linux
            link
            fedilink
            English
            3
            edit-2
            11 months ago

            I use podman and since it runs as my user it has exactly same same permissions as me. I just add my user to the proper group and it works.

            Anyway for LXC you could just passthough a folder and then create a file. From there you can look at the file on the host to see who owns it. That will give you the needed information to set permissions correctly

            • @[email protected]
              link
              fedilink
              English
              311 months ago

              Ahh, I’m running priveleged containers, I wrote my own scripted framework for containers around lxc in mostly python.

              Basically I fell head over heels in love with freebsd jails and wanted them on Linux, then started running x11 apps in them, it’s my heroin.

              Haven’t used podman outside proper k8s for work, did proxmox for a bit, but it was just a webgui for the same thing.

              There were a bunch of online bug reports about the /dev/dri issue, maybe there’s a better solution now, but since this is my workstation I wasn’t as worried about security.

  • HubertManne
    link
    fedilink
    3811 months ago

    just worked a job where I did not have privlages to sudo commands. except su. had to sudo su so I could run a script.

      • HubertManne
        link
        fedilink
        311 months ago

        Possibly but my role was such Im really only supposed to be working on my project and not monkey with the server which is used by other projects. I don’t think it was a restriction I think it was just laziness by whoever set it up.

        • @[email protected]
          link
          fedilink
          6
          edit-2
          11 months ago

          Fair enough. Got a colleague who sudo nanos everything then wonders why he keeps getting permission denied errors later lol

          • @[email protected]OP
            link
            fedilink
            English
            3
            edit-2
            11 months ago

            …file in ~/.config

            - sudo nano /path/to/file… yeah, I wanna fucking save changes… OK, let’s see if it works… damn it, this distro fucking sucks man!

              • @[email protected]OP
                link
                fedilink
                English
                1
                edit-2
                11 months ago

                Jesus 🤦…

                And this is why I never get bonuses. I just can’t be bothered with kissing upper management ass… tried it once… I walked out of the meeting with me telling them “less talking, more doing”… no one from upper management called me ever again. Even if they did have a computer problem, they just told the secretary to call me.

  • @[email protected]
    link
    fedilink
    English
    1211 months ago

    Wasn’t it 2017 where they had the race condition in sudo su as the command elevates up to root and drops back down?

    Every other year, sudo su was not unsafe but merely ghetto. ‘sudo su’ is the dutch-rudder of ‘sudo’.

  • Kairos
    link
    fedilink
    411 months ago

    Can’t programs steal sudo access if the timeout isn’t 0?

        • @[email protected]OP
          link
          fedilink
          English
          2
          edit-2
          11 months ago

          Oh, sorry, I misread programs as programmers 😁.

          And no, I don’t think so. Credentials need to be cleared before exectution.

          • Kairos
            link
            fedilink
            111 months ago

            Okay. So you must invoke sudo fr on the exact same shell? It cant be taken from a subsequent script?

            • @[email protected]OP
              link
              fedilink
              English
              2
              edit-2
              11 months ago

              Credentials are inherited by every child process that the parent process invokes. Thus, if you give root credentials to a command, every subsequent command that the original one invokes will have root credentials.

              There are some exceptions, but these are special case scenarios and are literally only a few.

              • Kairos
                link
                fedilink
                111 months ago

                That doesnt at all answer my concern but I’ll interpret the answer as no it doesn’t do that.

                • @[email protected]OP
                  link
                  fedilink
                  English
                  2
                  edit-2
                  11 months ago

                  Sorry (again 😂, this happens quite a lot with you, lol), it’s early in the morning here, didn’t have my coffee yet.

                  If the question is can privileges be escalate later on while a command or a script is executing, the answer is yes. You can also deescalate them once the root creds stuff is done executing. You just have to make it clear in the script or the command that “you do this with root creds, but then you continue with user creds”.

                  The point I was trying to make with my previous comment was that, if a process (command, script, whatever) is ran with root privileges, every program, command, script it invokes later on is ran with root privileges, unless it’s specifically noted to run this or that part with some other privileges.

  • bruhduh
    link
    fedilink
    34
    edit-2
    11 months ago

    Sometimes your package manager asks you for root password every minute while doing few hours long update and cancelling process if you don’t enter anything for few minutes, “yay” aur manager looking at you, and you got to do other things than sit and look in the monitor all day long, things like cleaning house or touching grass for example

    • Laurel Raven
      link
      fedilink
      English
      311 months ago

      “You’re absolutely right, we wouldn’t want to take too long to break the network or open god rights vulnerabilities”

  • fmstrat
    link
    fedilink
    English
    1011 months ago

    Tell me you use Ubuntu without telling me you use Ubuntu.

    Wait till you try this on Debian or non Ubuntu variants.

      • Laurel Raven
        link
        fedilink
        English
        3
        edit-2
        11 months ago

        Debian doesn’t have sudo by default, you have to install it manually

        Not sure what they mean by “non Ubuntu variants” though since most other distros add it even when they aren’t Ubuntu based

      • @[email protected]OP
        link
        fedilink
        English
        1
        edit-2
        11 months ago

        Ubuntu uses Snaps for a lot of the software, thus, when you write sudo apt install firefox that is actually an alias for “install firefox from snap”. Snaps get installed locally, not on the system (globally, for all users), but as a user, so you really can’t do much damage when you actually didn’t do anything to the system in the first place.

        Do sudo shit on any other distro that doesn’t have a company behind it, see what happens.

        • fmstrat
          link
          fedilink
          English
          111 months ago

          True, but not actually the reason, it’s because Debian doesn’t discourage the use of the root account, and su is used instead of sudo.

            • fmstrat
              link
              fedilink
              English
              111 months ago

              Because if you have sudo, you have root. Side effect of being a server system, too. During install, if you specify a root password, sudo is not installed. If you don’t, it is. Ubuntu just defaulted to the latter.

              • @[email protected]OP
                link
                fedilink
                English
                111 months ago

                So that is why I always have to install sudo manually 🤦.

                And I think older versions also left you at root, you had to define a user account manually. I think that’s not the case now as I recall (I haven’t installed Debian in a while).

                • fmstrat
                  link
                  fedilink
                  English
                  111 months ago

                  Yea I switched from Ubuntu on my past few installs to avoid snaps. Glad I did, basically the same experience.