├── .editorconfig ├── .gitignore ├── CFGExceptions.sln ├── CFGExceptions ├── CFGExceptions.vcxproj ├── CFGExceptions.vcxproj.filters └── main.cpp └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreakingMalwareResearch/CFGExceptions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreakingMalwareResearch/CFGExceptions/HEAD/.gitignore -------------------------------------------------------------------------------- /CFGExceptions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreakingMalwareResearch/CFGExceptions/HEAD/CFGExceptions.sln -------------------------------------------------------------------------------- /CFGExceptions/CFGExceptions.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreakingMalwareResearch/CFGExceptions/HEAD/CFGExceptions/CFGExceptions.vcxproj -------------------------------------------------------------------------------- /CFGExceptions/CFGExceptions.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreakingMalwareResearch/CFGExceptions/HEAD/CFGExceptions/CFGExceptions.vcxproj.filters -------------------------------------------------------------------------------- /CFGExceptions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreakingMalwareResearch/CFGExceptions/HEAD/CFGExceptions/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreakingMalwareResearch/CFGExceptions/HEAD/README.md --------------------------------------------------------------------------------