• BombOmOm@lemmy.world
      link
      fedilink
      English
      arrow-up
      64
      arrow-down
      1
      ·
      6 months ago

      Assuming the accounting system this thing links with both does not protect from SQL injection attacks (many don’t, despite it being easy to protect against) and also has a table named “Bills” with a field named “amount”; what this would do is go through every single Bills record and half the value in the amount field. This would completely fuck the system, particularly when it came to billing and tax filing as the numbers for accounts billing and receivable wouldn’t even come close to matching each other. The accounting department would have a hell of a time fixing the damage.

          • Mic_Check_One_Two@reddthat.com
            link
            fedilink
            arrow-up
            36
            ·
            6 months ago

            Yup. Rand() chooses a random float value for each entry. By default I believe it’s anywhere between 0 and 1. So it may divide the first bill by .76, then the second by .23, then the third by 0.63, etc… So you’d end up with a completely garbage database because you can’t even undo it by multiplying all of the numbers by a set value.

            • affiliate@lemmy.world
              link
              fedilink
              arrow-up
              5
              ·
              6 months ago

              if you’re trying to be malicious, wouldn’t it be better to multiply by Rand() instead of divide by Rand()?

              assuming there are a decent number of recorded sales, you’d end up seeing many of the calls to Rand() returning values very close to 0. so, if you’re dividing by those values, you’d end see lots of sales records reporting values in the thousands, millions, or even billions of dollars. i feel like that screams “software bug” more than anything. on the other hand, seeing lots of values multiplied by values close to 0 would certainly look weird, but it wouldn’t be as immediately suspicious.

              (of course a better thing would just be to use Rand() on a range other than [0,1])

        • dfc09@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          6 months ago

          I imagine they could if they knew exactly what you did and when, but if it doesn’t get discovered until later and nobody knows what happened, it would probably be a bitch to figure out

          • SchmidtGenetics@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            edit-2
            6 months ago

            Pretty sure it would be obvious to anyone working there that chicken tenders are $10 not $5. Even a quick glance at any single bill would show the issue.

                • Dr. Jenkem@lemmy.blugatch.tube
                  link
                  fedilink
                  English
                  arrow-up
                  0
                  ·
                  edit-2
                  6 months ago

                  No. The bill given to the customer would still show the correct amount.

                  And if anyone looked at previous bills from the backend, they would see normally priced chicken tenders. The total for the bill would be wrong though.

                  • SchmidtGenetics@lemmy.world
                    link
                    fedilink
                    arrow-up
                    0
                    arrow-down
                    2
                    ·
                    edit-2
                    6 months ago

                    Bill

                    2x orders chicken tenders $10 =20

                    Bill total $10 - 20/2 = 10…

                    Huh… I wonder what the issue is……

      • dan@upvote.au
        link
        fedilink
        arrow-up
        10
        arrow-down
        3
        ·
        edit-2
        6 months ago

        does not protect from SQL injection attacks (many don’t, despite it being easy to protect against)

        Every modern database library automatically protects against SQL injection, usually by using prepared statements (where the query with placeholders, and the placeholder values, are sent as two separate things). so a system would have to be written extremely poorly to be vulnerable to it.

        This post is just a joke as developers should hopefully be aware of the OWASP top 10 security vulnerabilities.

        Edit: Bad developers will do bad things, but any reasonable developer should be well aware of these risks.

        • r00ty@kbin.life
          link
          fedilink
          arrow-up
          9
          ·
          6 months ago

          Well no. If the programmer uses prepared statements, they are protected. If they use a prepared statement but actually just put their own unsanitized statement in there and execute it, it’s not protected.

          Now, I’d like to say it is 2024 and everyone should be using AT LEAST prepared statements for security. I’ve seen people doing some scary things in my time, and that includes quite recently.

          • dan@upvote.au
            link
            fedilink
            arrow-up
            1
            ·
            6 months ago

            Bad developers will do bad things, but most DB framework documentation points people towards the right way to do things, which is why I said it’s not common any more.

            • Dr. Jenkem@lemmy.blugatch.tube
              link
              fedilink
              English
              arrow-up
              5
              ·
              6 months ago

              Bad developers are common though. And good documentation won’t stop a bad developer from doing a bad thing.

              I agree that SQLi isn’t as common as it once was, but it still very much exists.

        • trxxruraxvr@lemmy.world
          link
          fedilink
          arrow-up
          9
          ·
          6 months ago

          Every modern database library automatically protects against SQL injection,

          No. Every modern library allows using prepared statements, but very few (of any) force using them. If the developer doesn’t use them the libraries won’t do shit to protect you.

          • dan@upvote.au
            link
            fedilink
            arrow-up
            1
            arrow-down
            2
            ·
            edit-2
            6 months ago

            What I meant is that not many people write raw SQL in product code any more, other than for analytical purposes (which are often in a system like Apache Airflow rather than in product code). ORM systems have mostly taken over except for cases where you really need raw SQL for whatever reason.

            • psud@aussie.zone
              link
              fedilink
              arrow-up
              2
              ·
              6 months ago

              Practically every dev learnt SQL and it’s really easy to put hands crafted SQL in code so it’s an easy mistake to make

    • Kerb@discuss.tchncs.de
      link
      fedilink
      arrow-up
      25
      arrow-down
      1
      ·
      edit-2
      6 months ago

      its an sql injection attack.
      its rather unlikely that it works in a modern app.

      assuming this would work,
      it injects a command in the sql database.

      it is assumed that the app runs a sql querry with the input field as a parameter e.g.
      INSERT INTO "bills" (item, ammount, tip) VALUES ("steak", "20,00 $", "content of the custom tip goes here");

      the semicolon indicates the end of the querry,
      so the the text would cause the app to run an unfinished querry, and then start a new querry that messes up the content of the bills table.