• Troy@lemmy.ca
    link
    fedilink
    arrow-up
    26
    ·
    4 months ago

    That reminds me…

    In circa 1995 I was running a dial upBBS service – as a teenager. So if course, it was full of bootlegged video games and such, and people would dial in, download a game, log off.

    Someone uploaded Descent or something like that. But they had put "deltree /y C:" or similar into a batch file, used a BAT2COM converter program, then a COM2EXE program, then padded the file size to approximately the right size with random crap (probably just using APPEND)… And uploaded it. Well, fortunately for the rest of my users, I say the game and said: oh, that’s neat, I should try it and copied it to another computer over my internal network and launched it. It started deleting files right away and I hit CTRL-C to abort. I lost only a few dozen files.

    Banned the user, deleted the package. Got lucky.

  • deadbeef79000@lemmy.nz
    link
    fedilink
    arrow-up
    24
    ·
    edit-2
    3 months ago

    rm -rf ${var}/ is a disaster waiting to happen.

    Always do rm -rf "${var:?}/" so that the script aborts if the variable is empty. Or better yet rm -rf "./${var:?}/".

    Edited to add quotes. Always quote a path: it might have spaces in it, without quotes that will become multiple paths! Which would also have avoided the particular bug in question.

    • Pringles@lemm.ee
      link
      fedilink
      arrow-up
      11
      ·
      4 months ago

      Reminds me of a script a colleague has where it would sometimes accidentally wipe the entire production folder on a server. I pointed out the risk in his script and explained how to correct it like 2 years ago, give or take. He said he did, but then last week it happened again because apparently he had several scripts like that and only corrected one.

      You can lead a horse to water, but you can’t force it to drink.

    • mumblerfish@lemmy.world
      link
      fedilink
      arrow-up
      7
      ·
      4 months ago

      Is there not also a way to disallow empty variables in the script, I think it is set -u? Then you don’t have to keep thinking “should I add a :? here because if empty it may lead to disaster” all the time. Might be even safer.

        • deadbeef79000@lemmy.nz
          link
          fedilink
          arrow-up
          8
          ·
          3 months ago

          Yep! I always do this too.

          TL;DR: e aborts the whole script on a non-zero error. u aborts when using an undefined variable. -o pipefail aborts a piped compound command when one of the piped commands fail.

          Any other way lies madness. Or erasing the whole filesystem apparently!

      • deadbeef79000@lemmy.nz
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        4 months ago

        Yes! But -u is for undefined variables. It won’t stop a defined variable with an empty value. E.g foo="".

        Also ? and :? have the advantage of telling you right then and there where the variable use is that it must be defined or not empty… having to trek back to (likely) the top of the script to check is easily forgotten.

    • Samueru@lemmy.world
      link
      fedilink
      arrow-up
      3
      ·
      4 months ago

      In this case the issue was that a change between kde5 and kde6 let to the variable being defined as somepath / (notice the space).

  • smpl@discuss.tchncs.de
    link
    fedilink
    English
    arrow-up
    8
    ·
    4 months ago

    A Linux user’s nightmare: the machine was wiped clean with one click

    Timo Tamminen

    One day a Linux user using KDE Plasma decided to download a generic theme for his desktop environment. This is possible with Plasma’s built-in tool, through which you can download anything from themes to icons and wallpapers.

    Installing themes using Plasma’s tool is easy and fast. It practically only requires one click. This time, however, the user in question certainly wishes that that one click had not been completed.

    Namely, installing the theme called Gray Layout wiped the machine completely empty of the user’s personal files. Without asking anything.

    Although the theme developer’s intention this time was apparently not malicious, the accident was a clear indication that installing third-party themes without careful supervision can be a bad mistake. With the theme, almost anything can be installed in the user’s home directory.

    The Gray Layout installation script ran the rm -rf command, which normally removes all files from the device, making the command particularly dangerous to use. However, without root access, it can only cause limited damage.

    Reddit user Jeansen Vaars says that he lost all his games, settings files, browser history and other contents of his home directory in a crash.

    The unofficial face of KDE, Nate Graham, apologizes for what happened. He promises that the matter will be thoroughly investigated. The theme in question has also been removed from the theme store.

  • MyNameIsRichard@lemmy.ml
    link
    fedilink
    arrow-up
    8
    arrow-down
    1
    ·
    4 months ago

    A theme is software and software has bugs. While this one had a pretty dramatic effect, you take basically the same risk with every program you run. This, along with hardware and user errors are why backups are so important; they change a disaster to an inconvenience.

    / Preach mode off

    • GenderNeutralBro@lemmy.sdf.org
      link
      fedilink
      English
      arrow-up
      8
      ·
      edit-2
      4 months ago

      A theme is software and software has bugs

      I honestly did not know that KDE themes contained executable code. When I think “theme”, I think of cosmetic settings that plug into an existing program, which I would hope sanitizes its input and does NOT execute arbitrary code. I don’t think “arbitrary executable code running as root”.

      I’m assuming KDE warns you about this when you try to install a theme, right? I’m not at my KDE system to test at the moment. I did try downloading a theme tar from the web site, and it doesn’t seem to contain any code — just SVG files, a colors config file, and a metadata file.

      • nyan@sh.itjust.works
        link
        fedilink
        arrow-up
        3
        ·
        3 months ago

        It may help to know a bit of history: KDE3 themes could include a bespoke widget style, and QT3 widget styles were always implemented as executables (you can look at modified versions of the C++ code in the TDE git repository, if you’re really bored). So keeping code out of the themes hasn’t been important to KDE for at least the past 20 years. If I’m not mistaken, far more things are stylable in current versions of KDE. That doesn’t mean that every theme will style all of them, though—you can have codeless styles like the one you found, that make use of the built-ins rather than trying to change All The Things.

    • ShortN0te@lemmy.ml
      link
      fedilink
      arrow-up
      3
      ·
      4 months ago

      A windows device just wiped the hardware settings of a periphery device, because it got an update and the new lighting settings wanted to control the LEDs in that device. All gone

  • MangoPenguin@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    4
    ·
    4 months ago

    That’s what good backups are for.

    I image all my PCs daily with Veeam, bootable media is on my Ventoy USB stick, and restoring is easy as you just boot up the restore media and it pulls the latest backup over the network.

  • fl42v@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    4 months ago

    The Gray Layout installation script ran the rm -rf command, which normally removes all files from the device

    Translation difficulties, or does the author really think that’s what it’s normally used for?

  • BCsven@lemmy.ca
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    4 months ago

    The theme contained rm -rf, but claims it wasn’t malicious intent…I assume rm -rf for cleanup, but seems like it should have a apecific path other than /

    • carzian@lemmy.ml
      link
      fedilink
      arrow-up
      5
      ·
      edit-2
      4 months ago

      The command was rm -rf $pathvariable

      Bug in the code caused the path to be root. Wasn’t explicitly malicious

    • GlitterInfection@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      4 months ago

      When I worked at Pixar long ago an intern had a cron job that was intended to clean up his nightly build and ended up deleting everything on the network share for everyone!

      Fortunately there were back-ups and it was fine, but that day was really hilariously annoying while they tracked down things disappearing.

      • zingo@lemmy.ca
        link
        fedilink
        arrow-up
        1
        ·
        4 months ago

        That’s all you really need to do to break windows. /s

        Edge/Internet Explorer is/were a cornerstone of any Windows install. Uninstall that and you can get all kinds of weird issues on your system.

        • Spectranox@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          2
          ·
          edit-2
          3 months ago

          Like my auto-installed Copilot doesn’t launch?

          Oh no!

          For some context, I’ve got a Windows install that I primarily keep around for VR gaming which I remove Edge from. That Copilot thing is the only “issue” I’ve noticed.

  • db2@lemmy.world
    link
    fedilink
    arrow-up
    0
    arrow-down
    1
    ·
    4 months ago

    Trust but verify. It was a text file, it doesn’t get much easier to do the second step of that.

    • aksdb@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      4 months ago

      … in which case you would have seen that they delete a path referenced by an env var being set earlier.

      How likely do you think it would have been to notice, that this env var will turn up empty in your specific case?

      • db2@lemmy.world
        link
        fedilink
        arrow-up
        0
        arrow-down
        1
        ·
        4 months ago

        A theme that deleted anything would have been enough of a red flag.