From 7fc9c9960b25abd5cfcf7fa0fcc5bcfd40c27684 Mon Sep 17 00:00:00 2001 From: _xeroxz Date: Wed, 2 Jun 2021 01:05:16 -0700 Subject: [PATCH] updated vmprofiler to v1.6, applied clang-format --- dependencies/vmprofiler | 2 +- src/compiler.cpp | 4 +- src/main.cpp | 316 +++++++++++++++++++--------------------- src/parser.cpp | 33 +++-- src/parser.h | 31 ++-- src/vmasm.hpp | 30 ++-- src/vmassembler.vcxproj | 2 +- vmassembler.sln | 103 +++++++------ 8 files changed, 262 insertions(+), 259 deletions(-) diff --git a/dependencies/vmprofiler b/dependencies/vmprofiler index 5129d39..e58c23c 160000 --- a/dependencies/vmprofiler +++ b/dependencies/vmprofiler @@ -1 +1 @@ -Subproject commit 5129d39eb726e32a80417165ec37b597357664d4 +Subproject commit e58c23c40e13528f5d9b84feb7e23b62a886ed5a diff --git a/src/compiler.cpp b/src/compiler.cpp index 245a3c9..f4501e1 100644 --- a/src/compiler.cpp +++ b/src/compiler.cpp @@ -38,7 +38,7 @@ namespace vm exit( -1 ); } - if (!vm::transform::inverse_transforms( encrypt_vinstrs_rva )) + if ( !vm::transform::inverse_transforms( encrypt_vinstrs_rva ) ) { std::printf( "[!] failed to inverse virtual instruction rva decrypt instructions...\n" ); exit( -1 ); @@ -142,7 +142,7 @@ namespace vm for ( auto &instr : encrypt_vinstrs_rva ) rva = vm::transform::apply( instr.operands[ 0 ].size, instr.mnemonic, rva, - transform::has_imm( &instr ) ? instr.operands[ 1 ].imm.value.u : 0 ); + transform::has_imm( &instr ) ? instr.operands[ 1 ].imm.value.u : 0 ); std::printf( "> encrypted rva = 0x%p\n", rva ); return rva; diff --git a/src/main.cpp b/src/main.cpp index dc09b48..3307118 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -7,120 +7,109 @@ #include #include "compiler.h" -#include "parser.tab.h" #include "parser.h" +#include "parser.tab.h" #include "vmasm.hpp" -extern FILE* yyin; +extern FILE *yyin; extern "C" int yywrap() -{ return 1; } +{ + return 1; +} -void yyerror(char* msg) -{ std::printf("[!] parsing failure: %s\n", msg); } +void yyerror( char *msg ) +{ + std::printf( "[!] parsing failure: %s\n", msg ); +} -int __cdecl main(int argc, const char* argv[]) +int __cdecl main( int argc, const char *argv[] ) { argparse::argument_parser_t argp( "vmassembler", "virtual instruction assembler" ); argp.add_argument() - .names({ "--input", "--in" }) - .description("path to a vasm file to be assembled...") - .required(true); - - argp.add_argument() - .names({ "--vmpbin", "--bin" }) - .description("path to protected binary...") - .required(true); - - argp.add_argument() - .names({ "--vmentry", "--entry" }) - .description("rva to vm entry...") - .required(true); - - argp.add_argument() - .name({ "--output" }) - .description("output file name and path...") - .required(true); - - argp.enable_help(); - auto err = argp.parse(argc, argv); - - if (err) - { - std::cout << err << std::endl; - return -1; - } - - if (argp.exists("help")) - { - argp.print_help(); - return 0; - } - - // - // set yyin to the vasm file... - // - - if ((yyin = fopen(argp.get("input").c_str(), "r")) == nullptr) - { - std::printf("[!] failed to open vasm file...\n"); - return -1; - } - - // - // parse vasm file for all of the instructions... - // - - yyparse(); - std::printf("[+] finished parsing vasm file...\n"); - - // - // init vm variables... - // - - const auto module_base = - reinterpret_cast( - LoadLibraryExA(argp.get("vmpbin").c_str(), - NULL, DONT_RESOLVE_DLL_REFERENCES)); - - const auto vm_entry_rva = std::strtoull( - argp.get("vmentry").c_str(), nullptr, 16); - - const auto image_base = - xtils::um_t::get_instance()->image_base( argp.get< std::string >( "vmpbin" ).c_str() ); + .names( { "--input", "--in" } ) + .description( "path to a vasm file to be assembled..." ) + .required( true ); + + argp.add_argument().names( { "--vmpbin", "--bin" } ).description( "path to protected binary..." ).required( true ); + argp.add_argument().names( { "--vmentry", "--entry" } ).description( "rva to vm entry..." ).required( true ); + argp.add_argument().name( { "--output" } ).description( "output file name and path..." ).required( true ); + + argp.enable_help(); + auto err = argp.parse( argc, argv ); + + if ( err ) + { + std::cout << err << std::endl; + return -1; + } + + if ( argp.exists( "help" ) ) + { + argp.print_help(); + return 0; + } + + // + // set yyin to the vasm file... + // + + if ( ( yyin = fopen( argp.get< std::string >( "input" ).c_str(), "r" ) ) == nullptr ) + { + std::printf( "[!] failed to open vasm file...\n" ); + return -1; + } + + // + // parse vasm file for all of the instructions... + // + + yyparse(); + std::printf( "[+] finished parsing vasm file...\n" ); + + // + // init vm variables... + // + + const auto module_base = reinterpret_cast< std::uintptr_t >( + LoadLibraryExA( argp.get< std::string >( "vmpbin" ).c_str(), NULL, DONT_RESOLVE_DLL_REFERENCES ) ); + + const auto vm_entry_rva = std::strtoull( argp.get< std::string >( "vmentry" ).c_str(), nullptr, 16 ); + const auto image_base = xtils::um_t::get_instance()->image_base( argp.get< std::string >( "vmpbin" ).c_str() ); zydis_routine_t vm_entry, calc_jmp; std::vector< vm::handler::handler_t > vm_handlers; - std::uintptr_t* vm_handler_table; - - if (!vm::util::flatten(vm_entry, module_base + vm_entry_rva)) - { - std::printf("[!] failed to flatten vm entry...\n"); - return -1; - } - - std::printf("[+] flattened vm_entry...\n"); - vm::util::deobfuscate(vm_entry); - std::printf("[+] deobfuscated vm_entry...\n"); - vm::util::print(vm_entry); - - if (!(vm_handler_table = vm::handler::table::get(vm_entry))) - { - std::printf("[!] failed to obtain vm handler table...\n"); - return -1; - } - - if (!vm::handler::get_all(module_base, image_base, vm_entry, vm_handler_table, vm_handlers)) - { - std::printf("[!] failed to get all vm handlers...\n"); - return -1; - } + std::uintptr_t *vm_handler_table; + + if ( !vm::util::flatten( vm_entry, module_base + vm_entry_rva ) ) + { + std::printf( "[!] failed to flatten vm entry...\n" ); + return -1; + } + + std::printf( "[+] flattened vm_entry...\n" ); + std::printf( "[+] deobfuscated vm_entry...\n" ); + + vm::util::deobfuscate( vm_entry ); + vm::util::print( vm_entry ); + + if ( !( vm_handler_table = vm::handler::table::get( vm_entry ) ) ) + { + std::printf( "[!] failed to obtain vm handler table...\n" ); + return -1; + } + + if ( !vm::handler::get_all( module_base, image_base, vm_entry, vm_handler_table, vm_handlers ) ) + { + std::printf( "[!] failed to get all vm handlers...\n" ); + return -1; + } if ( !vm::calc_jmp::get( vm_entry, calc_jmp ) ) { - std::printf("[!] failed to get calc_jmp...\n"); - return -1; - } + std::printf( "[!] failed to get calc_jmp...\n" ); + return -1; + } const auto advancement = vm::calc_jmp::get_advancement( calc_jmp ); @@ -130,76 +119,75 @@ int __cdecl main(int argc, const char* argv[]) return -1; } - std::printf( "> virtual instruction pointer advances %s...\n", + std::printf( "> virtual instruction pointer advances %s...\n", advancement.value() == vmp2::exec_type_t::forward ? "forward" : "backward" ); - vm::compiler_t compiler( { module_base, image_base }, - advancement.value(), &vm_handlers, &calc_jmp, &vm_entry ); + vm::compiler_t compiler( { module_base, image_base }, advancement.value(), &vm_handlers, &calc_jmp, &vm_entry ); + + // + // encode virtual instructions... + // + + auto [ encoded_success, vinstrs ] = compiler.encode(); + std::printf( "[+] finished encoding... encoded instructions below...\n" ); + + if ( !encoded_success ) + { + std::printf( "[!] failed to encode virtual instructions...\n" ); + return -1; + } + + for ( auto &vinstr : *vinstrs ) + { + if ( vinstr.imm_size ) + std::printf( "> 0x%x - 0x%x\n", vinstr.vm_handler, vinstr.operand ); + else + std::printf( "> 0x%x\n", vinstr.vm_handler ); + } // - // encode virtual instructions... - // - - auto [encoded_success, vinstrs] = compiler.encode(); - std::printf("[+] finished encoding... encoded instructions below...\n"); - - if (!encoded_success) - { - std::printf("[!] failed to encode virtual instructions...\n"); - return -1; - } - - for (auto& vinstr : *vinstrs) - { - if (vinstr.imm_size) - std::printf("> 0x%x - 0x%x\n", vinstr.vm_handler, vinstr.operand); - else - std::printf("> 0x%x\n", vinstr.vm_handler); - } - - // - // encrypt virtual instructions... - // - - auto [entry_rva, result_buffer] = compiler.encrypt(); - std::printf("[+] finished encrypting... encrypted instructions below...\n"); - - if (!entry_rva) - { - std::printf("[!] failed to encrypt virtual instructions...\n"); - return -1; - } - - std::printf("> virtual instructions must be allocated at = 0x%p\n", entry_rva); - std::printf("> "); - { - auto idx = 0u; - for (auto byte : *result_buffer) - { - std::printf("0x%x ", byte); - if (++idx == 10) - { - std::printf("\n"); - idx = 0u; - } - } - } - std::printf("\n"); - - // - // write the result to disk... - // - - vmasm::file_header_t file_header; - file_header.magic = VASM_MAGIC; - file_header.epoch_time = std::time(nullptr); - file_header.vasm_size = result_buffer->size(); - file_header.alloc_rva = (entry_rva - image_base); - file_header.vasm_offset = sizeof vmasm::file_header_t; + // encrypt virtual instructions... + // + + auto [ entry_rva, result_buffer ] = compiler.encrypt(); + std::printf( "[+] finished encrypting... encrypted instructions below...\n" ); + + if ( !entry_rva ) + { + std::printf( "[!] failed to encrypt virtual instructions...\n" ); + return -1; + } + + std::printf( "> virtual instructions must be allocated at = 0x%p\n", entry_rva ); + std::printf( "> " ); + { + auto idx = 0u; + for ( auto byte : *result_buffer ) + { + std::printf( "0x%x ", byte ); + if ( ++idx == 10 ) + { + std::printf( "\n" ); + idx = 0u; + } + } + } + std::printf( "\n" ); + + // + // write the result to disk... + // + + vmasm::file_header_t file_header; + file_header.magic = VASM_MAGIC; + file_header.epoch_time = std::time( nullptr ); + file_header.vasm_size = result_buffer->size(); + file_header.alloc_rva = ( entry_rva - image_base ); + file_header.vasm_offset = sizeof vmasm::file_header_t; file_header.encrypted_rva = compiler.encrypt_rva( entry_rva ); - std::ofstream output(argp.get("output"), std::ios::binary); - output.write(reinterpret_cast(&file_header), sizeof file_header); - output.write(reinterpret_cast(result_buffer->data()), result_buffer->size()); - output.close(); + std::ofstream output( argp.get< std::string >( "output" ), std::ios::binary ); + output.write( reinterpret_cast< char * >( &file_header ), sizeof file_header ); + output.write( reinterpret_cast< char * >( result_buffer->data() ), result_buffer->size() ); + output.close(); } \ No newline at end of file diff --git a/src/parser.cpp b/src/parser.cpp index 0c9515c..e40ff1d 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -1,31 +1,32 @@ #include "parser.h" -parse_t::parse_t() -{} +parse_t::parse_t() +{ +} -auto parse_t::get_instance() -> parse_t* +auto parse_t::get_instance() -> parse_t * { - static parse_t obj; - return &obj; + static parse_t obj; + return &obj; } -void parse_t::add_vinstr(std::string vinstr_name) +void parse_t::add_vinstr( std::string vinstr_name ) { - _vinstr_meta data{ vinstr_name, false, 0u }; - vinstrs.push_back(data); + _vinstr_meta data{ vinstr_name, false, 0u }; + vinstrs.push_back( data ); } -void parse_t::add_vinstr(std::string vinstr_name, std::uintptr_t imm_val) +void parse_t::add_vinstr( std::string vinstr_name, std::uintptr_t imm_val ) { - _vinstr_meta data{ vinstr_name, true, imm_val }; - vinstrs.push_back(data); + _vinstr_meta data{ vinstr_name, true, imm_val }; + vinstrs.push_back( data ); } -bool parse_t::for_each(callback_t callback) +bool parse_t::for_each( callback_t callback ) { - for (auto& entry : vinstrs) - if (!callback(&entry)) - return false; + for ( auto &entry : vinstrs ) + if ( !callback( &entry ) ) + return false; - return true; + return true; } \ No newline at end of file diff --git a/src/parser.h b/src/parser.h index 06d1cfb..3ccaaff 100644 --- a/src/parser.h +++ b/src/parser.h @@ -1,29 +1,30 @@ #pragma once -#include #include -#include #include +#include +#include struct _vinstr_meta { - std::string name; + std::string name; - bool has_imm; - std::uintptr_t imm; + bool has_imm; + std::uintptr_t imm; }; -using callback_t = std::function; +using callback_t = std::function< bool( _vinstr_meta * ) >; -// this singleton class contains all the +// this singleton class contains all the // information for parsed virtual instructions... class parse_t { -public: - static auto get_instance() -> parse_t*; - void add_vinstr(std::string vinstr_name); - void add_vinstr(std::string vinstr_name, std::uintptr_t imm_val); - bool for_each(callback_t callback); -private: - parse_t(); - std::vector<_vinstr_meta> vinstrs; + public: + static auto get_instance() -> parse_t *; + void add_vinstr( std::string vinstr_name ); + void add_vinstr( std::string vinstr_name, std::uintptr_t imm_val ); + bool for_each( callback_t callback ); + + private: + parse_t(); + std::vector< _vinstr_meta > vinstrs; }; \ No newline at end of file diff --git a/src/vmasm.hpp b/src/vmasm.hpp index f017f98..c310356 100644 --- a/src/vmasm.hpp +++ b/src/vmasm.hpp @@ -4,19 +4,19 @@ namespace vmasm { - enum class version_t - { - v1 - }; + enum class version_t + { + v1 + }; - struct file_header_t - { - std::uint32_t magic; // VASM - version_t version; - std::uint64_t epoch_time; - std::uint64_t alloc_rva; - std::uint64_t encrypted_rva; - std::uint32_t vasm_size; - std::uint32_t vasm_offset; - }; -} \ No newline at end of file + struct file_header_t + { + std::uint32_t magic; // VASM + version_t version; + std::uint64_t epoch_time; + std::uint64_t alloc_rva; + std::uint64_t encrypted_rva; + std::uint32_t vasm_size; + std::uint32_t vasm_offset; + }; +} // namespace vmasm \ No newline at end of file diff --git a/src/vmassembler.vcxproj b/src/vmassembler.vcxproj index 9a894a3..342d846 100644 --- a/src/vmassembler.vcxproj +++ b/src/vmassembler.vcxproj @@ -142,7 +142,7 @@ {88a23124-5640-35a0-b890-311d7a67a7d2} - + {d0b6092a-9944-4f24-9486-4b7dae372619} diff --git a/vmassembler.sln b/vmassembler.sln index 9ada33e..51b2621 100644 --- a/vmassembler.sln +++ b/vmassembler.sln @@ -5,12 +5,14 @@ VisualStudioVersion = 16.0.30907.101 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vmassembler", "src\vmassembler.vcxproj", "{6AC977FF-BD53-4A74-8452-69B3500924E8}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vmprofiler", "dependencies\vmprofiler\src\vmprofiler.vcxproj", "{D0B6092A-9944-4F24-9486-4B7DAE372619}" -EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Zydis", "dependencies\vmprofiler\dependencies\zydis\msvc\zydis\Zydis.vcxproj", "{88A23124-5640-35A0-B890-311D7A67A7D2}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vmprofiler", "dependencies\vmprofiler\vmprofiler.vcxproj", "{D0B6092A-9944-4F24-9486-4B7DAE372619}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + DBG|x64 = DBG|x64 + DBG|x86 = DBG|x86 Debug Kernel|x64 = Debug Kernel|x64 Debug Kernel|x86 = Debug Kernel|x86 Debug MD DLL|x64 = Debug MD DLL|x64 @@ -35,6 +37,10 @@ Global Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6AC977FF-BD53-4A74-8452-69B3500924E8}.DBG|x64.ActiveCfg = Release|x64 + {6AC977FF-BD53-4A74-8452-69B3500924E8}.DBG|x64.Build.0 = Release|x64 + {6AC977FF-BD53-4A74-8452-69B3500924E8}.DBG|x86.ActiveCfg = Release|x64 + {6AC977FF-BD53-4A74-8452-69B3500924E8}.DBG|x86.Build.0 = Release|x64 {6AC977FF-BD53-4A74-8452-69B3500924E8}.Debug Kernel|x64.ActiveCfg = Release|x64 {6AC977FF-BD53-4A74-8452-69B3500924E8}.Debug Kernel|x64.Build.0 = Release|x64 {6AC977FF-BD53-4A74-8452-69B3500924E8}.Debug Kernel|x86.ActiveCfg = Release|x64 @@ -78,49 +84,10 @@ Global {6AC977FF-BD53-4A74-8452-69B3500924E8}.Release|x64.ActiveCfg = Release|x64 {6AC977FF-BD53-4A74-8452-69B3500924E8}.Release|x64.Build.0 = Release|x64 {6AC977FF-BD53-4A74-8452-69B3500924E8}.Release|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug Kernel|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug Kernel|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug Kernel|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug Kernel|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD DLL|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD DLL|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD DLL|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD DLL|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT DLL|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT DLL|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT DLL|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT DLL|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release Kernel|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release Kernel|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release Kernel|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release Kernel|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD DLL|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD DLL|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD DLL|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD DLL|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT DLL|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT DLL|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT DLL|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT DLL|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT|x86.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT|x86.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release|x64.ActiveCfg = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release|x64.Build.0 = Release|x64 - {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release|x86.ActiveCfg = Release|x64 + {88A23124-5640-35A0-B890-311D7A67A7D2}.DBG|x64.ActiveCfg = Debug MT|x64 + {88A23124-5640-35A0-B890-311D7A67A7D2}.DBG|x64.Build.0 = Debug MT|x64 + {88A23124-5640-35A0-B890-311D7A67A7D2}.DBG|x86.ActiveCfg = Debug MT|Win32 + {88A23124-5640-35A0-B890-311D7A67A7D2}.DBG|x86.Build.0 = Debug MT|Win32 {88A23124-5640-35A0-B890-311D7A67A7D2}.Debug Kernel|x64.ActiveCfg = Debug Kernel|x64 {88A23124-5640-35A0-B890-311D7A67A7D2}.Debug Kernel|x64.Build.0 = Debug Kernel|x64 {88A23124-5640-35A0-B890-311D7A67A7D2}.Debug Kernel|x64.Deploy.0 = Debug Kernel|x64 @@ -169,6 +136,52 @@ Global {88A23124-5640-35A0-B890-311D7A67A7D2}.Release|x64.Build.0 = Release MD DLL|x64 {88A23124-5640-35A0-B890-311D7A67A7D2}.Release|x86.ActiveCfg = Release MT DLL|Win32 {88A23124-5640-35A0-B890-311D7A67A7D2}.Release|x86.Build.0 = Release MT DLL|Win32 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.DBG|x64.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.DBG|x64.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.DBG|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug Kernel|x64.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug Kernel|x64.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug Kernel|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug Kernel|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD DLL|x64.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD DLL|x64.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD DLL|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD DLL|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD|x64.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD|x64.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MD|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT DLL|x64.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT DLL|x64.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT DLL|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT DLL|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT|x64.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT|x64.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Debug MT|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release Kernel|x64.ActiveCfg = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release Kernel|x64.Build.0 = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release Kernel|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release Kernel|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD DLL|x64.ActiveCfg = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD DLL|x64.Build.0 = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD DLL|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD DLL|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD|x64.ActiveCfg = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD|x64.Build.0 = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MD|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT DLL|x64.ActiveCfg = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT DLL|x64.Build.0 = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT DLL|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT DLL|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT|x64.ActiveCfg = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT|x64.Build.0 = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT|x86.ActiveCfg = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release MT|x86.Build.0 = DBG|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release|x64.ActiveCfg = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release|x64.Build.0 = Release|x64 + {D0B6092A-9944-4F24-9486-4B7DAE372619}.Release|x86.ActiveCfg = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE