Using memory unsafe languages when practical alternatives exist #64
zmanion
started this conversation in
Ideas for new Bad Practices
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A bad practice: Using memory unsafe languages (e.g., C, C++) when practical alternatives exist. "Practical" includes but is not limited to:
Memory safe languages (e.g., Java, Rust, Go) remove certain classes of vulnerabilities (like buffer overflows) but are not immune to all vulnerabilities (e.g., logic bugs, deserialization).
Beta Was this translation helpful? Give feedback.
All reactions