• @[email protected]
    link
    fedilink
    854 days ago

    Is the backend Python and the frontend JavaScript? Because then that would happen and just be normal, because Boolean true is True in python.

    • @[email protected]
      link
      fedilink
      1264 days ago

      Probably, but if you’re interpreting user inputs as raw code, you’ve got much much worse problems going on, lol.

      • LostXOR
        link
        fedilink
        314 days ago

        [...]&register=import os; os.system("sudo rm -rf /"); return True

        • @[email protected]
          link
          fedilink
          164 days ago

          Hey, that’s my username too. Or it was going to be, while the site was still up.

          What a coincidence!

          I guess I’ll wait for the site to come back, and see if it’s still available…

        • @[email protected]
          link
          fedilink
          9
          edit-2
          4 days ago

          A good place to put persistent malware. That’s why when using docker images always mount as ro if at all possible.

          • Ashley
            link
            fedilink
            94 days ago

            It’s you can modify the settings file you sure as hell can put the malware anywhere you want

            • @[email protected]
              link
              fedilink
              1
              edit-2
              20 hours ago

              It’s you can modify the settings file you sure as hell can put the malware anywhere you want

              True. (But in case it amuses you or others reading along:) But a code settings file still carries it’s own special risk, as an executable file, in a predictable place, that gets run regularly.

              An executable settings file is particularly nice for the attacker, as it’s a great place to ensure that any injected code gets executed without much effort.

              In particular, if an attacker can force a reboot, they know the settings file will get read reasonably early during the start-up process.

              So a settings file that’s written in code can be useful for an attacker who can write to the disk (like through a poorly secured upload prompt), but doesn’t have full shell access yet.

              They will typically upload a reverse shell, and use a line added to settings to ensure the reverse shell gets executed and starts listening for connections.

              Edit (because it may also amuse anyone reading along): The same attack can be accomplished with a JSON or YAML settings file, but it relies on the JSON or YAML interpreter having a known critical security flaw. Thankfully most of them don’t usually have one, most of the time, if they’re kept up to date.

          • @[email protected]
            link
            fedilink
            44 days ago

            Every environment has plenty of good places to put persistent malware. Even if you run your docker images as ro.

      • Trailblazing Braille Taser
        link
        fedilink
        84 days ago

        Given the warning about capitalization, the best possible case is that they’re using ast.literal_eval() rather than throwing untrusted input into eval().

        Err, I guess they might be comparing strings to ‘True’ and are choosing to be really strict about capitalization for some reason.

        • palordrolap
          link
          fedilink
          74 days ago

          In this instance, I think there was some suggestion to write code in mostly lower case, including all user variables, or at least inCamelCaseLikeThis with a leading lower case letter, and so to make True and False stand out, they’ve got to be capitalised.

          I mean. They could have been TRUE and FALSE. Would that have been preferable? Or how about a slightly more Pythonic style: __true__ and __false__

          • @[email protected]
            link
            fedilink
            44 days ago

            i would go with lowercase and just have it be a reserved word like the other ones. but I’m not super picky, i generally like to stick to what people are used to, and i can understand the reasoning behind the choice.

    • MHLoppyOP
      link
      fedilink
      94 days ago

      Searching for the phrase, documentation matches for Taiga so maybe you’re right!

    • Aatube
      link
      fedilink
      144 days ago

      Can’t they just convert a “true” input to backend to uppercase

      • @[email protected]
        link
        fedilink
        244 days ago

        Yep they should use a config file format like JSON or TOML or YAML or what have you, and then decode that into python objects. Using an actual programming language for config is dumb as hell IMO. (inb4 pissed off suckless fans)

      • @[email protected]
        link
        fedilink
        54 days ago

        Depends on how it’s set up. If the setting is going into the env it’s a string, so I’d expect some sort of

        if os.getenv("this_variable", "false").lower() == "true":   # or maybe "in true, yes, on, 1" if you want to be weird like yaml
          this_variable = True
        else:
          this_variable = False
        

        Except maybe a little more elegant and not typed on my phone.

        But if the instructions are telling the user to edit the settings directly, like where I wrote this_variable=True, they’d need to case it correctly there.

        • Fushuan [he/him]
          link
          fedilink
          14 days ago

          Fyi, using a condition to assign a boolean is equivalent to assigning the condition itself. No need for the IF.

          • @[email protected]
            link
            fedilink
            24 days ago

            true, though sometimes i find the more verbose style easier to read, and more maintainable (eg: you want to do something else in the block, you can just add a line instead of changing your ternary / etc). Small things