Results 1 to 8 of 8
  1. #1
    syqgtt's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    1

    Unhappy Please tell me how to make Pointer DLL (C++)

    Please tell me how to make Pointer DLL (C++)


    ****.exe+00065098 offset[hex]200

    Array of Bytes
    E8 3F FF 03 07 00 00 00 24 CB
    to
    E9 00 00 03 07 00 00 00 0D 21
    want to know how to change the DLL.

    Please give a source or recipe

    I use a translation
    I'm sorry, but hard to read


  2. The Following User Says Thank You to syqgtt For This Useful Post:

    sivanut (06-02-2011)

  3. #2
    zayanym's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Lonely

    Question Hack

    How to start hacking

  4. #3
    DED_MA3AY's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    5
    Quote Originally Posted by zayanym View Post
    How to start hacking
    To learn, to learn and learn to study once again as the great grandfather Lenin bequeathed

  5. #4
    Ubivashka's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by DED_MA3AY View Post
    To learn, to learn and learn to study once again as the great grandfather Lenin bequeathed

    It is well told. Our person. The patriot. The communist.

  6. #5
    squid4mayor's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    ★★★★★★★★★★★★★★&#
    Posts
    207
    Reputation
    10
    Thanks
    914
    My Mood
    Psychedelic
    @_@ ya CE is simple but its very reliable for keeping addresses on PB as ive found and so ive had to use various other programs



  7. #6
    gosicks's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    12
    My Mood
    Paranoid
    shomething like this?

    Code:
    void MEMread(void *adr, void *ptr, int size)
    {
    	DWORD OldProtection;
    	VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);
    	memcpy(adr,ptr,size);
    	VirtualProtect(adr,size,OldProtection, &OldProtection);
    }
    
     DWORD dwModul = (DWORD)GetModuleHandle("YourModul");
                            DWORD dwBase;
                            ReadProcessMemory(GetCurrentProcess(), (LPCVOID) (dwModul + 0x65098), &dwBase, sizeof(dwBase), NULL);
                            MEMread((void *)(dwBase + 0x200),(void*)(PBYTE)"\x34\x69",2); // fill your hex

  8. #7
    GeorGeXV's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    мазай

    Бля мазай ахахахах

  9. #8
    Lehsyrus's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Jersey
    Posts
    10,893
    Reputation
    1281
    Thanks
    3,130
    Quote Originally Posted by gosicks View Post
    shomething like this?

    Code:
    void MEMread(void *adr, void *ptr, int size)
    {
    	DWORD OldProtection;
    	VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);
    	memcpy(adr,ptr,size);
    	VirtualProtect(adr,size,OldProtection, &OldProtection);
    }
    
     DWORD dwModul = (DWORD)GetModuleHandle("YourModul");
                            DWORD dwBase;
                            ReadProcessMemory(GetCurrentProcess(), (LPCVOID) (dwModul + 0x65098), &dwBase, sizeof(dwBase), NULL);
                            MEMread((void *)(dwBase + 0x200),(void*)(PBYTE)"\x34\x69",2); // fill your hex
    Out of date and nice leech.