Assessment of the effectiveness of MiraclePtr in preventing vulnerabilities in Chrome
Google has analyzed the effectiveness of using the C++ code type MiraclePtr (raw_ptr<T>) instead of regular pointers to protect against vulnerabilities caused by accessing already freed memory areas (use-after-free). MiraclePtr provides a wrapper around pointers that performs additional checks and terminates execution if access to freed memory areas is detected. Support for MiraclePtr has been enabled by default in […]
