this post was submitted on 28 Sep 2024
692 points (96.1% liked)

Programmer Humor

19564 readers
603 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 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] mosiacmango@lemm.ee 1 points 1 month ago* (last edited 1 month ago) (1 children)

No one on earth trusts McAfee, be it the abysmal man or abysmal AV suite.

If the EDR or AV software is causing issues with your code running, it's possibly an issue with the suite, but it's more likely an issue with your code not following common sense security requirements like code signing.

[–] tyler@programming.dev 4 points 1 month ago (1 children)

you don't code sign during development....

[–] mosiacmango@lemm.ee 0 points 1 month ago (1 children)

It's not common, but it should be.

Still, that was just one example. EDR reacting to your code is likely a sign of some other shortcut being taken during the development process. It might even be a reasonable one, but if so it needs to be discussed and accounted for with the IT security team.

[–] tyler@programming.dev 1 points 1 month ago

You’re talking about during CI. Not during the actual coding process. You’re not signing code while you’re debugging.