Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    xPureangel's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Singapore
    Posts
    27
    Reputation
    10
    Thanks
    234
    My Mood
    Amazed

    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;
    }

  2. #2
    _Faris's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    1
    What the function? can answer me? :/

  3. #3
    xPureangel's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Singapore
    Posts
    27
    Reputation
    10
    Thanks
    234
    My Mood
    Amazed
    Its an external scan pattern, just an alternative
    Quote Originally Posted by _Faris View Post
    What the function? can answer me? :/

  4. #4
    _Faris's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    1
    for hacks or what? thx for the reply

  5. #5
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    nice code but a tricky
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  6. The Following User Says Thank You to COD3RIN For This Useful Post:

    iscazmy (05-28-2014)

  7. #6
    goldilocks's Avatar
    Join Date
    Jan 2009
    Gender
    female
    Posts
    57
    Reputation
    10
    Thanks
    11
    My Mood
    Aggressive
    What does this code do? @COD3RIN

  8. #7
    killdoom's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    It song is soo cool

  9. #8
    Groshy's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    1,577
    My Mood
    Amazed
    Sony Vegas is shit^^

  10. #9
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    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 ?
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  11. #10
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by goldilocks View Post
    What does this code do? @COD3RIN
    Triggerbot
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  12. #11
    xPureangel's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Singapore
    Posts
    27
    Reputation
    10
    Thanks
    234
    My Mood
    Amazed
    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 ?

  13. #12
    khuanren98's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    1

    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??????
    Last edited by Mayion; 01-24-2014 at 10:09 AM.

  14. #13
    Caezer99's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    577
    Reputation
    10
    Thanks
    1,243
    Quote Originally Posted by COD3RIN View Post


    Triggerbot
    I laughed so hard at this. Do you even know what this does ?


    Mess with the best, die like the rest.


  15. #14
    goldilocks's Avatar
    Join Date
    Jan 2009
    Gender
    female
    Posts
    57
    Reputation
    10
    Thanks
    11
    My Mood
    Aggressive
    Quote Originally Posted by Caezer99 View Post
    I laughed so hard at this. Do you even know what this does ?
    So what is it?

  16. #15
    xPureangel's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Singapore
    Posts
    27
    Reputation
    10
    Thanks
    234
    My Mood
    Amazed
    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 ?

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] External Scan Pattern
    By kibbles18 in forum C++/C Programming
    Replies: 4
    Last Post: 01-28-2014, 08:38 PM
  2. [Source Code] PCe2013 - SOURCE - WDDM HOOK - MENUE - PATTERN SCAN - 5 Designs -
    By pceumel in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 22
    Last Post: 04-12-2013, 01:24 PM
  3. [Release] AlterOps External Hack 1.8.1 [With Pattern Scanner]
    By fatjoe2015 in forum Call of Duty 7 - Black Ops Hacks & Cheats
    Replies: 163
    Last Post: 04-02-2012, 02:11 PM
  4. who got for me the nfd pattern
    By sander70 in forum WarRock Hack Source Code
    Replies: 0
    Last Post: 05-02-2011, 04:46 AM
  5. [C++] ConsoleAddress Pattern
    By ipwnuuaal5 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 30
    Last Post: 08-08-2010, 05:31 AM