diff options
| author | SpCreatePackaedLicense | 2025-02-14 18:36:39 +0000 |
|---|---|---|
| committer | GitHub | 2025-02-14 18:36:39 +0000 |
| commit | 8cf7d446c118e0482d7a91df481249ecb545029b (patch) | |
| tree | d411651d92ed1223e4a68cb93e81f11f427047a5 | |
| parent | 7adb01c871180b7d66b0ceaf098d92e74ed95816 (diff) | |
| download | miieow-8cf7d446c118e0482d7a91df481249ecb545029b.zip | |
fix patch_sz
| -rw-r--r-- | MIIEowClient/MIIEowClient/Source.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MIIEowClient/MIIEowClient/Source.c b/MIIEowClient/MIIEowClient/Source.c index 7735769..09399c3 100644 --- a/MIIEowClient/MIIEowClient/Source.c +++ b/MIIEowClient/MIIEowClient/Source.c @@ -256,7 +256,7 @@ int main() printf("[+] Set protection to RWX\n"); const BYTE Patch[PATCH_SZ] = PATCH; - MwcWriteProcessMemory(pMIIEow, PatchAddr, 4, Patch); + MwcWriteProcessMemory(pMIIEow, PatchAddr, PATCH_SZ, Patch); printf("[+] Patched\n"); ULONG _; |
