this post was submitted on 26 Feb 2024
189 points (95.7% liked)
Programming
17326 readers
175 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
... You know not all development is Internet connected right? I'm in embedded, so maybe it's a bit of a siloed perspective, but most of our programs aren't exposed to any realistic attack surfaces. Even with IoT stuff, it's not like you need to harden your motor drivers or sensor drivers. The parts that are exposed to the network or other surfaces do need to be hardened, but I'd say 90+% of the people I've worked with have never had to worry about that.
Caveat on my own example, motor drivers should not allow self damaging behavior, but that's more of setting API or internal limits as a normal part of software design to protect from mistakes, not attacks.
It's fair to point out that not all development is Internet connected, but ~58% of developers work in web dev.
5% in desktop apps
3% in mobile
2.4% in embedded
And then of the remaining I'd be shocked if few of their domains excluded Internet facing devices.
https://survey.stackoverflow.co/2023/#section-developer-roles-developer-type
But you're right to point out development isn't a monolith. Professionally though: anyone working in a field where cybersecurity is a concern should be thinking about and knowledgeable of cybersec.
I didn't realize just how siloed my perspective may be haha, I appreciate the statistics. I'll agree that cyber security is a concern in general, and honestly everyone I know in industry has at least a moderate knowledge of basic cyber security concepts. Even in embedded, processes are evolving for safety critical code.