|
|
|
|
|
by Someone1234
2674 days ago
|
|
> You could write equivalently bad code in any language that supports array types, and get similarly broken results. You wouldn't get "similarly broken results." The results for doing this in C/C++ are far more serious, which was a point the article made. If you do this in Rust/C#/Java/etc they will safely crash. If you do this in C/C++ it is undefined behavior, it may crash, but it also could allow remote code execution. The Rust version of this bug is Security-Low (crash), the C++ version is Security-Critical (potential RCE). |
|