this post was submitted on 03 Jul 2024
44 points (79.7% liked)

Programmer Humor

24993 readers
252 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 

A shitpost about languages that generate CVEs

you are viewing a single comment's thread
view the rest of the comments
[–] BatmanAoD@programming.dev 27 points 1 year ago (1 children)

The trope will be "old" once the mainstream view is no longer that C-style memory management is "good enough".

That said, this particular vulnerability was primarily due to how signals work, which I understand to be kind of unavoidably terrible in any language.

[–] 5C5C5C@programming.dev 5 points 1 year ago (1 children)

A better language wouldn't have any need to use POSIX signals in this way.

[–] BatmanAoD@programming.dev 9 points 1 year ago

I'm not totally clear on why signals are used here in the first place. Arguably most C code doesn't "need" to use signals in complex ways, either.