External Scan Pattern!

Posts 1–15 of 20 · Page 1 of 2
External Scan Pattern!
Hi everyone, today i will be releasing a external scan pattern! Goodluck! Thanks if it helps



Code:
DWORD ScanPatternEx(HANDLE hProc, DWORD base, DWORD len, BYTE* sig, char* mask)
{
	BYTE* buf = (BYTE*)VirtualAlloc(0, len, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
	if(ReadProcessMemory(hProc,(LPCVOID)base,buf,len,N  ULL) == false)
	{
		char buf2[64];
		sprintf(buf2, "RPM Error code: %d", GetLastError());
		MessageBoxA(0,buf2, "Error", MB_OK);
		return NULL;
	}
	for(int i = 0; i < len; i++)
	{
		if((buf[i] == sig[0] && mask[0] == 'x')||(mask[0] == '?'))
		{
			for(int x = 0;; x++)
			{
				if(mask[x] == 'x')
				{
					if(buf[i+x] == sig[x])
						continue;
					else
						break;
				}
				else if(mask[x] == 0x00)
				{
					return (DWORD)(base+i);
				}
			}
		}
	}
	return NULL;
}
What the function? can answer me? :/
Its an external scan pattern, just an alternative
Quote Originally Posted by _Faris View Post
What the function? can answer me? :/
for hacks or what? thx for the reply
nice code but a tricky
Quote Originally Posted by goldilocks View Post
What does this code do? @COD3RIN
Triggerbot
Quote Originally Posted by COD3RIN View Post


Triggerbot
I laughed so hard at this. Do you even know what this does ?
Quote Originally Posted by Caezer99 View Post
I laughed so hard at this. Do you even know what this does ?
So what is it?
LOL i was laughing too :x
Quote Originally Posted by Caezer99 View Post
I laughed so hard at this. Do you even know what this does ?
It song is soo cool
Sony Vegas is shit^^
Quote Originally Posted by Caezer99 View Post
You don't even what the fuck does a void do, I don't think you made this. You are just like the 2nd COD3RIN. lol
Fucking "KaeMing"
That is better for nothing he contribute in this forum how about you caezer what is your contribution here ?
Exactly, I have to agree with you, HE DID NOTHING YET BARKING OVER HERE AND THERE
Quote Originally Posted by COD3RIN View Post


That is better for nothing he contribute in this forum how about you caezer what is your contribution here ?
o
Code:
DWORD ScanPatternEx(HANDLE hProc, DWORD base, DWORD len, BYTE* sig, char* mask)
{
	BYTE* buf = (BYTE*)VirtualAlloc(0, len, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
	if(ReadProcessMemory(hProc,(LPCVOID)base,buf,len,N  ULL) == false)
	{
		char buf2[64];
		sprintf(buf2, "RPM Error code: %d", GetLastError());
		MessageBoxA(0,buf2, "Error", MB_OK);
		return NULL;
	}
	for(int i = 0; i < len; i++)
	{
		if((buf[i] == sig[0] && mask[0] == 'x')||(mask[0] == '?'))
		{
			for(int x = 0;; x++)
			{
				if(mask[x] == 'x')
				{
					if(buf[i+x] == sig[x])
						continue;
					else
						break;
				}
				else if(mask[x] == 0x00)
				{
					return (DWORD)(base+i);
				}
			}
		}
	}
	return NULL;
}
what is this??????
Posts 1–15 of 20 · Page 1 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?