Security
securtst.txt
Associated article: Testing for Software Security
Tags: Security Tools
Published source code accompanying the article by Herbert H. Thompson and James A. Whittaker in which they discuss a fault model that describes a paradigm shift from traditional bugs to security vulnerabilities, then outline some of the attacks you can use to better expose vulnerabilities before release. Also see HOLODECK_LITE.EXE.
Testing for Software Security by Herbert H. Thompson and James A. Whittaker Listing One #include "stdafx.h" #include <windows.h> typedef HMODULE (WINAPI *loadlibrary_t) (LPCWSTR, HANDLE, DWORD); loadlibrary_t real_LoadLibraryExW; DWORD dwAddr; /* Our imposter ...


