Open a website after injection
Hey
Just wondering, How do i open a website after injection?
This is the end of my code.
I think its Shell.Execute(".")
Im not sure, Can someone please help me out.
Here is the end of my code:
Code:
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0); //create the hackthread
break;
}
return TRUE;
}
Thanks,
acid_buRn