this post was submitted on 24 Feb 2025
406 points (98.6% liked)

Technology

65007 readers
5648 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] timuchan@lemm.ee 57 points 1 week ago (1 children)

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

[–] undefined@lemmy.hogru.ch 51 points 1 week ago (4 children)

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

[–] limer@lemmy.dbzer0.com 42 points 1 week ago (2 children)

Legacy systems still handle more traffic than modern ones, I’d wager

[–] T156@lemmy.world 5 points 1 week ago

And it's probably not seen as urgent enough an issue to need replacing the whole system for.

[–] acosmichippo@lemmy.world 4 points 1 week ago

any govt system.

[–] limer@lemmy.dbzer0.com 22 points 1 week ago (1 children)

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

[–] PixelTron@lemm.ee 15 points 1 week ago (7 children)

Wordpress is a sin against mankind.

[–] Atherel@lemmy.dbzer0.com 14 points 1 week ago* (last edited 1 week ago) (1 children)

Let's take a blog and slap a whole e-commerce system on it through a plugin and let it auto translate with another one, what could go wrong. wait why is everything so slow, oh i need additional plugins for caching and one more for functionality XYZ why is everything broken now?!?

Edit: Sorry, my app had a hiccup and posted my comment several times

[–] narc0tic_bird@lemm.ee 9 points 1 week ago

Maybe your app is based on WordPress :'D

[–] limer@lemmy.dbzer0.com 6 points 1 week ago

Yet here we are, it and the plugins handle too much of my daily traffic. It’s easy to dismiss the piss poor coding, but is done at our peril.

Everyone of us has personal data stored in those God awful plugins, in their thousands of basic security holes

[–] SkaveRat@discuss.tchncs.de 13 points 1 week ago (1 children)

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)

Imagine how hard it is to be this bad. Yet still people manage to do it.

[–] Cocodapuf@lemmy.world 6 points 1 week ago* (last edited 1 week ago) (2 children)

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"...

[–] Llewellyn@lemm.ee 1 points 1 week ago (1 children)
[–] Cocodapuf@lemmy.world 1 points 1 week ago

Thanks, I missed that

[–] undefined@lemmy.hogru.ch 1 points 1 week ago

Is it though? I haven’t used a framework since probably 2007 that doesn’t do this. There are the smaller, more DIY frameworks out there but I’ve never used them professionally.