Thread: "Hack Detected"

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    boncha's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0

    "Hack Detected"

    i build an hack
    but after 5 sec in game its detected
    some cant tell me what i need to do ?

  2. #2
    p0wn4ge's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    Holland :)
    Posts
    154
    Reputation
    12
    Thanks
    187
    My Mood
    Amused
    with menu? Update your detours to mld32 for example.

  3. #3
    boncha's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by p0wn4ge View Post
    with menu? Update your detours to mld32 for example.
    its with menu !
    how to update mld32 ???
    my detours is :
    .h
    void *DetourFunc(BYTE *src, const BYTE *dst, const int len)
    {
    BYTE *jmp = (BYTE*)malloc(len+5);
    DWORD dwback;

    VirtualProtect(src, len, PAGE_READWRITE, &dwback);

    memcpy(jmp, src, len); jmp += len;

    jmp[0] = 0xE9;
    *(DWORD*)(jmp+1) = (DWORD)(src+len - jmp) - 5;

    src[0] = 0xE9;
    *(DWORD*)(src+1) = (DWORD)(dst - src) - 5;

    VirtualProtect(src, len, dwback, &dwback);

    return (jmp-len);
    }

    .cpp
    #define WIN32_LEAN_AND_MEAN
    #include <windows.h>
    #include <stdlib.h>
    #include "detours.h"


    int DetourASMlen(BYTE *src, int minlen) // find out asm instruction length
    {
    int i,len;

    for (len=0; len<minlen; len+=i) {
    i=mlde32((void *)src);
    if (i<=0) return 0;
    src+=i;
    }
    return len;
    }

    void *DetourCreate(BYTE *src, const BYTE *dst, int minlen)
    {
    BYTE *jmp, *org;
    DWORD dwBack;
    int len;

    len=DetourASMlen(src,(minlen<6)?6:minlen);
    if (len==0 && minlen>=6) len=minlen;
    if (len==0) return 0;

    org=jmp = (BYTE*)malloc(len+5+1); // room for nobytes + jmplen + size byte
    jmp[0]=len; // save length in first byte
    jmp++;

    VirtualProtect(src, len, PAGE_EXECUTE_READWRITE, &dwBack);
    memcpy(jmp, src, len);
    jmp += len;
    jmp[0] = 0xE9;
    *(DWORD*)(jmp+1) = (DWORD)(src+len - jmp) - 5;

    src[0] = 0x68; // different hook, push address ret
    *(DWORD*)(src+1) = (DWORD)(dst);
    src[5] = 0xc3;
    for (int i=6; i<len; i++) src[i] = 0x90;
    VirtualProtect(src, len, dwBack, &dwBack);

    return &org[1]; // return entry point, byte 0 = length
    }

    // restore == return value of DetourCreate
    void DetourRemove(BYTE *src, BYTE *restore, int len)
    {
    DWORD dwBack;

    len=*(BYTE *)(restore-1); // ignore len parameter, only for backward competability

    VirtualProtect(src, len, PAGE_EXECUTE_READWRITE, &dwBack);
    memcpy(src, restore, len);
    restore[0] = 0xE9;

    *(DWORD*)(restore+1) = (DWORD)(src - restore) - 5;
    VirtualProtect(src, len, dwBack, &dwBack);
    }
    Last edited by boncha; 10-09-2009 at 06:45 AM.

  4. #4
    p0wn4ge's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    Holland :)
    Posts
    154
    Reputation
    12
    Thanks
    187
    My Mood
    Amused
    THose are the regular detours
    Pm me your source (just remove your hacks etc.)

  5. #5
    boncha's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by p0wn4ge View Post
    THose are the regular detours
    Pm me your source (just remove your hacks etc.)
    PM came to you dude
    tnx

    dont lock it yeat

  6. #6
    p0wn4ge's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    Holland :)
    Posts
    154
    Reputation
    12
    Thanks
    187
    My Mood
    Amused
    I'll fix 4 you.

  7. #7
    Ravallo's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    The Netherlands
    Posts
    17,093
    Reputation
    2134
    Thanks
    5,750
    My Mood
    Angelic
    You could also try to rename both the injector and the dll file
    (If you name the hack 123456, then name the dll file 123456.dll)
    Otherwise you could run Ccleaner, if that doesn't work it is probably 100% detected xD

  8. #8
    Liz's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    179° 56′ 39.4″, +0° 2′ 46.2″, 7,940 ± 420 parsecs
    Posts
    37,181
    Reputation
    5621
    Thanks
    20,746
    My Mood
    Tired
    5 bucks on copy and paste code.

    If anyone claims to be me via any other source outside of MPGH private or visitor messages, IT'S NOT ME!
    They are trying to trick or scam you. Report them immediately and PM me here for verification.
    "Don’t confuse my personality with my attitude. My personality is who I am. My attitude depends on who you are." — Frank Ocean
    Moderator: 5/2009-10/2009 | GMod: 10/2009-10/2010 | Staff Administrator: 10/2010-Present
    I
    do not do requests via PM. Post in the appropriate section.
     
    Stupid/Pointless Private messages = SPAM, SPAM = BAN.

  9. The Following User Says Thank You to Liz For This Useful Post:

    Hell_Demon (10-10-2009)

  10. #9
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    I would easily put 50 bucks on that.

  11. The Following User Says Thank You to Lolland For This Useful Post:

    Hell_Demon (10-10-2009)

  12. #10
    zeco's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    683
    Reputation
    12
    Thanks
    78
    My Mood
    Cynical
    Ill Up you by a factor of 10, 500 bucks >_<

  13. #11
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    f*ck those low amounts, at least 50 million!
    Ah we-a blaze the fyah, make it bun dem!

  14. #12
    boncha's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Ravallo View Post
    You could also try to rename both the injector and the dll file
    (If you name the hack 123456, then name the dll file 123456.dll)
    Otherwise you could run Ccleaner, if that doesn't work it is probably 100% detected xD
    i try it
    no secess

  15. #13
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Quote Originally Posted by boncha View Post
    i try it
    no secess
    try learning C++ first instead of Copy pastin a random 10 year old hack
    Ah we-a blaze the fyah, make it bun dem!

  16. #14
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    this might help try a other injector then the one u have build for example OMGZ-injector or perX.

    did u try to build a bypass because if ur using tatnium d3d u'll need that.
    most tuts about bypasses are VIP so u'll need to pay for it.

    got mine injected without getting found lately but my code for the menu is fixed ¬¬ so ill need to build a numpad activator.
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

  17. #15
    boncha's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Hell_Demon View Post
    try learning C++ first instead of Copy pastin a random 10 year old hack
    tnx
    Quote Originally Posted by pspiso View Post
    this might help try a other injector then the one u have build for example OMGZ-injector or perX.

    did u try to build a bypass because if ur using tatnium d3d u'll need that.
    most tuts about bypasses are VIP so u'll need to pay for it.

    got mine injected without getting found lately but my code for the menu is fixed ¬¬ so ill need to build a numpad activator.
    O_O i did it but is not help for me

Page 1 of 2 12 LastLast

Similar Threads

  1. Question About Hack Detection...
    By gbitz in forum WarRock - International Hacks
    Replies: 10
    Last Post: 03-02-2008, 01:35 PM
  2. are hacks detected
    By l3artt in forum WarRock - International Hacks
    Replies: 1
    Last Post: 11-14-2007, 08:31 PM
  3. Hack detected immediately
    By pbsucks in forum Visual Basic Programming
    Replies: 4
    Last Post: 11-07-2007, 09:25 AM
  4. Is the scope hack detected??
    By .-=m1k3y=-. in forum WarRock - International Hacks
    Replies: 5
    Last Post: 06-09-2007, 04:13 PM
  5. Anti Hack Detection Runnable
    By terryma in forum Gunz General
    Replies: 3
    Last Post: 02-07-2006, 07:10 PM

Tags for this Thread