Skip to content

Commit

Permalink
fix: Updated getGlobalState encryption dumper
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixeluted committed Oct 17, 2024
1 parent c1e8f9f commit f85d790
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions RobloxManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@ void RobloxManager::Initialize() {
const auto chunk = std::move(ret.value());


const auto isSub = chunk->ContainsInstruction("sub", ", dword ptr [rax", true);
const auto isAdd = chunk->ContainsInstruction("add", ", dword ptr [rax", true);
const auto isXor = chunk->ContainsInstruction("xor", ", dword ptr [rax", true);
const auto isSub = chunk->ContainsInstruction("sub", "ecx, eax", true);
const auto isAdd = chunk->ContainsInstruction("add", "ecx, eax", true);
const auto isXor = chunk->ContainsInstruction("xor", "ecx, eax", true);

if (isSub) {
logger->PrintInformation(RbxStu::RobloxManager,
Expand Down

0 comments on commit f85d790

Please sign in to comment.