Skip to content

Commit

Permalink
Fixed HalosGateResolver output and screenshot
Browse files Browse the repository at this point in the history
  • Loading branch information
daem0nc0re committed Apr 1, 2022
1 parent f67ac10 commit 60e8112
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SyscallResolvers/HalosGateResolver/Library/HalosGate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -588,9 +588,9 @@ public static Dictionary<string, int> ResolveSyscallNumber(string syscallName)
pBaseAddress = entry.Value;

if (Environment.Is64BitOperatingSystem)
Console.WriteLine("[+] {0} @ 0x{0}", syscallName, pBaseAddress.ToString("X16"));
Console.WriteLine("[+] {0} @ 0x{1}", syscallName, pBaseAddress.ToString("X16"));
else
Console.WriteLine("[+] {0} @ 0x{0}", syscallName, pBaseAddress.ToString("X8"));
Console.WriteLine("[+] {0} @ 0x{1}", syscallName, pBaseAddress.ToString("X8"));
}
}

Expand Down
Binary file modified figures/syscallresolvers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 60e8112

Please sign in to comment.