Added help command to ImGui client.

This commit is contained in:
Jakob Friedl
2025-09-30 15:27:05 +02:00
parent 039c857027
commit a1990e4a18
5 changed files with 50 additions and 57 deletions

View File

@@ -124,6 +124,8 @@ proc patch(cq: Conquest, unpatchedExePath: string, configuration: seq[byte]): se
for i, c in Bytes.toString(configuration):
exeBytes[placeholderPos + i] = c
writeFile(unpatchedExePath, exeBytes)
cq.success(fmt"Agent payload patched successfully: {unpatchedExePath}.")
return string.toBytes(exeBytes)