[
  {
    "path": ".gitignore",
    "content": "Debug\nRelease\nipch\n.vs\n*.suo\n*.opensdf\n*.sdf\n*.user\n*.aps\n*.psess\n*.vspx\n*.vsp\n*.VC.db\n*.opendb\n*.pdb\nsdv*\nrunsdv*\n*.err\n*.log"
  },
  {
    "path": "BadMemoryManager/BadMemoryManager.cpp",
    "content": "/*\r\n\tManage bad memory regions for the BadMemory driver\r\n\tCopyright (C) 2016  Syahmi Azhar\r\n\r\n\tThis program is free software: you can redistribute it and/or modify\r\n\tit under the terms of the GNU General Public License as published by\r\n\tthe Free Software Foundation, either version 3 of the License, or\r\n\t(at your option) any later version.\r\n\r\n\tThis program is distributed in the hope that it will be useful,\r\n\tbut WITHOUT ANY WARRANTY; without even the implied warranty of\r\n\tMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n\tGNU General Public License for more details.\r\n\r\n\tYou should have received a copy of the GNU General Public License\r\n\talong with this program.  If not, see <http://www.gnu.org/licenses/>.\r\n*/\r\n\r\n\r\n#include \"stdafx.h\"\r\n#include \"BadMemoryManager.h\"\r\n\r\n#pragma comment(linker,\"\\\"/manifestdependency:type='win32' \\\r\nname='Microsoft.Windows.Common-Controls' version='6.0.0.0' \\\r\nprocessorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\\\"\")\r\n\r\n#define MAX_LOADSTRING 100\r\n\r\n// Global Variables:\r\nHINSTANCE hInst;                                // current instance\r\nWCHAR szTitle[MAX_LOADSTRING];                  // The title bar text\r\nWCHAR szWindowClass[MAX_LOADSTRING];            // the main window class name\r\n\r\nHWND ListBoxHwnd;\r\nHWND LowerBoundHwnd;\r\nHWND UpperBoundHwnd;\r\nHWND AddBtnHwnd;\r\nHWND DelBtnHwnd;\r\nstd::vector<BAD_REGION> BadRegions;\r\nstd::vector<BAD_REGION_STATUS> BadRegionStatus;\r\n\r\n\r\n// Forward declarations of functions included in this code module:\r\nATOM                MyRegisterClass(HINSTANCE hInstance);\r\nBOOL                InitInstance(HINSTANCE, int);\r\nLRESULT CALLBACK    WndProc(HWND, UINT, WPARAM, LPARAM);\r\nINT_PTR CALLBACK    About(HWND, UINT, WPARAM, LPARAM);\r\nvoid OnCreate(HWND hWnd);\r\nvoid RefreshListbox();\r\nvoid SaveEntries();\r\nvoid AddEntry();\r\nvoid DelEntry();\r\n\r\n\r\nint APIENTRY wWinMain(_In_ HINSTANCE hInstance,\r\n                     _In_opt_ HINSTANCE hPrevInstance,\r\n                     _In_ LPWSTR    lpCmdLine,\r\n                     _In_ int       nCmdShow)\r\n{\r\n    UNREFERENCED_PARAMETER(hPrevInstance);\r\n    UNREFERENCED_PARAMETER(lpCmdLine);\r\n\r\n\t// TODO: Place code here.\r\n\tINITCOMMONCONTROLSEX c;\r\n\tc.dwSize = sizeof(c);\r\n\tc.dwICC = 0;\r\n\tInitCommonControlsEx(&c);\r\n\r\n    // Initialize global strings\r\n    LoadStringW(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);\r\n    LoadStringW(hInstance, IDC_BADMEMORYMANAGER, szWindowClass, MAX_LOADSTRING);\r\n    MyRegisterClass(hInstance);\r\n\r\n    // Perform application initialization:\r\n    if (!InitInstance (hInstance, nCmdShow))\r\n    {\r\n        return FALSE;\r\n    }\r\n\r\n    HACCEL hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_BADMEMORYMANAGER));\r\n\r\n    MSG msg;\r\n\r\n    // Main message loop:\r\n    while (GetMessage(&msg, nullptr, 0, 0))\r\n    {\r\n        if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))\r\n        {\r\n            TranslateMessage(&msg);\r\n            DispatchMessage(&msg);\r\n        }\r\n    }\r\n\r\n    return (int) msg.wParam;\r\n}\r\n\r\n\r\n\r\n//\r\n//  FUNCTION: MyRegisterClass()\r\n//\r\n//  PURPOSE: Registers the window class.\r\n//\r\nATOM MyRegisterClass(HINSTANCE hInstance)\r\n{\r\n    WNDCLASSEXW wcex;\r\n\r\n    wcex.cbSize = sizeof(WNDCLASSEX);\r\n\r\n    wcex.style          = CS_HREDRAW | CS_VREDRAW;\r\n    wcex.lpfnWndProc    = WndProc;\r\n    wcex.cbClsExtra     = 0;\r\n    wcex.cbWndExtra     = 0;\r\n    wcex.hInstance      = hInstance;\r\n    wcex.hIcon          = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_BADMEMORYMANAGER));\r\n    wcex.hCursor        = LoadCursor(nullptr, IDC_ARROW);\r\n    wcex.hbrBackground  = (HBRUSH)(COLOR_BTNFACE + 1);\r\n    wcex.lpszMenuName   = MAKEINTRESOURCEW(IDC_BADMEMORYMANAGER);\r\n    wcex.lpszClassName  = szWindowClass;\r\n    wcex.hIconSm        = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL));\r\n\r\n    return RegisterClassExW(&wcex);\r\n}\r\n\r\n//\r\n//   FUNCTION: InitInstance(HINSTANCE, int)\r\n//\r\n//   PURPOSE: Saves instance handle and creates main window\r\n//\r\n//   COMMENTS:\r\n//\r\n//        In this function, we save the instance handle in a global variable and\r\n//        create and display the main program window.\r\n//\r\nBOOL InitInstance(HINSTANCE hInstance, int nCmdShow)\r\n{\r\n   hInst = hInstance; // Store instance handle in our global variable\r\n\r\n   HWND hWnd = CreateWindowW(szWindowClass, szTitle,\r\n\t   WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX,\r\n\t   CW_USEDEFAULT, 0, 640, 610, nullptr, nullptr, hInstance, nullptr);\r\n\r\n   if (!hWnd)\r\n   {\r\n      return FALSE;\r\n   }\r\n\r\n   ShowWindow(hWnd, nCmdShow);\r\n   UpdateWindow(hWnd);\r\n\r\n   return TRUE;\r\n}\r\n\r\n//\r\n//  FUNCTION: WndProc(HWND, UINT, WPARAM, LPARAM)\r\n//\r\n//  PURPOSE:  Processes messages for the main window.\r\n//\r\n//  WM_COMMAND  - process the application menu\r\n//  WM_PAINT    - Paint the main window\r\n//  WM_DESTROY  - post a quit message and return\r\n//\r\n//\r\nLRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)\r\n{\r\n    switch (message)\r\n    {\r\n    case WM_COMMAND:\r\n        {\r\n            int wmId = LOWORD(wParam);\r\n\t\t\tint notId = HIWORD(wParam);\r\n\r\n\t\t\tif (notId == BN_CLICKED)\r\n\t\t\t{\r\n\t\t\t\tif ((HWND)lParam == AddBtnHwnd) {\r\n\t\t\t\t\tAddEntry();\r\n\t\t\t\t} else if ((HWND)lParam == DelBtnHwnd) {\r\n\t\t\t\t\tDelEntry();\r\n\t\t\t\t}\r\n\t\t\t}\r\n            // Parse the menu selections:\r\n            switch (wmId)\r\n            {\r\n            case IDM_ABOUT:\r\n                DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUTBOX), hWnd, About);\r\n                break;\r\n            case IDM_EXIT:\r\n                DestroyWindow(hWnd);\r\n                break;\r\n            default:\r\n                return DefWindowProc(hWnd, message, wParam, lParam);\r\n            }\r\n        }\r\n        break;\r\n\tcase WM_CREATE:\r\n\t\tOnCreate(hWnd);\r\n\t\tbreak;\r\n    case WM_DESTROY:\r\n\t\t//SaveEntries();\r\n        PostQuitMessage(0);\r\n        break;\r\n    default:\r\n        return DefWindowProc(hWnd, message, wParam, lParam);\r\n    }\r\n    return 0;\r\n}\r\n\r\n// Message handler for about box.\r\nINT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)\r\n{\r\n    UNREFERENCED_PARAMETER(lParam);\r\n    switch (message)\r\n    {\r\n    case WM_INITDIALOG:\r\n        return (INT_PTR)TRUE;\r\n\r\n    case WM_COMMAND:\r\n        if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)\r\n        {\r\n            EndDialog(hDlg, LOWORD(wParam));\r\n            return (INT_PTR)TRUE;\r\n        }\r\n        break;\r\n    }\r\n    return (INT_PTR)FALSE;\r\n}\r\n\r\nvoid OnCreate(HWND hWnd)\r\n{\r\n\tHWND hTempWnd;\r\n\tHDC hDC = GetDC(hWnd);\r\n\tint nFontHeight = -MulDiv(10, GetDeviceCaps(hDC, LOGPIXELSY), 72);\r\n\tReleaseDC(hWnd, hDC);\r\n\r\n\tHFONT hFont = CreateFont(nFontHeight, 0, 0, 0, FW_DONTCARE, FALSE, FALSE, FALSE, DEFAULT_CHARSET, OUT_OUTLINE_PRECIS,\r\n\t\tCLIP_DEFAULT_PRECIS, CLEARTYPE_QUALITY, VARIABLE_PITCH, TEXT(\"Trebuchet MS\"));\r\n\r\n\thTempWnd = CreateWindowEx(0, WC_STATIC, L\"Address:\", WS_VISIBLE | WS_CHILD | SS_RIGHT, 10, 10, 90, 26, hWnd, NULL, NULL, 0);\r\n\tSendMessage(hTempWnd, WM_SETFONT, (LPARAM)hFont, 0);\r\n\r\n\thTempWnd = CreateWindowEx(0, WC_STATIC, L\"-\", WS_VISIBLE | WS_CHILD | SS_CENTER, 310, 10, 20, 26, hWnd, NULL, NULL, 0);\r\n\tSendMessage(hTempWnd, WM_SETFONT, (LPARAM)hFont, 0);\r\n\r\n\thTempWnd = CreateWindowEx(0, WC_STATIC, L\"Bad Regions:\", WS_VISIBLE | WS_CHILD | SS_RIGHT, 10, 40, 90, 26, hWnd, NULL, NULL, 0);\r\n\tSendMessage(hTempWnd, WM_SETFONT, (LPARAM)hFont, 0);\r\n\r\n\tLowerBoundHwnd = CreateWindowEx(0, WC_EDIT, L\"\", WS_VISIBLE | WS_CHILD | WS_BORDER, 110, 10, 200, 26, hWnd, NULL, NULL, 0);\r\n\tSendMessage(LowerBoundHwnd, WM_SETFONT, (LPARAM)hFont, 0);\r\n\r\n\tUpperBoundHwnd = CreateWindowEx(0, WC_EDIT, L\"\", WS_VISIBLE | WS_CHILD | WS_BORDER, 330, 10, 200, 26, hWnd, NULL, NULL, 0);\r\n\tSendMessage(UpperBoundHwnd, WM_SETFONT, (LPARAM)hFont, 0);\r\n\r\n\tListBoxHwnd = CreateWindowEx(0, WC_LISTBOX, L\"\", WS_VISIBLE | WS_CHILD | WS_BORDER | WS_VSCROLL | LBS_NOTIFY | LBS_HASSTRINGS, 110, 40, 420, 500, hWnd, NULL, NULL, 0);\r\n\tSendMessage(ListBoxHwnd, WM_SETFONT, (LPARAM)hFont, 0);\r\n\r\n\tAddBtnHwnd = CreateWindowEx(0, WC_BUTTON, L\"Add\", WS_VISIBLE | WS_CHILD, 540, 10, 70, 26, hWnd, NULL, NULL, 0);\r\n\tSendMessage(AddBtnHwnd, WM_SETFONT, (LPARAM)hFont, 0);\r\n\r\n\tDelBtnHwnd = CreateWindowEx(0, WC_BUTTON, L\"Del\", WS_VISIBLE | WS_CHILD, 540, 40, 70, 26, hWnd, NULL, NULL, 0);\r\n\tSendMessage(DelBtnHwnd, WM_SETFONT, (LPARAM)hFont, 0);\r\n\r\n\tRefreshListbox();\r\n}\r\n\r\nvoid LoadEntries()\r\n{\r\n\tHKEY hKey;\r\n\tDWORD dwSize;\r\n\tunsigned char* pBuffer;\r\n\t\r\n\tif (ERROR_SUCCESS != RegOpenKeyEx(HKEY_LOCAL_MACHINE, L\"SYSTEM\\\\CurrentControlSet\\\\Services\\\\BadMemory\\\\Parameters\", 0, KEY_READ, &hKey)) {\r\n\t\treturn;\r\n\t}\r\n\r\n\tif (ERROR_SUCCESS != RegQueryValueEx(hKey, L\"BadRegions\", NULL, NULL, NULL, &dwSize)) {\r\n\t\tRegCloseKey(hKey);\r\n\t\treturn;\r\n\t}\r\n\r\n\tpBuffer = new unsigned char[dwSize];\r\n\tBadRegions.clear();\r\n\twhile (SendMessage(ListBoxHwnd, LB_DELETESTRING, 0, 0) > 0);\r\n\r\n\tif (ERROR_SUCCESS == RegQueryValueEx(hKey, L\"BadRegions\", NULL, NULL, pBuffer, &dwSize)) {\r\n\t\tint nTotal = dwSize / sizeof(BAD_REGION);\r\n\t\tPBAD_REGION pBadRegions = (PBAD_REGION)pBuffer;\r\n\r\n\t\tfor (int i = 0; i < nTotal; i++)\r\n\t\t{\r\n\t\t\tBadRegions.push_back(pBadRegions[i]);\r\n\t\t}\r\n\t}\r\n\r\n\tif (ERROR_SUCCESS != RegQueryValueEx(hKey, L\"BadRegionStatus\", NULL, NULL, NULL, &dwSize)) {\r\n\t\tRegCloseKey(hKey);\r\n\t\treturn;\r\n\t}\r\n\r\n\tpBuffer = new unsigned char[dwSize];\r\n\tBadRegionStatus.clear();\r\n\r\n\tif (ERROR_SUCCESS == RegQueryValueEx(hKey, L\"BadRegionStatus\", NULL, NULL, pBuffer, &dwSize)) {\r\n\t\tint nTotal = dwSize / sizeof(BAD_REGION);\r\n\t\tPBAD_REGION_STATUS pBadRegionStatus = (PBAD_REGION_STATUS)pBuffer;\r\n\r\n\t\tfor (int i = 0; i < nTotal; i++)\r\n\t\t{\r\n\t\t\tBadRegionStatus.push_back(pBadRegionStatus[i]);\r\n\t\t}\r\n\t}\r\n\r\n\tRegCloseKey(hKey);\r\n\tdelete[] pBuffer;\r\n}\r\n\r\nvoid SaveEntries()\r\n{\r\n\tHKEY hKey;\r\n\tunsigned int nBuffer = sizeof(BAD_REGION) * (unsigned int)BadRegions.size();\r\n\tunsigned char* pBuffer;\r\n\r\n\tif (ERROR_SUCCESS != RegCreateKeyEx(HKEY_LOCAL_MACHINE, L\"SYSTEM\\\\CurrentControlSet\\\\Services\\\\BadMemory\\\\Parameters\", 0, NULL, 0, KEY_ALL_ACCESS, NULL, &hKey, NULL)) {\r\n\t\tMessageBoxA(0, \"Unable to create registry entry. Make sure to run this app with admin privilege.\", \"Failed to create registry\", MB_OK);\r\n\t\treturn;\r\n\t}\r\n\r\n\tpBuffer = new unsigned char[nBuffer];\r\n\tPBAD_REGION pBadRegion = (PBAD_REGION)pBuffer;\r\n\tfor (auto it = BadRegions.begin(); it != BadRegions.end(); it++)\r\n\t{\r\n\t\t*pBadRegion++ = (*it);\r\n\t}\r\n\r\n\tif (ERROR_SUCCESS != RegSetValueEx(hKey, L\"BadRegions\", 0, REG_BINARY, pBuffer, nBuffer)) {\r\n\t\tMessageBoxA(0, \"Unable to save region data. Make sure to run this app with admin privilege.\", \"Failed to save data\", MB_OK);\r\n\t}\r\n\r\n\tdelete[] pBuffer;\r\n\tRegCloseKey(hKey);\r\n}\r\n\r\nvoid RefreshListbox()\r\n{\r\n\tLoadEntries();\r\n\r\n\tfor (auto it = BadRegions.begin(); it != BadRegions.end(); it++)\r\n\t{\r\n\t\tchar* status = \"Restart\";\r\n\t\tchar szAddr[64];\r\n\r\n\t\tfor (auto itStatus = BadRegionStatus.begin(); itStatus != BadRegionStatus.end(); itStatus++)\r\n\t\t{\r\n\t\t\tif (it->LowerBound == itStatus->LowerBound && it->UpperBound == itStatus->UpperBound)\r\n\t\t\t{\r\n\t\t\t\tif (itStatus->Status) {\r\n\t\t\t\t\tstatus = \"OK\";\r\n\t\t\t\t} else {\r\n\t\t\t\t\tstatus = \"FAIL\";\r\n\t\t\t\t}\r\n\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tsprintf_s(szAddr, \"%llx - %llx [%s]\", it->LowerBound, it->UpperBound, status);\r\n\t\tSendMessageA(ListBoxHwnd, LB_ADDSTRING, 0, (LPARAM)&szAddr);\r\n\t}\r\n}\r\n\r\nvoid AddEntry()\r\n{\r\n\tchar szLower[32];\r\n\tchar szUpper[32];\r\n\tchar* p;\r\n\tBAD_REGION region;\r\n\r\n\tGetWindowTextA(LowerBoundHwnd, szLower, 32);\r\n\tGetWindowTextA(UpperBoundHwnd, szUpper, 32);\r\n\r\n\tregion.LowerBound = _strtoui64(szLower, &p, 16);\r\n\tregion.UpperBound = _strtoui64(szUpper, &p, 16);\r\n\r\n\tif (region.LowerBound == 0 && region.UpperBound == 0) {\r\n\t\tMessageBoxA(0, \"Please specify correct address for both lower address and upper address\", \"Invalid input\", MB_OK);\r\n\t\treturn;\r\n\t} else if (region.LowerBound >= region.UpperBound) {\r\n\t\tMessageBoxA(0, \"Incorrect range\", \"Invalid input\", MB_OK);\r\n\t\treturn;\r\n\t}\r\n\r\n\tSetWindowTextA(LowerBoundHwnd, \"\");\r\n\tSetWindowTextA(UpperBoundHwnd, \"\");\r\n\r\n\tBadRegions.push_back(region);\r\n\r\n\tSaveEntries();\r\n\tRefreshListbox();\r\n}\r\n\r\nvoid DelEntry()\r\n{\r\n\tLRESULT nSel = SendMessage(ListBoxHwnd, LB_GETCURSEL, 0, 0);\r\n\tif (nSel == LB_ERR) return;\r\n\r\n\tBadRegions.erase(BadRegions.begin() + nSel);\r\n\r\n\tSaveEntries();\r\n\tRefreshListbox();\r\n}"
  },
  {
    "path": "BadMemoryManager/BadMemoryManager.h",
    "content": "#pragma once\r\n\r\n#include \"resource.h\"\r\n\r\ntypedef struct\r\n{\r\n\tULONGLONG LowerBound;\r\n\tULONGLONG UpperBound;\r\n} BAD_REGION, *PBAD_REGION;\r\n\r\ntypedef struct\r\n{\r\n\tULONGLONG LowerBound;\r\n\tULONGLONG UpperBound;\r\n\tBOOLEAN Status;\r\n} BAD_REGION_STATUS, *PBAD_REGION_STATUS;\r\n"
  },
  {
    "path": "BadMemoryManager/BadMemoryManager.vcxproj",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project DefaultTargets=\"Build\" ToolsVersion=\"14.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\r\n  <ItemGroup Label=\"ProjectConfigurations\">\r\n    <ProjectConfiguration Include=\"Debug|Win32\">\r\n      <Configuration>Debug</Configuration>\r\n      <Platform>Win32</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Release|Win32\">\r\n      <Configuration>Release</Configuration>\r\n      <Platform>Win32</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Debug|x64\">\r\n      <Configuration>Debug</Configuration>\r\n      <Platform>x64</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Release|x64\">\r\n      <Configuration>Release</Configuration>\r\n      <Platform>x64</Platform>\r\n    </ProjectConfiguration>\r\n  </ItemGroup>\r\n  <PropertyGroup Label=\"Globals\">\r\n    <ProjectGuid>{31237A35-6248-4D5D-B5EA-E9205AB90DF2}</ProjectGuid>\r\n    <Keyword>Win32Proj</Keyword>\r\n    <RootNamespace>BadMemoryManager</RootNamespace>\r\n    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>\r\n  </PropertyGroup>\r\n  <Import Project=\"$(VCTargetsPath)\\Microsoft.Cpp.Default.props\" />\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|Win32'\" Label=\"Configuration\">\r\n    <ConfigurationType>Application</ConfigurationType>\r\n    <UseDebugLibraries>true</UseDebugLibraries>\r\n    <PlatformToolset>v140_xp</PlatformToolset>\r\n    <CharacterSet>Unicode</CharacterSet>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|Win32'\" Label=\"Configuration\">\r\n    <ConfigurationType>Application</ConfigurationType>\r\n    <UseDebugLibraries>false</UseDebugLibraries>\r\n    <PlatformToolset>v140_xp</PlatformToolset>\r\n    <WholeProgramOptimization>true</WholeProgramOptimization>\r\n    <CharacterSet>Unicode</CharacterSet>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|x64'\" Label=\"Configuration\">\r\n    <ConfigurationType>Application</ConfigurationType>\r\n    <UseDebugLibraries>true</UseDebugLibraries>\r\n    <PlatformToolset>v140_xp</PlatformToolset>\r\n    <CharacterSet>Unicode</CharacterSet>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|x64'\" Label=\"Configuration\">\r\n    <ConfigurationType>Application</ConfigurationType>\r\n    <UseDebugLibraries>false</UseDebugLibraries>\r\n    <PlatformToolset>v140_xp</PlatformToolset>\r\n    <WholeProgramOptimization>true</WholeProgramOptimization>\r\n    <CharacterSet>Unicode</CharacterSet>\r\n  </PropertyGroup>\r\n  <Import Project=\"$(VCTargetsPath)\\Microsoft.Cpp.props\" />\r\n  <ImportGroup Label=\"ExtensionSettings\">\r\n  </ImportGroup>\r\n  <ImportGroup Label=\"Shared\">\r\n  </ImportGroup>\r\n  <ImportGroup Label=\"PropertySheets\" Condition=\"'$(Configuration)|$(Platform)'=='Debug|Win32'\">\r\n    <Import Project=\"$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props\" Condition=\"exists('$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props')\" Label=\"LocalAppDataPlatform\" />\r\n  </ImportGroup>\r\n  <ImportGroup Label=\"PropertySheets\" Condition=\"'$(Configuration)|$(Platform)'=='Release|Win32'\">\r\n    <Import Project=\"$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props\" Condition=\"exists('$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props')\" Label=\"LocalAppDataPlatform\" />\r\n  </ImportGroup>\r\n  <ImportGroup Label=\"PropertySheets\" Condition=\"'$(Configuration)|$(Platform)'=='Debug|x64'\">\r\n    <Import Project=\"$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props\" Condition=\"exists('$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props')\" Label=\"LocalAppDataPlatform\" />\r\n  </ImportGroup>\r\n  <ImportGroup Label=\"PropertySheets\" Condition=\"'$(Configuration)|$(Platform)'=='Release|x64'\">\r\n    <Import Project=\"$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props\" Condition=\"exists('$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props')\" Label=\"LocalAppDataPlatform\" />\r\n  </ImportGroup>\r\n  <PropertyGroup Label=\"UserMacros\" />\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|Win32'\">\r\n    <LinkIncremental>true</LinkIncremental>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|x64'\">\r\n    <LinkIncremental>true</LinkIncremental>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|Win32'\">\r\n    <LinkIncremental>false</LinkIncremental>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|x64'\">\r\n    <LinkIncremental>false</LinkIncremental>\r\n  </PropertyGroup>\r\n  <ItemDefinitionGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|Win32'\">\r\n    <ClCompile>\r\n      <PrecompiledHeader>Use</PrecompiledHeader>\r\n      <WarningLevel>Level3</WarningLevel>\r\n      <Optimization>Disabled</Optimization>\r\n      <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r\n      <SDLCheck>true</SDLCheck>\r\n    </ClCompile>\r\n    <Link>\r\n      <SubSystem>Windows</SubSystem>\r\n      <GenerateDebugInformation>true</GenerateDebugInformation>\r\n      <UACExecutionLevel>RequireAdministrator</UACExecutionLevel>\r\n    </Link>\r\n  </ItemDefinitionGroup>\r\n  <ItemDefinitionGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|x64'\">\r\n    <ClCompile>\r\n      <PrecompiledHeader>Use</PrecompiledHeader>\r\n      <WarningLevel>Level3</WarningLevel>\r\n      <Optimization>Disabled</Optimization>\r\n      <PreprocessorDefinitions>_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r\n      <SDLCheck>true</SDLCheck>\r\n    </ClCompile>\r\n    <Link>\r\n      <SubSystem>Windows</SubSystem>\r\n      <GenerateDebugInformation>true</GenerateDebugInformation>\r\n      <UACExecutionLevel>RequireAdministrator</UACExecutionLevel>\r\n    </Link>\r\n  </ItemDefinitionGroup>\r\n  <ItemDefinitionGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|Win32'\">\r\n    <ClCompile>\r\n      <WarningLevel>Level3</WarningLevel>\r\n      <PrecompiledHeader>Use</PrecompiledHeader>\r\n      <Optimization>MaxSpeed</Optimization>\r\n      <FunctionLevelLinking>true</FunctionLevelLinking>\r\n      <IntrinsicFunctions>true</IntrinsicFunctions>\r\n      <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r\n      <SDLCheck>true</SDLCheck>\r\n      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>\r\n    </ClCompile>\r\n    <Link>\r\n      <SubSystem>Windows</SubSystem>\r\n      <EnableCOMDATFolding>true</EnableCOMDATFolding>\r\n      <OptimizeReferences>true</OptimizeReferences>\r\n      <GenerateDebugInformation>true</GenerateDebugInformation>\r\n      <UACExecutionLevel>RequireAdministrator</UACExecutionLevel>\r\n    </Link>\r\n  </ItemDefinitionGroup>\r\n  <ItemDefinitionGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|x64'\">\r\n    <ClCompile>\r\n      <WarningLevel>Level3</WarningLevel>\r\n      <PrecompiledHeader>Use</PrecompiledHeader>\r\n      <Optimization>MaxSpeed</Optimization>\r\n      <FunctionLevelLinking>true</FunctionLevelLinking>\r\n      <IntrinsicFunctions>true</IntrinsicFunctions>\r\n      <PreprocessorDefinitions>NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r\n      <SDLCheck>true</SDLCheck>\r\n      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>\r\n    </ClCompile>\r\n    <Link>\r\n      <SubSystem>Windows</SubSystem>\r\n      <EnableCOMDATFolding>true</EnableCOMDATFolding>\r\n      <OptimizeReferences>true</OptimizeReferences>\r\n      <GenerateDebugInformation>true</GenerateDebugInformation>\r\n      <UACExecutionLevel>RequireAdministrator</UACExecutionLevel>\r\n    </Link>\r\n  </ItemDefinitionGroup>\r\n  <ItemGroup>\r\n    <Text Include=\"ReadMe.txt\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <ClInclude Include=\"BadMemoryManager.h\" />\r\n    <ClInclude Include=\"Resource.h\" />\r\n    <ClInclude Include=\"stdafx.h\" />\r\n    <ClInclude Include=\"targetver.h\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <ClCompile Include=\"BadMemoryManager.cpp\" />\r\n    <ClCompile Include=\"stdafx.cpp\">\r\n      <PrecompiledHeader Condition=\"'$(Configuration)|$(Platform)'=='Debug|Win32'\">Create</PrecompiledHeader>\r\n      <PrecompiledHeader Condition=\"'$(Configuration)|$(Platform)'=='Debug|x64'\">Create</PrecompiledHeader>\r\n      <PrecompiledHeader Condition=\"'$(Configuration)|$(Platform)'=='Release|Win32'\">Create</PrecompiledHeader>\r\n      <PrecompiledHeader Condition=\"'$(Configuration)|$(Platform)'=='Release|x64'\">Create</PrecompiledHeader>\r\n    </ClCompile>\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <ResourceCompile Include=\"BadMemoryManager.rc\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <Image Include=\"BadMemoryManager.ico\" />\r\n    <Image Include=\"small.ico\" />\r\n  </ItemGroup>\r\n  <Import Project=\"$(VCTargetsPath)\\Microsoft.Cpp.targets\" />\r\n  <ImportGroup Label=\"ExtensionTargets\">\r\n  </ImportGroup>\r\n</Project>"
  },
  {
    "path": "BadMemoryManager/BadMemoryManager.vcxproj.filters",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n  <ItemGroup>\n    <Filter Include=\"Source Files\">\n      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>\n      <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>\n    </Filter>\n    <Filter Include=\"Header Files\">\n      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>\n      <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>\n    </Filter>\n    <Filter Include=\"Resource Files\">\n      <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>\n      <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>\n    </Filter>\n  </ItemGroup>\n  <ItemGroup>\n    <Text Include=\"ReadMe.txt\" />\n  </ItemGroup>\n  <ItemGroup>\n    <ClInclude Include=\"stdafx.h\">\n      <Filter>Header Files</Filter>\n    </ClInclude>\n    <ClInclude Include=\"targetver.h\">\n      <Filter>Header Files</Filter>\n    </ClInclude>\n    <ClInclude Include=\"Resource.h\">\n      <Filter>Header Files</Filter>\n    </ClInclude>\n    <ClInclude Include=\"BadMemoryManager.h\">\n      <Filter>Header Files</Filter>\n    </ClInclude>\n  </ItemGroup>\n  <ItemGroup>\n    <ClCompile Include=\"stdafx.cpp\">\n      <Filter>Source Files</Filter>\n    </ClCompile>\n    <ClCompile Include=\"BadMemoryManager.cpp\">\n      <Filter>Source Files</Filter>\n    </ClCompile>\n  </ItemGroup>\n  <ItemGroup>\n    <ResourceCompile Include=\"BadMemoryManager.rc\">\n      <Filter>Resource Files</Filter>\n    </ResourceCompile>\n  </ItemGroup>\n  <ItemGroup>\n    <Image Include=\"small.ico\">\n      <Filter>Resource Files</Filter>\n    </Image>\n    <Image Include=\"BadMemoryManager.ico\">\n      <Filter>Resource Files</Filter>\n    </Image>\n  </ItemGroup>\n</Project>"
  },
  {
    "path": "BadMemoryManager/ReadMe.txt",
    "content": "========================================================================\n    WIN32 APPLICATION : BadMemoryManager Project Overview\n========================================================================\n\nAppWizard has created this BadMemoryManager application for you.\n\nThis file contains a summary of what you will find in each of the files that\nmake up your BadMemoryManager application.\n\n\nBadMemoryManager.vcxproj\n    This is the main project file for VC++ projects generated using an Application Wizard.\n    It contains information about the version of Visual C++ that generated the file, and\n    information about the platforms, configurations, and project features selected with the\n    Application Wizard.\n\nBadMemoryManager.vcxproj.filters\n    This is the filters file for VC++ projects generated using an Application Wizard. \n    It contains information about the association between the files in your project \n    and the filters. This association is used in the IDE to show grouping of files with\n    similar extensions under a specific node (for e.g. \".cpp\" files are associated with the\n    \"Source Files\" filter).\n\nBadMemoryManager.cpp\n    This is the main application source file.\n\n/////////////////////////////////////////////////////////////////////////////\nAppWizard has created the following resources:\n\nBadMemoryManager.rc\n    This is a listing of all of the Microsoft Windows resources that the\n    program uses.  It includes the icons, bitmaps, and cursors that are stored\n    in the RES subdirectory.  This file can be directly edited in Microsoft\n    Visual C++.\n\nResource.h\n    This is the standard header file, which defines new resource IDs.\n    Microsoft Visual C++ reads and updates this file.\n\nBadMemoryManager.ico\n    This is an icon file, which is used as the application's icon (32x32).\n    This icon is included by the main resource file BadMemoryManager.rc.\n\nsmall.ico\n    This is an icon file, which contains a smaller version (16x16)\n    of the application's icon. This icon is included by the main resource\n    file BadMemoryManager.rc.\n\n/////////////////////////////////////////////////////////////////////////////\nOther standard files:\n\nStdAfx.h, StdAfx.cpp\n    These files are used to build a precompiled header (PCH) file\n    named BadMemoryManager.pch and a precompiled types file named StdAfx.obj.\n\n/////////////////////////////////////////////////////////////////////////////\nOther notes:\n\nAppWizard uses \"TODO:\" comments to indicate parts of the source code you\nshould add to or customize.\n\n/////////////////////////////////////////////////////////////////////////////\n"
  },
  {
    "path": "BadMemoryManager/Resource.h",
    "content": "//{{NO_DEPENDENCIES}}\n// Microsoft Visual C++ generated include file.\n// Used by BadMemoryManager.rc\n//\n\n#define IDS_APP_TITLE\t\t\t103\n\n#define IDR_MAINFRAME\t\t\t128\n#define IDD_BADMEMORYMANAGER_DIALOG\t102\n#define IDD_ABOUTBOX\t\t\t103\n#define IDM_ABOUT\t\t\t\t104\n#define IDM_EXIT\t\t\t\t105\n#define IDI_BADMEMORYMANAGER\t\t\t107\n#define IDI_SMALL\t\t\t\t108\n#define IDC_BADMEMORYMANAGER\t\t\t109\n#define IDC_MYICON\t\t\t\t2\n#ifndef IDC_STATIC\n#define IDC_STATIC\t\t\t\t-1\n#endif\n// Next default values for new objects\n//\n#ifdef APSTUDIO_INVOKED\n#ifndef APSTUDIO_READONLY_SYMBOLS\n\n#define _APS_NO_MFC\t\t\t\t\t130\n#define _APS_NEXT_RESOURCE_VALUE\t129\n#define _APS_NEXT_COMMAND_VALUE\t\t32771\n#define _APS_NEXT_CONTROL_VALUE\t\t1000\n#define _APS_NEXT_SYMED_VALUE\t\t110\n#endif\n#endif\n"
  },
  {
    "path": "BadMemoryManager/stdafx.cpp",
    "content": "// stdafx.cpp : source file that includes just the standard includes\n// BadMemoryManager.pch will be the pre-compiled header\n// stdafx.obj will contain the pre-compiled type information\n\n#include \"stdafx.h\"\n\n// TODO: reference any additional headers you need in STDAFX.H\n// and not in this file\n"
  },
  {
    "path": "BadMemoryManager/stdafx.h",
    "content": "// stdafx.h : include file for standard system include files,\r\n// or project specific include files that are used frequently, but\r\n// are changed infrequently\r\n//\r\n\r\n#pragma once\r\n\r\n#include \"targetver.h\"\r\n\r\n#define WIN32_LEAN_AND_MEAN             // Exclude rarely-used stuff from Windows headers\r\n// Windows Header Files:\r\n#include <windows.h>\r\n#include <CommCtrl.h>\r\n\r\n// C RunTime Header Files\r\n#include <stdlib.h>\r\n#include <malloc.h>\r\n#include <memory.h>\r\n#include <tchar.h>\r\n#include <vector>\r\n\r\n// TODO: reference additional headers your program requires here\r\n#pragma comment(lib, \"comctl32.lib\")\r\n"
  },
  {
    "path": "BadMemoryManager/targetver.h",
    "content": "#pragma once\n\n// Including SDKDDKVer.h defines the highest available Windows platform.\n\n// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and\n// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.\n\n#include <SDKDDKVer.h>\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
  },
  {
    "path": "README.md",
    "content": "# BadMemory\nMake portions of memory unusable for Windows. Equivalent to badram on linux but for windows.\n\nIt is possible to run windows with defective memory by telling windows not to use the faulty address by manually adding entry to badmemorylist on {badmemory} section of windows BCD.\nFor example:\n\n  bcd /set {badmemory} badmemorylist PFN1 PFN2 PFN3 ...\n\nHowever, there is limitation on the list which will causes bootmanager to fail with STATUS_BUFFER_TOO_SMALL and will not load the windows at all. Due to this and without succeed finding other solutions, this driver was created to overcome the issue.\n\n## Warning\nThis driver will start early at the boot time and will try to block the bad RAM region. If somehow Windows/other drivers uses the bad RAM region before this driver able to block them, it will shows [FAIL] on the BadMemoryManager. So it offers no guarantee that the region will always be blocked by the driver.\n\nHowever my computer have been running with defective ram 24/7 mostly for a year now with this driver and not a single BSODs, Application Crash, data corruption occurred.\n\nCaution must be taken when doing major Windows update (eg. from Windows 10 Anniversary to Creators Update) since it will start another OS (WinPE) without the driver to do the update. In this case, it may end up creating a bad rollback files and when copying/installing new files to your drive it may ends up corrupted due to bad RAM. This will causes a boot-loop if you are unlucky, there is a way to exit the loop without reformat but I will not cover it here.\n\n**Remember ALWAYS PULL OUT BAD RAM BEFORE DOING MAJOR WINDOWS UPDATE**.\n\n## Download\nhttps://github.com/prsyahmi/BadMemory/releases\n\n## Compiling\nTo compile, make sure to have VS2015 with latest WDK installed. Then open the solution, configure the target platform and build the project.\n\nThe driver needs signing after compilation for windows to load the driver.\n\nIn case you don't have proper certificate for signing, you will need to have the test signing on and sign the driver with test-certificate (VS should already done this).\nRefer here to turn on the settings: https://msdn.microsoft.com/en-us/library/windows/hardware/ff553484(v=vs.85).aspx\n\n## Usage\n1. Install the driver by right-clicking badmemory.inf file and then click Install.\n2. Use BadMemoryManager.exe to create a list of bad memory region.\n3. Restart the computer\n\nBefore using, move the faulty RAM to furthest bank (if you have more than 1 RAM installed), then run memtest and note down the faulty address. Then proceed to the installation above without defective RAM installed (if you have more than 1 RAM) and reinstall the RAM.\n\nYou may need to turn off RAM interleaving in the BIOS/UEFI if the bad region address resides on undesired location or if you want the bad region to be as little as possible.\n\nUPDATE:\n- This driver is not signed by microsoft, you may need to turn on test mode on later versions of windows\n- RAMMap can be used to verify the region: It will show as System PTE\n\n## License\nThis project is licensed under GPLv3. See LICENSE\n"
  },
  {
    "path": "badmemory/badmemory.c",
    "content": "/*\r\n\tBadMemory driver to make portion of RAM unusable for windows\r\n\tCopyright (C) 2016  Syahmi Azhar\r\n\r\n\tThis program is free software: you can redistribute it and/or modify\r\n\tit under the terms of the GNU General Public License as published by\r\n\tthe Free Software Foundation, either version 3 of the License, or\r\n\t(at your option) any later version.\r\n\r\n\tThis program is distributed in the hope that it will be useful,\r\n\tbut WITHOUT ANY WARRANTY; without even the implied warranty of\r\n\tMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r\n\tGNU General Public License for more details.\r\n\r\n\tYou should have received a copy of the GNU General Public License\r\n\talong with this program.  If not, see <http://www.gnu.org/licenses/>.\r\n*/\r\n\r\n\r\n#include <ntddk.h>\r\n#include \"badmemory.h\"\r\n\r\n#define NT_DEVICE_NAME     L\"\\\\Device\\\\BadMemory\"\r\n#define DOS_DEVICE_NAME    L\"\\\\DosDevices\\\\BadMemory\"\r\n#define BM_TAG             'MdaB'\r\n\r\nDRIVER_INITIALIZE DriverEntry;\r\nDRIVER_UNLOAD BadMemUnloadDriver;\r\n\r\n#ifdef ALLOC_PRAGMA\r\n#pragma alloc_text( INIT, DriverEntry )\r\n#pragma alloc_text( PAGE, BadMemUnloadDriver)\r\n#endif // ALLOC_PRAGMA\r\n\r\n\r\nPVOID* GBadMemAddresses = NULL;\r\nULONG GTotalRegions = 0;\r\n\r\n\r\nNTSTATUS\r\nDriverEntry(\r\n\tIN PDRIVER_OBJECT  DriverObject,\r\n\tIN PUNICODE_STRING RegistryPath\r\n)\r\n{\r\n\tNTSTATUS        Status;\r\n\tUNICODE_STRING  ntUnicodeString;\r\n\tUNICODE_STRING  ntWin32NameString;\r\n\tPDEVICE_OBJECT  deviceObject = NULL;\r\n\r\n\tUNICODE_STRING RegParamPath;\r\n\tUNICODE_STRING RegParamString = RTL_CONSTANT_STRING(L\"\\\\Parameters\");\r\n\tOBJECT_ATTRIBUTES KeyAttr;\r\n\tHANDLE KeyHandle = NULL;\r\n\tUCHAR* ValueData = NULL;\r\n\tPBAD_REGION BadRegions = NULL;\r\n\tPBAD_REGION_STATUS BadRegionStatus = NULL;\r\n\r\n\tRegParamPath.Length = 0;\r\n\tRegParamPath.MaximumLength = RegistryPath->Length + RegParamString.Length;\r\n\tRegParamPath.Buffer = ExAllocatePoolWithTag(NonPagedPool, RegParamPath.MaximumLength, BM_TAG);\r\n\tif (RegParamPath.Buffer) {\r\n\t\tRtlCopyUnicodeString(&RegParamPath, RegistryPath);\r\n\t\tRtlAppendUnicodeStringToString(&RegParamPath, &RegParamString);\r\n\r\n\t\tInitializeObjectAttributes(&KeyAttr, &RegParamPath, OBJ_CASE_INSENSITIVE, NULL, NULL);\r\n\t\tStatus = ZwOpenKey(&KeyHandle, KEY_READ, &KeyAttr);\r\n\r\n\t\tif (NT_SUCCESS(Status))\r\n\t\t{\r\n\t\t\tUNICODE_STRING ValueName = RTL_CONSTANT_STRING(L\"BadRegions\");\r\n\t\t\tULONG ValueLength = 0;\r\n\r\n\t\t\tStatus = ZwQueryValueKey(KeyHandle, &ValueName, KeyValuePartialInformation, ValueData, 0, &ValueLength);\r\n\t\t\tif (Status == STATUS_BUFFER_OVERFLOW || Status == STATUS_BUFFER_TOO_SMALL)\r\n\t\t\t{\r\n\t\t\t\tValueData = (UCHAR*)ExAllocatePoolWithTag(NonPagedPool, ValueLength, BM_TAG);\r\n\t\t\t\tif (ValueData)\r\n\t\t\t\t{\r\n\t\t\t\t\tStatus = ZwQueryValueKey(KeyHandle, &ValueName, KeyValuePartialInformation, ValueData, ValueLength, &ValueLength);\r\n\t\t\t\t\tif (NT_SUCCESS(Status))\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\tPKEY_VALUE_PARTIAL_INFORMATION KeyInfo = (PKEY_VALUE_PARTIAL_INFORMATION)ValueData;\r\n\t\t\t\t\t\tGTotalRegions = KeyInfo->DataLength / sizeof(BAD_REGION);\r\n\t\t\t\t\t\tBadRegions = (PBAD_REGION)&KeyInfo->Data[0];\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tExFreePoolWithTag(RegParamPath.Buffer, BM_TAG);\r\n\t}\r\n\r\n\tGBadMemAddresses = (PVOID*)ExAllocatePoolWithTag(NonPagedPool, sizeof(PVOID) * GTotalRegions, BM_TAG);\r\n\tif (GBadMemAddresses == NULL) {\r\n\t\tDbgPrint(\"Unable to allocate bad memory holder\");\r\n\t} else {\r\n\t\tRtlZeroMemory(GBadMemAddresses, sizeof(PVOID) * GTotalRegions);\r\n\t}\r\n\r\n\tBadRegionStatus = (PBAD_REGION_STATUS)ExAllocatePoolWithTag(NonPagedPool, sizeof(BAD_REGION_STATUS) * GTotalRegions, BM_TAG);\r\n\tif (BadRegionStatus == NULL) {\r\n\t\tDbgPrint(\"Unable to allocate bad memory status\");\r\n\t} else {\r\n\t\tRtlZeroMemory(BadRegionStatus, sizeof(PVOID) * GTotalRegions);\r\n\t}\r\n\r\n\tfor (ULONG i = 0; i < GTotalRegions && BadRegions; i++)\r\n\t{\r\n\t\tPHYSICAL_ADDRESS LowerBound;\r\n\t\tPHYSICAL_ADDRESS UpperBound;\r\n\t\tPHYSICAL_ADDRESS Boundary;\r\n\r\n\t\tLowerBound.QuadPart = BadRegions[i].LowerBound / PAGE_SIZE * PAGE_SIZE;\r\n\t\tUpperBound.QuadPart = BadRegions[i].UpperBound / PAGE_SIZE * PAGE_SIZE;\r\n\t\tBoundary.QuadPart = 0;\r\n\r\n\t\tPVOID BadAddr = MmAllocateContiguousMemorySpecifyCache(\r\n\t\t\t(SIZE_T)(UpperBound.QuadPart - LowerBound.QuadPart),\r\n\t\t\tLowerBound,\r\n\t\t\tUpperBound,\r\n\t\t\tBoundary,\r\n\t\t\tMmNonCached);\r\n\r\n\t\tif (BadRegionStatus) {\r\n\t\t\tBadRegionStatus[i].LowerBound = BadRegions[i].LowerBound;\r\n\t\t\tBadRegionStatus[i].UpperBound = BadRegions[i].UpperBound;\r\n\t\t\tBadRegionStatus[i].Status = BadAddr != NULL;\r\n\t\t}\r\n\r\n\t\tif (BadAddr == NULL) {\r\n\t\t\tDbgPrint(\"Unable to allocate bad memory at %I64d - %I64d\", LowerBound.QuadPart, UpperBound.QuadPart);\r\n\t\t}\r\n\r\n\t\tif (GBadMemAddresses) {\r\n\t\t\tGBadMemAddresses[i] = BadAddr;\r\n\t\t}\r\n\t}\r\n\r\n\tif (ValueData) {\r\n\t\tExFreePoolWithTag(ValueData, BM_TAG);\r\n\t\tValueData = NULL;\r\n\t\tBadRegions = NULL;\r\n\t}\r\n\r\n\tif (KeyHandle) {\r\n\t\tif (BadRegionStatus) {\r\n\t\t\tUNICODE_STRING ValueName = RTL_CONSTANT_STRING(L\"BadRegionStatus\");\r\n\r\n\t\t\tZwSetValueKey(KeyHandle, &ValueName, 0, REG_BINARY, BadRegionStatus, sizeof(BAD_REGION_STATUS) * GTotalRegions);\r\n\t\t}\r\n\r\n\t\tZwClose(KeyHandle);\r\n\t}\r\n\r\n\tif (BadRegionStatus) {\r\n\t\tExFreePoolWithTag(BadRegionStatus, BM_TAG);\r\n\t}\r\n\r\n\tRtlInitUnicodeString(&ntUnicodeString, NT_DEVICE_NAME);\r\n\r\n\tStatus = IoCreateDevice(\r\n\t\tDriverObject,                   // Our Driver Object\r\n\t\t0,                              // We don't use a device extension\r\n\t\t&ntUnicodeString,               // Device name \"\\Device\\BadMemory\"\r\n\t\tFILE_DEVICE_UNKNOWN,            // Device type\r\n\t\tFILE_DEVICE_SECURE_OPEN,     // Device characteristics\r\n\t\tFALSE,                          // Not an exclusive device\r\n\t\t&deviceObject);                // Returned ptr to Device Object\r\n\r\n\tif (!NT_SUCCESS(Status))\r\n\t{\r\n\t\treturn Status;\r\n\t}\r\n\r\n\t//\r\n\t// Initialize the driver object with this driver's entry points.\r\n\t//\r\n\r\n\tDriverObject->DriverUnload = BadMemUnloadDriver;\r\n\r\n\t//\r\n\t// Initialize a Unicode String containing the Win32 name\r\n\t// for our device.\r\n\t//\r\n\r\n\tRtlInitUnicodeString(&ntWin32NameString, DOS_DEVICE_NAME);\r\n\r\n\t//\r\n\t// Create a symbolic link between our device name  and the Win32 name\r\n\t//\r\n\r\n\tStatus = IoCreateSymbolicLink(&ntWin32NameString, &ntUnicodeString);\r\n\r\n\tif (!NT_SUCCESS(Status))\r\n\t{\r\n\t\t//\r\n\t\t// Delete everything that this routine has allocated.\r\n\t\t//\r\n\t\tIoDeleteDevice(deviceObject);\r\n\t}\r\n\r\n\r\n\treturn Status;\r\n}\r\n\r\nVOID\r\nBadMemUnloadDriver(\r\n    _In_ PDRIVER_OBJECT DriverObject\r\n    )\r\n/*++\r\nRoutine Description:\r\n    This routine is called by the I/O system to unload the driver.\r\n    Any resources previously allocated must be freed.\r\nArguments:\r\n    DriverObject - a pointer to the object that represents our driver.\r\nReturn Value:\r\n    None\r\n--*/\r\n{\r\n    PDEVICE_OBJECT deviceObject = DriverObject->DeviceObject;\r\n    UNICODE_STRING uniWin32NameString;\r\n\r\n    PAGED_CODE();\r\n\r\n    //\r\n    // Create counted string version of our Win32 device name.\r\n    //\r\n\r\n    RtlInitUnicodeString( &uniWin32NameString, DOS_DEVICE_NAME );\r\n\r\n\r\n    //\r\n    // Delete the link from our device name to a name in the Win32 namespace.\r\n    //\r\n\r\n    IoDeleteSymbolicLink( &uniWin32NameString );\r\n\r\n    if ( deviceObject != NULL )\r\n    {\r\n        IoDeleteDevice( deviceObject );\r\n    }\r\n\r\n\tif (GBadMemAddresses != NULL) {\r\n\t\tfor (ULONG i = 0; i < GTotalRegions; i++) {\r\n\t\t\tif (GBadMemAddresses[i] != NULL) MmFreeContiguousMemory(GBadMemAddresses[i]);\r\n\t\t}\r\n\r\n\t\tExFreePoolWithTag(GBadMemAddresses, BM_TAG);\r\n\t\tGBadMemAddresses = NULL;\r\n\t}\r\n}"
  },
  {
    "path": "badmemory/badmemory.h",
    "content": "#pragma once\r\n\r\ntypedef struct\r\n{\r\n\tULONGLONG LowerBound;\r\n\tULONGLONG UpperBound;\r\n} BAD_REGION, *PBAD_REGION;\r\n\r\ntypedef struct\r\n{\r\n\tULONGLONG LowerBound;\r\n\tULONGLONG UpperBound;\r\n\tBOOLEAN Status;\r\n} BAD_REGION_STATUS, *PBAD_REGION_STATUS;\r\n"
  },
  {
    "path": "badmemory/badmemory.inf",
    "content": ";\n; badmemory.inf\n;\n\n[Version]\nSignature=\"$WINDOWS NT$\"\nClass=MTD\nClassGuid={4d36e970-e325-11ce-bfc1-08002be10318}\nProvider=%ProviderString%\nDriverVer=06/26/2016,1.0.0.0\nCatalogFile=badmemory.cat\n\n\n[DestinationDirs]\nDefaultDestDir = 12\nBadMem.DriverFiles = 12 ;%windir%\\system32\\drivers\n\n;;\n;; Default install sections\n;;\n\n[DefaultInstall]\nOptionDesc          = %ServiceDescription%\nCopyFiles           = BadMem.DriverFiles\n\n[DefaultInstall.Services]\nAddService = %ServiceName%,,BadMem.Service\n\n\n;;\n;; Default uninstall sections\n;;\n\n[DefaultUninstall]\nDelFiles   = MiniFilter.DriverFiles\n\n[DefaultUninstall.Services]\nDelService = %ServiceName%,0x200 ;Ensure service is stopped before deleting\n\n\n;;\n;; Copy Files\n;;\n\n[BadMem.DriverFiles]\n%DriverName%.sys\n\n[SourceDisksNames]\n1 = %DiskName%,,,\"\"\n\n[SourceDisksFiles]\nbadmemory.sys = 1,,\n\n;;\n;; Services Section\n;;\n\n[BadMem.Service]\nDisplayName      = %ServiceName%\nDescription      = %ServiceDescription%\nServiceBinary    = %12%\\%DriverName%.sys        ;%windir%\\system32\\drivers\\\nDependencies     = \"\"\nServiceType      = 1                            ;SERVICE_KERNEL_DRIVER\nStartType        = 0                            ;SERVICE_BOOT_START\nErrorControl     = 1                            ;SERVICE_ERROR_NORMAL\nLoadOrderGroup   = \"System Reserved\"\nAddReg           = BadMem.AddRegistry\n\n;;\n;; Registry Modifications\n;;\n\n[BadMem.AddRegistry]\nHKR,Parameters,,0x00000010\n\n;;\n;; String Section\n;;\n\n[Strings]\nProviderString          = \"Syahmi\"\nServiceDescription      = \"Make portion of memory unusable\"\nServiceName             = \"BadMemory\"\nDiskName                = \"badmemory Source Disk\"\nDriverName              = \"badmemory\"\n"
  },
  {
    "path": "badmemory/badmemory.vcxproj",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project DefaultTargets=\"Build\" ToolsVersion=\"12.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\r\n  <ItemGroup Label=\"ProjectConfigurations\">\r\n    <ProjectConfiguration Include=\"Debug|Win32\">\r\n      <Configuration>Debug</Configuration>\r\n      <Platform>Win32</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Release|Win32\">\r\n      <Configuration>Release</Configuration>\r\n      <Platform>Win32</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Debug|x64\">\r\n      <Configuration>Debug</Configuration>\r\n      <Platform>x64</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Release|x64\">\r\n      <Configuration>Release</Configuration>\r\n      <Platform>x64</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Debug|ARM\">\r\n      <Configuration>Debug</Configuration>\r\n      <Platform>ARM</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Release|ARM\">\r\n      <Configuration>Release</Configuration>\r\n      <Platform>ARM</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Debug|ARM64\">\r\n      <Configuration>Debug</Configuration>\r\n      <Platform>ARM64</Platform>\r\n    </ProjectConfiguration>\r\n    <ProjectConfiguration Include=\"Release|ARM64\">\r\n      <Configuration>Release</Configuration>\r\n      <Platform>ARM64</Platform>\r\n    </ProjectConfiguration>\r\n  </ItemGroup>\r\n  <PropertyGroup Label=\"Globals\">\r\n    <ProjectGuid>{950FB034-2F3F-4A1A-94E4-621DCED69384}</ProjectGuid>\r\n    <TemplateGuid>{dd38f7fc-d7bd-488b-9242-7d8754cde80d}</TemplateGuid>\r\n    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>\r\n    <MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>\r\n    <Configuration>Debug</Configuration>\r\n    <Platform Condition=\"'$(Platform)' == ''\">Win32</Platform>\r\n    <RootNamespace>badmemory</RootNamespace>\r\n  </PropertyGroup>\r\n  <Import Project=\"$(VCTargetsPath)\\Microsoft.Cpp.Default.props\" />\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|Win32'\" Label=\"Configuration\">\r\n    <TargetVersion>Windows7</TargetVersion>\r\n    <UseDebugLibraries>true</UseDebugLibraries>\r\n    <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>\r\n    <ConfigurationType>Driver</ConfigurationType>\r\n    <DriverType>WDM</DriverType>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|Win32'\" Label=\"Configuration\">\r\n    <TargetVersion>Windows7</TargetVersion>\r\n    <UseDebugLibraries>false</UseDebugLibraries>\r\n    <KernelBufferOverflowLib>$(DDK_LIB_PATH)\\BufferOverflowK.lib</KernelBufferOverflowLib>\r\n    <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>\r\n    <ConfigurationType>Driver</ConfigurationType>\r\n    <DriverType>WDM</DriverType>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|x64'\" Label=\"Configuration\">\r\n    <TargetVersion>Windows7</TargetVersion>\r\n    <UseDebugLibraries>true</UseDebugLibraries>\r\n    <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>\r\n    <ConfigurationType>Driver</ConfigurationType>\r\n    <DriverType>WDM</DriverType>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|x64'\" Label=\"Configuration\">\r\n    <TargetVersion>Windows7</TargetVersion>\r\n    <UseDebugLibraries>false</UseDebugLibraries>\r\n    <KernelBufferOverflowLib>$(DDK_LIB_PATH)\\BufferOverflowK.lib</KernelBufferOverflowLib>\r\n    <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>\r\n    <ConfigurationType>Driver</ConfigurationType>\r\n    <DriverType>WDM</DriverType>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|ARM'\" Label=\"Configuration\">\r\n    <TargetVersion>Windows7</TargetVersion>\r\n    <UseDebugLibraries>true</UseDebugLibraries>\r\n    <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>\r\n    <ConfigurationType>Driver</ConfigurationType>\r\n    <DriverType>WDM</DriverType>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|ARM'\" Label=\"Configuration\">\r\n    <TargetVersion>Windows7</TargetVersion>\r\n    <UseDebugLibraries>false</UseDebugLibraries>\r\n    <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>\r\n    <ConfigurationType>Driver</ConfigurationType>\r\n    <DriverType>WDM</DriverType>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|ARM64'\" Label=\"Configuration\">\r\n    <TargetVersion>Windows7</TargetVersion>\r\n    <UseDebugLibraries>true</UseDebugLibraries>\r\n    <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>\r\n    <ConfigurationType>Driver</ConfigurationType>\r\n    <DriverType>WDM</DriverType>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|ARM64'\" Label=\"Configuration\">\r\n    <TargetVersion>Windows7</TargetVersion>\r\n    <UseDebugLibraries>false</UseDebugLibraries>\r\n    <PlatformToolset>WindowsKernelModeDriver10.0</PlatformToolset>\r\n    <ConfigurationType>Driver</ConfigurationType>\r\n    <DriverType>WDM</DriverType>\r\n  </PropertyGroup>\r\n  <Import Project=\"$(VCTargetsPath)\\Microsoft.Cpp.props\" />\r\n  <ImportGroup Label=\"ExtensionSettings\">\r\n  </ImportGroup>\r\n  <ImportGroup Label=\"PropertySheets\">\r\n    <Import Project=\"$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props\" Condition=\"exists('$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props')\" Label=\"LocalAppDataPlatform\" />\r\n  </ImportGroup>\r\n  <PropertyGroup Label=\"UserMacros\" />\r\n  <PropertyGroup />\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|Win32'\">\r\n    <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r\n    <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|Win32'\">\r\n    <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r\n    <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|x64'\">\r\n    <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r\n    <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|x64'\">\r\n    <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r\n    <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|ARM'\">\r\n    <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r\n    <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|ARM'\">\r\n    <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r\n    <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Debug|ARM64'\">\r\n    <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r\n    <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='Release|ARM64'\">\r\n    <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor>\r\n    <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>\r\n  </PropertyGroup>\r\n  <ItemGroup>\r\n    <Inf Include=\"badmemory.inf\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <FilesToPackage Include=\"$(TargetPath)\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <ClCompile Include=\"badmemory.c\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <ClInclude Include=\"badmemory.h\" />\r\n  </ItemGroup>\r\n  <Import Project=\"$(VCTargetsPath)\\Microsoft.Cpp.targets\" />\r\n  <ImportGroup Label=\"ExtensionTargets\">\r\n  </ImportGroup>\r\n</Project>"
  },
  {
    "path": "badmemory/badmemory.vcxproj.filters",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n  <ItemGroup>\n    <Filter Include=\"Source Files\">\n      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>\n      <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>\n    </Filter>\n    <Filter Include=\"Header Files\">\n      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>\n      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>\n    </Filter>\n    <Filter Include=\"Resource Files\">\n      <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>\n      <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>\n    </Filter>\n    <Filter Include=\"Driver Files\">\n      <UniqueIdentifier>{8E41214B-6785-4CFE-B992-037D68949A14}</UniqueIdentifier>\n      <Extensions>inf;inv;inx;mof;mc;</Extensions>\n    </Filter>\n  </ItemGroup>\n  <ItemGroup>\n    <Inf Include=\"badmemory.inf\">\n      <Filter>Driver Files</Filter>\n    </Inf>\n  </ItemGroup>\n  <ItemGroup>\n    <ClCompile Include=\"badmemory.c\">\n      <Filter>Source Files</Filter>\n    </ClCompile>\n  </ItemGroup>\n  <ItemGroup>\n    <ClInclude Include=\"badmemory.h\">\n      <Filter>Header Files</Filter>\n    </ClInclude>\n  </ItemGroup>\n</Project>"
  },
  {
    "path": "badmemory.sln",
    "content": "﻿\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio 14\nVisualStudioVersion = 14.0.25123.0\nMinimumVisualStudioVersion = 10.0.40219.1\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"badmemory\", \"badmemory\\badmemory.vcxproj\", \"{950FB034-2F3F-4A1A-94E4-621DCED69384}\"\nEndProject\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"BadMemoryManager\", \"BadMemoryManager\\BadMemoryManager.vcxproj\", \"{31237A35-6248-4D5D-B5EA-E9205AB90DF2}\"\nEndProject\nGlobal\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\n\t\tDebug|ARM = Debug|ARM\n\t\tDebug|ARM64 = Debug|ARM64\n\t\tDebug|x64 = Debug|x64\n\t\tDebug|x86 = Debug|x86\n\t\tRelease|ARM = Release|ARM\n\t\tRelease|ARM64 = Release|ARM64\n\t\tRelease|x64 = Release|x64\n\t\tRelease|x86 = Release|x86\n\tEndGlobalSection\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|ARM.ActiveCfg = Debug|ARM\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|ARM.Build.0 = Debug|ARM\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|ARM.Deploy.0 = Debug|ARM\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|ARM64.ActiveCfg = Debug|ARM64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|ARM64.Build.0 = Debug|ARM64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|ARM64.Deploy.0 = Debug|ARM64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|x64.ActiveCfg = Debug|x64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|x64.Build.0 = Debug|x64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|x64.Deploy.0 = Debug|x64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|x86.ActiveCfg = Debug|Win32\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|x86.Build.0 = Debug|Win32\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Debug|x86.Deploy.0 = Debug|Win32\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|ARM.ActiveCfg = Release|ARM\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|ARM.Build.0 = Release|ARM\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|ARM.Deploy.0 = Release|ARM\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|ARM64.ActiveCfg = Release|ARM64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|ARM64.Build.0 = Release|ARM64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|ARM64.Deploy.0 = Release|ARM64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|x64.ActiveCfg = Release|x64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|x64.Build.0 = Release|x64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|x64.Deploy.0 = Release|x64\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|x86.ActiveCfg = Release|Win32\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|x86.Build.0 = Release|Win32\n\t\t{950FB034-2F3F-4A1A-94E4-621DCED69384}.Release|x86.Deploy.0 = Release|Win32\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Debug|ARM.ActiveCfg = Debug|Win32\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Debug|ARM64.ActiveCfg = Debug|Win32\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Debug|x64.ActiveCfg = Debug|x64\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Debug|x64.Build.0 = Debug|x64\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Debug|x86.ActiveCfg = Debug|Win32\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Debug|x86.Build.0 = Debug|Win32\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Release|ARM.ActiveCfg = Release|Win32\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Release|ARM64.ActiveCfg = Release|Win32\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Release|x64.ActiveCfg = Release|x64\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Release|x64.Build.0 = Release|x64\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Release|x86.ActiveCfg = Release|Win32\n\t\t{31237A35-6248-4D5D-B5EA-E9205AB90DF2}.Release|x86.Build.0 = Release|Win32\n\tEndGlobalSection\n\tGlobalSection(SolutionProperties) = preSolution\n\t\tHideSolutionNode = FALSE\n\tEndGlobalSection\nEndGlobal\n"
  }
]