Security
secure.txt
Associated article: Secure Coding in C++/CLI
Tags: .NET Security C/C++
Published source code accompanying the article by Robert Seacord in which he ports C++ programs to C++/CLI to see if they're still susceptible to buffer overflow vulnerabilities. 2
Secure Coding in C++/CLI
by Robert C. Seacord
Listing One
1. #include <stdlib.h>
2. #include <stdio.h>
3. #include <windows.h>
4. char buff[1028];
5. struct user {
6. char *name;
7. size_t len;
8. int uid;
9. };
10. bool checkpassword() {
11. char ...


