Skip to content

Commit

Permalink
descriptor table fix attempt 8
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelwernel committed Mar 20, 2024
1 parent 2ed0a23 commit 8c60cf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ int main(int argc, char* argv[]) {
//checker(VM::OFFSEC_SIDT, "Offensive Security SIDT");
//checker(VM::OFFSEC_SGDT, "Offensive Security SGDT");
//checker(VM::OFFSEC_SGDT, "Offensive Security SLDT");
checker(VM::HYPERV_BOARD, "Hyper-V motherboard");
//checker(VM::HYPERV_BOARD, "Hyper-V motherboard");
std::printf("\n");

const std::string brand = VM::brand();
Expand Down
2 changes: 1 addition & 1 deletion src/vmaware.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5540,7 +5540,7 @@ const std::map<VM::u8, VM::core::technique> VM::core::table = {
//{ VM::OFFSEC_SIDT, { 60, VM::offsec_sidt }},
//{ VM::OFFSEC_SGDT, { 60, VM::offsec_sgdt }},
//{ VM::OFFSEC_SLDT, { 20, VM::offsec_sldt }},
{ VM::HYPERV_BOARD, { 45, VM::hyperv_board }}
//{ VM::HYPERV_BOARD, { 45, VM::hyperv_board }}

// __TABLE_LABEL, add your technique above
// { VM::FUNCTION, { POINTS, FUNCTION_POINTER }}
Expand Down

0 comments on commit 8c60cf8

Please sign in to comment.