• timuchan@lemm.ee
    link
    fedilink
    English
    arrow-up
    55
    ·
    2 days ago

    This was my thought as well, sanitize your inputs! Are they not quoting/casting to string before input?

      • Cocodapuf@lemmy.world
        link
        fedilink
        English
        arrow-up
        7
        arrow-down
        1
        ·
        edit-2
        19 hours ago

        Unless you’re coding from scratch it’s hard to not do this with any modern framework.

        I think that word modern is doing a lot of heavy lifting there.

        A lot of systems simply aren’t modern. There’s always that mentality of “well, it’s been working for the last 12 years, let’s not mess with it now”, despite all the valid objections like "but it’s running on Windows2000” or “it’s a data breach waiting to happen”…

      • limer@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        20
        ·
        2 days ago

        Word press code, and plugins, do not sanitize out of the box. You have to call an additional function, each time, that is not provided automatically. Many home made plugins miss that; many popular plugins used to be home made ones

      • SkaveRat@discuss.tchncs.de
        link
        fedilink
        English
        arrow-up
        13
        ·
        2 days ago

        A couple years ago I wanted to write a simple website with SQL injection vulnerability, so I could demonstrate sqlmap to someone

        It was surprisingly difficult (and every fiber in my body screamed)