From 1325c28ebdb32d094bd97c186298fafc03e04925 Mon Sep 17 00:00:00 2001 From: gwillcox-r7 Date: Wed, 6 May 2020 15:44:02 -0500 Subject: [PATCH] Fix typo in dllmain.cpp --- .../exploits/CVE-2019-0808/NtUserMNDragOverExploit/dllmain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/source/exploits/CVE-2019-0808/NtUserMNDragOverExploit/dllmain.cpp b/external/source/exploits/CVE-2019-0808/NtUserMNDragOverExploit/dllmain.cpp index 6b3611f6a0..9f25f3f7ae 100644 --- a/external/source/exploits/CVE-2019-0808/NtUserMNDragOverExploit/dllmain.cpp +++ b/external/source/exploits/CVE-2019-0808/NtUserMNDragOverExploit/dllmain.cpp @@ -562,7 +562,7 @@ int exploit(PMSF_PAYLOAD pMsfPayload) // Get a HINSTANCE handle to the current process. HINSTANCE hInst = GetModuleHandleA(NULL); - if (hInt == NULL){ + if (hInst == NULL){ dprintf("[!] Couldn't get a handle to the current process! Exiting!\r\n"); return -1; }