Results 1 to 15 of 15
  1. #1
    justiniscool5's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    idk
    Posts
    884
    Reputation
    -12
    Thanks
    182
    My Mood
    Bitchy

    i need new detour/hook

    i need new detour/hook please help someone i need it for my hack

  2. #2
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    Do it yourself. Its easy.
    Microsoft Detours v3 ftw?

  3. The Following User Says Thank You to DeadLinez For This Useful Post:

    SrNooB (07-10-2011)

  4. #3
    justiniscool5's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    idk
    Posts
    884
    Reputation
    -12
    Thanks
    182
    My Mood
    Bitchy
    @DeadLinez hey get on msn Lolz

  5. #4
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    i have ms detour v2
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  6. #5
    OBrozz's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    819
    Reputation
    65
    Thanks
    813
    Yeah. Same working on one right now.
    Last edited by OBrozz; 07-10-2011 at 07:30 PM.

  7. #6
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    Quote Originally Posted by topblast View Post
    i have ms detour v2
    its detected im pretty sure :/

  8. #7
    NexonGuard's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    91
    Reputation
    10
    Thanks
    7
    i have detour detected but i undetected again.

    i not play CA-NA.

  9. #8
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Try a different method of hooking rather than just placing a jump at the start of the function.

  10. The Following User Says Thank You to Void For This Useful Post:

    flameswor10 (07-10-2011)

  11. #9
    Cediquer's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    395
    Reputation
    7
    Thanks
    18
    My Mood
    Twisted
    im making one right now

  12. #10
    SrNooB's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    df
    Posts
    61
    Reputation
    17
    Thanks
    3
    justin you can't code.
    you leech and hex like none other

  13. The Following User Says Thank You to SrNooB For This Useful Post:

    kibbles18 (07-10-2011)

  14. #11
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by DeadLinez View Post
    its detected im pretty sure :/
    How you know.. this is not the v1.5 everyone have, this is 2.1 i am thinking pro :O the real shit.

    And yes it totally works with IA64 lol
    Code:
    //////////////////////////////////////////////////////////////////////////////
    //
    //  Core Detours Functionality (detours.cpp of detours.lib)
    //
    //  Microsoft Research Detours Package, Version 2.1.
    //
    //  Copyright (c) Microsoft Corporation.  All rights reserved.
    //
    
    #ifdef DETOURS_IA64
        PPLABEL_DESCRIPTOR ppldDetour = (PPLABEL_DESCRIPTOR)pDetour;
        PPLABEL_DESCRIPTOR ppldTarget = (PPLABEL_DESCRIPTOR)pbTarget;
        PVOID pDetourGlobals = NULL;
        PVOID pTargetGlobals = NULL;
    
        pDetour = (PBYTE)DetourCodeFromPointer(ppldDetour, &pDetourGlobals);
        pbTarget = (PBYTE)DetourCodeFromPointer(ppldTarget, &pTargetGlobals);
        DETOUR_TRACE(("  ppldDetour=%p, code=%p [gp=%p]\n",
                      ppldDetour, pDetour, pDetourGlobals));
        DETOUR_TRACE(("  ppldTarget=%p, code=%p [gp=%p]\n",
                      ppldTarget, pbTarget, pTargetGlobals));
    #else
        pbTarget = (PBYTE)DetourCodeFromPointer(pbTarget, NULL);
        pDetour = DetourCodeFromPointer(pDetour, NULL);
    #endif


    Quote Originally Posted by Void View Post
    Try a different method of hooking rather than just placing a jump at the start of the function.
    yea lets play Push Ret.. wait no thats detected.

    Test eax, eax
    JNZ

    noobs cant do that :O.

    Move the whole function, Copy it all move it to some allocated space and leave a Call there :O
    Last edited by topblast; 07-10-2011 at 08:48 PM.
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  15. #12
    Cediquer's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    395
    Reputation
    7
    Thanks
    18
    My Mood
    Twisted
    Quote Originally Posted by SrNooB View Post
    justin you can't code.
    you leech and hex like none other
    wow never new he does that

  16. #13
    SrNooB's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    df
    Posts
    61
    Reputation
    17
    Thanks
    3
    Quote Originally Posted by Cediquer View Post
    wow never new he does that
    lrn2nevertalktojustin

  17. #14
    OBrozz's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    819
    Reputation
    65
    Thanks
    813
    Quote Originally Posted by SrNooB View Post
    lrn2nevertalktojustin
    Ilrn2that2late

  18. The Following User Says Thank You to OBrozz For This Useful Post:

    SrNooB (07-10-2011)

  19. #15
    kibbles18's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    US
    Posts
    860
    Reputation
    5
    Thanks
    127

  20. The Following User Says Thank You to kibbles18 For This Useful Post:

    flameswor10 (07-10-2011)

Similar Threads

  1. New Detour/Hook PLz
    By namename41 in forum Combat Arms Coding Help & Discussion
    Replies: 3
    Last Post: 08-10-2011, 06:06 PM
  2. Need new addresses for VB6 !!! HELP
    By TheBlueMax in forum Visual Basic Programming
    Replies: 2
    Last Post: 01-03-2008, 08:40 AM
  3. I need new aadresses !
    By BlueZero in forum WarRock - International Hacks
    Replies: 14
    Last Post: 12-27-2007, 04:48 AM
  4. i need new hacks
    By Warrockfreak in forum WarRock - International Hacks
    Replies: 6
    Last Post: 08-16-2007, 01:15 AM
  5. Need new Warrock Hack
    By Nathansap in forum WarRock - International Hacks
    Replies: 8
    Last Post: 04-29-2007, 11:35 AM