Page 2 of 2 FirstFirst 12
Results 16 to 29 of 29
  1. #16
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    Quote Originally Posted by kmanev073 View Post
    it is... if you compare it with the one in topbase v1.0 bcs i got it from there
    It really is optimized because VirtualProtect fails and therefore it won't take that much time.
    VirtualProtect(bt_DetourAddress, dw_Size, dw_OldProtection, NULL);

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

    mp3mp4 (10-28-2012)

  3. #17
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    Quote Originally Posted by derh.acker View Post
    It really is optimized because VirtualProtect fails and therefore it won't take that much time.
    VirtualProtect(bt_DetourAddress, dw_Size, dw_OldProtection, NULL);
    yea...

  4. #18
    ~FALLEN~'s Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    devenv.exe
    Posts
    529
    Reputation
    23
    Thanks
    328
    My Mood
    Inspired
    Quote Originally Posted by derh.acker View Post
    It really is optimized because VirtualProtect fails and therefore it won't take that much time.
    VirtualProtect(bt_DetourAddress, dw_Size, dw_OldProtection, NULL);
    exactly how would virtualprotect fail under this scenario...?

  5. #19
    giniyat101's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Not telling.
    Posts
    1,935
    Reputation
    130
    Thanks
    1,380
    My Mood
    Dead
    Quote Originally Posted by ~FALLEN~ View Post
    exactly how would virtualprotect fail under this scenario...?
    Quote Originally Posted by MSDN
    BOOL WINAPI VirtualProtect(
    _In_ LPVOID lpAddress,
    _In_ SIZE_T dwSize,
    _In_ DWORD flNewProtect,
    _Out_ PDWORD lpflOldProtect
    );

    pflOldProtect [out]
    A pointer to a variable that receives the previous access protection value of the first page in the specified region of pages. If this parameter is NULL or does not point to a valid variable, the function fails.
    thats why.


     



    [img]https://i43.photobucke*****m/albums/e367/DeteSting/Steam-update.gif[/img]

  6. The Following 2 Users Say Thank You to giniyat101 For This Useful Post:

    mp3mp4 (10-28-2012),~FALLEN~ (10-24-2012)

  7. #20
    ~FALLEN~'s Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    devenv.exe
    Posts
    529
    Reputation
    23
    Thanks
    328
    My Mood
    Inspired
    Quote Originally Posted by giniyat101 View Post
    thats why.
    ahhh I see, hmm learn something new every day rofl... I don't use VP often so... Yup... Got dat lower level st00f lololol anyways, thanks giniyat for pointing that out. +1

  8. The Following User Says Thank You to ~FALLEN~ For This Useful Post:

    giniyat101 (10-24-2012)

  9. #21
    temofox's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    tyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy

  10. #22
    IsReady's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    East Jerusalem, Jihad camp
    Posts
    92
    Reputation
    19
    Thanks
    32
    Quote Originally Posted by temofox View Post
    tyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
    egyptian

  11. #23
    EddieLaRaza's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    download pls

  12. #24
    purssy's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Scotland, Dumfries
    Posts
    45
    Reputation
    10
    Thanks
    2
    My Mood
    Angelic
    Damn, nice one (y)

  13. #25
    bok493's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    im a noob at making hacks so im new where shal i put the code?

  14. #26
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    Quote Originally Posted by bok493 View Post
    im a noob at making hacks so im new where shal i put the code?
    Learn coding before 'making' hacks

  15. The Following User Says Thank You to derh.acker For This Useful Post:

    mp3mp4 (10-28-2012)

  16. #27
    BPPK099's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    How To Use It can can anybody help me who someone help I'll Give you account for crossfire

  17. #28
    mp3mp4's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    160
    Reputation
    10
    Thanks
    31
    My Mood
    Hungover
    Quote Originally Posted by kmanev073 View Post
    Hello guys,
    Wanted to share with you my new detour function:

    Code:
    void PlaceJMP( BYTE *bt_DetourAddress, DWORD dw_FunctionAddress, DWORD dw_Size)
    {
    	DWORD dw_OldProtection, dw_Distance;
    	VirtualProtect(bt_DetourAddress, dw_Size, PAGE_EXECUTE_READWRITE, &dw_OldProtection);
    	dw_Distance = (DWORD)(dw_FunctionAddress - (DWORD)bt_DetourAddress) - 5;
    	*bt_DetourAddress = 0xE9;
    	*(DWORD*)(bt_DetourAddress + 0x1) = dw_Distance;
    	for(int i = 0x5; i < dw_Size; i++) *(bt_DetourAddress + i) = 0x90;
    	VirtualProtect(bt_DetourAddress, dw_Size,  dw_OldProtection, NULL);
        return;
    }
    it does the same as the old detour function but the code is optimized and the variables now have better names !



    The surprise:

    The simple memory hacking is still possible @giniyat101 you were right any way not even "CreateThread" function needed or hook

    good morning ^^

  18. #29
    roadkill9111's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    is their a download for this hack available?

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [News] New Rule About Hack Packs
    By Lehsyrus in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 16
    Last Post: 10-05-2012, 07:29 AM
  2. [News] Be careful, new version! [1.9.446]
    By urbanlucky in forum Call of Duty Modern Warfare 3 Discussions
    Replies: 24
    Last Post: 09-14-2012, 03:29 AM
  3. New Detour/Hook PLz
    By namename41 in forum Combat Arms Coding Help & Discussion
    Replies: 3
    Last Post: 08-10-2011, 06:06 PM
  4. i need new detour/hook
    By justiniscool5 in forum Combat Arms Coding Help & Discussion
    Replies: 14
    Last Post: 07-10-2011, 10:10 PM
  5. [Detected] AO Team Test hack V1 new undected detour added
    By sam22 in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 120
    Last Post: 02-28-2011, 02:39 PM