unknowncheats uc-forum.com ucdownloads ucdownloads.com

Go Back   UC-Tutorials - Multiplayer Game Hacking and Cheat Tutorials

- Sponsored Advertisement -
http://www.myfpscheats.com/

Reply
 
Thread Tools Display Modes
  #1  
Old 05-05-2009, 09:28 PM
Alkatraz Alkatraz is offline
Administrator
 
Join Date: Jan 2007
Posts: 72
Default Hack Shield ByPass

Finished Hack Shield Bypass code

Credits to Some damn Noob


What it does is basically create a thread to inject instead of making your bypass auto active.

Place this anywhere in your code:

Code:
void HsBypass( void* pxAddress, BYTE *code, int size )//define virtual protect
{
	unsigned long Protection;
	VirtualProtect((void*)pxAddress, size, PAGE_READWRITE, &Protection);
	memcpy((void*)pxAddress, (const void*)code, size);
	VirtualProtect((void*)pxAddress, size, Protection, 0);
}

void CopyModules()//name can be anything just make sure its the same as it is in dll main
{
	BYTE Artic66pwns[2] = {0xEB, 0xFE};

	HsBypass((void*)0x4A9EF1,Artic66pwns,2);
	HsBypass((void*)0x605493,Artic66pwns,2);
}
The bytes EB, FE jmp the jmp to both messages to themselves.
Actually works :P.

And underneath:
Code:
DLL_PROCESS_ATTACH
}
goes:
Code:
HANDLE hThread;
DWORD dwID;
hThread = CreateThread(0,0,(LPTHREAD_START_ROUTINE)CopyModules,0,0,&dwID);
CloseHandle(hThread);
I reccomend adding more addresses to it of course.
Do not leach this.

If you use this please Credit:
Everyone
Reply With Quote
Reply

Tags
bypass, hack, shield

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT. The time now is 01:50 PM.