Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty

    Lightbulb MW3 Memory Address Generator 1.0 by Geometrical

    here a tool a I made which scans patterns for addresses.

    Addresses it'll scan for:
    • Health
    • Primary Ammo
    • Primary Clip
    • Secondary Ammo
    • Secondary Clip
    • Lethal
    • Tactical
    • UAV
    • Advanced UAV
    • Clipping Modes
    • Akimbo
    • Player cordinates


    Instructions:
    • Start the tool and MW3.
    • Press scan and wait for it to be completed.
    • Press generate.
    • ...and your done.


    Screenshot:


    Note:
    Uses alot of your PC, so it'll slow while scanning. Also encrypted the archive so people don't leech the crap out of it (PM me for password)

    Jotti's malware scan
    Virus total

    Enjoy, will add more patterns in future updates.

    <b>Downloadable Files</b> Downloadable Files
    Last edited by Geometrical; 12-15-2012 at 07:30 AM.

  2. The Following 14 Users Say Thank You to Geometrical For This Useful Post:

    Dexesis (12-18-2012),didac18 (03-27-2013),Just4nt0 (12-05-2013),KeyTools (12-15-2012),luistorres99 (11-10-2018),matdores157 (11-07-2013),SaEgRo (12-17-2012),Silent (05-12-2016),snopidz (06-09-2016),sullydude (12-15-2012),T.Vader (10-19-2013),true1495 (12-16-2012),xERZAv (01-30-2014),zhang2628830 (03-15-2013)

  3. #2
    Nachos's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Between Equator and The North Pole
    Posts
    2,984
    Reputation
    176
    Thanks
    919
    My Mood
    Blah
    Approved.

    Highlight the part where it says "PM me for password" or people will spam like crazy.


    The lines in my Steam are i's

  4. The Following User Says Thank You to Nachos For This Useful Post:

    Geometrical (12-15-2012)

  5. #3
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Forgot to add credits @Jorndel for some help and his memory class for the read memory functions. Sorry.

  6. #4
    Coper's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    BlackOps3.exe
    Posts
    449
    Reputation
    17
    Thanks
    3,648
    My Mood
    In Love
    geo the password!!
    !

  7. #5
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by Coper View Post
    geo the password!!
    !
    No .

  8. #6
    Coper's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    BlackOps3.exe
    Posts
    449
    Reputation
    17
    Thanks
    3,648
    My Mood
    In Love
    why not geo come on

  9. #7
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by Coper View Post
    why not geo come on
    Because it's mine

  10. #8
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    It does not generate a pattern.. it just print the bytes of the address... That's not a pattern, if you try to scan for that when a new update comes out, it won't get any results.


    CoD Minion from 09/19/2012 to 01/10/2013

  11. #9
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by -InSaNe- View Post
    It does not generate a pattern.. it just print the bytes of the address... That's not a pattern, if you try to scan for that when a new update comes out, it won't get any results.
    This.
    This is why you use a pattern in this case which is one that contains wildcards in their byte order.
    Here's a little snippet on finding a pattern in C++:
    Code:
    bool bCompare(const BYTE* pData, const BYTE* bMask, const char* szMask)
    {
    	for(;*szMask;++szMask,++pData,++bMask)
    		if(*szMask=='x' && *pData!=*bMask)
    			return 0;
    	return (*szMask) == NULL;
    }
    DWORD FindPattern(DWORD dwAddress,DWORD dwLen,BYTE *bMask,char * szMask)
    {
    	for(DWORD i=0; i<dwLen; i++)
    		if (bCompare((BYTE*)(dwAddress+i),bMask,szMask))
    			return (DWORD)(dwAddress+i);
    	return 0;
    }
    So you can use this by:
    Eg. You have a byte pattern: 6A 32 0D 51 but the third byte is not the same even though you're sure the function or location is correct. (Same for pointers)
    So the pattern for this would be: (We use the byte prefix "\x") "\x6A\x32\x0D\x51" and all patterns must have a mask map so it will be: (Third is "?") "xx?x"
    So you can get the address for something by:
    Code:
    int HealthAddress = FindPattern ( ( DWORD )0xDEADBEEF, GetSizeOfModule ( "iw5mp.exe" ), ( PBYTE )"\x6A\x32\x0D\x51", ( char * )"xx?x" );


    So for a multi pointer:
    Code:
    
    DWORD * CorrectedHealthAddress = * ( DWORD * ) * ( DWORD * ) * ( DWORD * ) ( DWORD* ) HealthAddress;
    
    Last edited by Kenshin13; 12-15-2012 at 03:43 PM.

  12. The Following User Says Thank You to Kenshin13 For This Useful Post:

    KeyTools (12-16-2012)

  13. #10
    sullydude's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Seattle, WA
    Posts
    91
    Reputation
    10
    Thanks
    168
    My Mood
    Bored
    Quote Originally Posted by Geometrical View Post
    here a tool a I made which scans patterns for addresses.

    Addresses it'll scan for:
    • Health
    • Primary Ammo
    • Primary Clip
    • Secondary Ammo
    • Secondary Clip
    • Lethal
    • Tactical
    • UAV
    • Advanced UAV
    • Clipping Modes
    • Akimbo
    • Player cordinates


    Instructions:
    • Start the tool and MW3.
    • Press scan and wait for it to be completed.
    • Press generate.
    • ...and your done.


    Screenshot:


    Note:
    Uses alot of your PC, so it'll slow while scanning. Also encrypted the archive so people don't leech the crap out of it (PM me for password)

    Jotti's malware scan
    Virus total

    Enjoy, will add more patterns in future updates.

    Looks very nice~! Good Job Geo! For Player Coordinates, Does it scan for Mouse XY?

    - Sullydude


    Sullydude



     

    Facebook
    Youtube
    Twitter
    Skype: Su11ydud3


     


    • Call of Duty: Black Ops II
    • Need for Speed World
    • Minecraft
    • Call of Duty: World at War
    • League of Legends








  14. The Following User Says Thank You to sullydude For This Useful Post:

    Geometrical (12-15-2012)

  15. #11
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by sullydude View Post
    Looks very nice~! Good Job Geo! For Player Coordinates, Does it scan for Mouse XY?

    - Sullydude
    Thanks

    For player coordinates, it doesn't scan for mouse but player X ,Y and Z

  16. The Following User Says Thank You to Geometrical For This Useful Post:

    sullydude (12-15-2012)

  17. #12
    Coper's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    BlackOps3.exe
    Posts
    449
    Reputation
    17
    Thanks
    3,648
    My Mood
    In Love
    okap guys but i want this addreses for my uav and advance uav!
    Last edited by Coper; 12-16-2012 at 12:38 AM.

  18. #13
    true1495's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Germany :3
    Posts
    75
    Reputation
    10
    Thanks
    240
    My Mood
    Devilish
    Quote Originally Posted by Geometrical View Post
    here a tool a I made which scans patterns for addresses.

    Addresses it'll scan for:
    • Health
    • Primary Ammo
    • Primary Clip
    • Secondary Ammo
    • Secondary Clip
    • Lethal
    • Tactical
    • UAV
    • Advanced UAV
    • Clipping Modes
    • Akimbo
    • Player cordinates


    Instructions:
    • Start the tool and MW3.
    • Press scan and wait for it to be completed.
    • Press generate.
    • ...and your done.


    Screenshot:


    Note:
    Uses alot of your PC, so it'll slow while scanning. Also encrypted the archive so people don't leech the crap out of it (PM me for password)

    Jotti's malware scan
    Virus total

    Enjoy, will add more patterns in future updates.

    Haha easy password :3
    But nice work :3


    Do u like my hack?
    Press thanks to show me, that i have done good work.


  19. #14
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by true1495 View Post
    Haha easy password :3
    But nice work :3
    Why is everyone giving away the password? don't.

  20. #15
    true1495's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Germany :3
    Posts
    75
    Reputation
    10
    Thanks
    240
    My Mood
    Devilish
    Quote Originally Posted by Geometrical View Post
    Why is everyone giving away the password? don't.
    I dont get this pw from other guys :3 I have some other tricks ^^


    Do u like my hack?
    Press thanks to show me, that i have done good work.


Page 1 of 2 12 LastLast

Similar Threads

  1. [Solved] COD MW3 - 1.4 Memory Address
    By mustafa96m in forum Call of Duty Modern Warfare 3 Help
    Replies: 6
    Last Post: 08-16-2012, 02:48 PM
  2. Memory address question
    By crazyfool in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 08-18-2008, 10:29 AM
  3. Guild War Memory Addresses
    By rlange in forum Hack Requests
    Replies: 0
    Last Post: 08-29-2007, 08:56 AM
  4. Replies: 3
    Last Post: 01-04-2006, 09:52 PM
  5. Direct Memory Access (DMA) to Static Memory Addresses
    By Dave84311 in forum Game Hacking Tutorials
    Replies: 0
    Last Post: 12-31-2005, 08:18 PM