New anti-hack need some info

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    Member lloyd92 is offline
    MemberRank
    May 2010 Join Date
    57Posts

    config New anti-hack need some info

    Alright I made a damn good anti-hack with c# so a .exe, That is unbypassable because you need it to start the runnable and the process is not closeable because when you close it gunz closes too.

    This is how it works:
    You need a launcer named Launcher.exe to start the antihack so instead of opening theduel.exe you open antihack.exe.
    The anti hack has a serial also has the runnable so the only way to start the runnable is via the anti-hack.

    The anti-hack checks every second on illegal programs that I added to a array, example: cheat engine or injex.
    That is also where I need you guys, I want you to tell me every injector/hacking program/Macro program name you know and post it below so i can add it to this anti-hack.

    When I am done with adding alot of illegal processes i will release this anti-hack with the runnable.

    Kind Regards,
    Lloyd


    /// I'll keep updating this part of the THREAD! ///
    Do you know any more programs that need to be blocked? post them below!

    My anti-hack currently blocks:
    - Cheat Engine
    - OMFGZ MultiDll Injector
    - mcinject
    - InjeX
    - MG Trainer
    - LG Trainer
    - NDLL (a program that's responsible for many asm hooking hackers)
    - Moonlight Engine
    - AC Tools
    - Injec TOR
    - Infinity
    - QRFL Auto-Injector

    Do you know any more programs that need to be blocked? post them below!
    Last edited by lloyd92; 11-09-10 at 06:30 PM.


  2. #2
    Account Upgraded | Title Enabled! 00niels00 is offline
    MemberRank
    Sep 2008 Join Date
    The NetherlandsLocation
    1,041Posts

    Re: New anti-hack need some info

    Quote Originally Posted by lloyd92 View Post
    Alright I made a damn good anti-hack with c# so a .exe, That is unbypassable because you need it to start the runnable and the process is not closeable because when you close it gunz closes too.

    This is how it works:
    You need a launcer named Launcher.exe to start the antihack so instead of opening theduel.exe you open antihack.exe.
    The anti hack has a serial also has the runnable so the only way to start the runnable is via the anti-hack.

    The anti-hack checks every second on illegal programs that I added to a array, example: cheat engine or injex.
    That is also where I need you guys, I want you to tell me every injector/hacking program/Macro program name you know and post it below so i can add it to this anti-hack.

    When I am done with adding alot of illegal processes i will release this anti-hack with the runnable.

    Kind Regards,
    Lloyd
    So you mean you made a client-side antihack that checks for process names? And added an anti-inject?

  3. #3
    Member lloyd92 is offline
    MemberRank
    May 2010 Join Date
    57Posts

    Re: New anti-hack need some info

    Quote Originally Posted by 00niels00 View Post
    So you mean you made a client-side antihack that checks for process names? And added an anti-inject?
    Yes that's basicly it, but i need to say it works really well.
    I didn't found a way to bypass the anti-hack yet.
    Only thing is changing your injector or macro process name.
    But still better then nothing and I release it for free :P

  4. #4
    Ā  Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: New anti-hack need some info

    You called it "unbypassable". I'm sure Phail / Guy have things to comment on that. Good luck with this, I'm looking forward to it's release.

  5. #5
    Member azatain is offline
    MemberRank
    May 2009 Join Date
    68Posts

    Re: New anti-hack need some info

    Quote Originally Posted by lloyd92 View Post

    Do you know any more programs that need to be blocked? post them below!

    My anti-hack currently blocks:
    - Cheat Engine
    - OMFGZ MultiDll Injector
    - mcinject
    - InjeX
    - MG Trainer
    - LG Trainer
    - NDLL (a program that's responsible for many asm hooking hackers)

    Do you know any more programs that need to be blocked? post them below!
    Code:
    moonlight engine
    :)

  6. #6
    Member lloyd92 is offline
    MemberRank
    May 2010 Join Date
    57Posts

    Re: New anti-hack need some info

    Quote Originally Posted by phoenix_147 View Post
    You called it "unbypassable". I'm sure Phail / Guy have things to comment on that. Good luck with this, I'm looking forward to it's release.
    without the anti-hack gunz doesn't start. close it process will close gunz so I think it's unbypassable, but I love to be proven wrong :P

  7. #7
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: New anti-hack need some info

    easily bypassed with ASM? probably just jump past the code that requires the Anti-Hack program.

  8. #8
    Member Morality is offline
    MemberRank
    Aug 2010 Join Date
    Houston, TXLocation
    89Posts

    Re: New anti-hack need some info

    Can't wait to see the outcome. Good luck!


    Also, "Infinity", "QRFL Auto-Injector", "MultiDLL Auto-Injector" are some Auto Injectors I have looked up on Google.

  9. #9
    Account Upgraded | Title Enabled! 00niels00 is offline
    MemberRank
    Sep 2008 Join Date
    The NetherlandsLocation
    1,041Posts

    Re: New anti-hack need some info

    I think you just did it this way...
    PHP Code:
    using System.Diagnostics;

    //just create a stupid array with a shitload of process names in it.
    Process[] processes Process.GetProcessesByName("injector.exe");

    foreach (
    Process process in processes)
    {
        
    process.Kill();

    If so you're anti-hack is shit, because you can just change to process name.
    Last edited by 00niels00; 11-09-10 at 06:22 PM.

  10. #10
    Member lloyd92 is offline
    MemberRank
    May 2010 Join Date
    57Posts

    Re: New anti-hack need some info

    Quote Originally Posted by wesman2232 View Post
    easily bypassed with ASM? probably just jump past the code that requires the Anti-Hack program.
    No already made a other way of checking that the anti hack is running that also prevents of making a program with he same process name.

    But i can't stop ppl hooking dll's with asm, but i can block NDLL that most ppl use to asm hook dll's.

    ---------- Post added at 04:37 PM ---------- Previous post was at 04:27 PM ----------

    Quote Originally Posted by 00niels00 View Post
    I think you just did it this way...
    PHP Code:
    using System.Diagnostics;

    //just create a stupid array with a shitload of process names in it.
    Process[] processes Process.GetProcessesByName("injector.exe");

    foreach (
    Process process in processes)
    {
        
    process.Kill();

    If so you're anti-hack is shit, because you can just change to process name.
    I used another method of checking but your right about just changing the process name, so in other words your right about it being shit but also it's better then nothing.

    (And GRATS!! with your 1000 posts )

  11. #11
    WowIwasSuperCringeB4 XZeenon is offline
    MemberRank
    Jun 2008 Join Date
    CanadaLocation
    1,405Posts

    Re: New anti-hack need some info

    I remember when I did blacklisting lol.

    Buddy, you do know we can just freeze your app when we run gunz?

  12. #12
    Account Upgraded | Title Enabled! 00niels00 is offline
    MemberRank
    Sep 2008 Join Date
    The NetherlandsLocation
    1,041Posts

    Re: New anti-hack need some info

    Quote Originally Posted by XZeenon View Post
    I remember when I did blacklisting lol.

    Buddy, you do know we can just freeze your app when we run gunz?
    Indeed you can change speed setting with PE program or just use cheat engine.

  13. #13
    WowIwasSuperCringeB4 XZeenon is offline
    MemberRank
    Jun 2008 Join Date
    CanadaLocation
    1,405Posts

    Re: New anti-hack need some info

    Quote Originally Posted by 00niels00 View Post
    Indeed you can change speed setting with PE program or just use cheat engine.
    Or get an advanced process managing program... :P

  14. #14
    Sultan of Yolo Demantor is offline
    MemberRank
    May 2008 Join Date
    GermanyLocation
    1,266Posts

    Re: New anti-hack need some info

    rename the process name of the injector to firefox 3.5 and your a hacker who bypassed the anticheat! blacklist is nothing

  15. #15
    Account Upgraded | Title Enabled! Guy is offline
    MemberRank
    Apr 2009 Join Date
    919Posts

    Re: New anti-hack need some info

    Quote Originally Posted by lloyd92 View Post
    This is how it works:
    You need a launcer named Launcher.exe to start the antihack so instead of opening theduel.exe you open antihack.exe.
    The anti hack has a serial also has the runnable so the only way to start the runnable is via the anti-hack.
    What if I were to write a tool to emulate the serial? What would prevent the client from being opened?

    How would I get the serial? Two obvious ways stick out:

    1) Reverse the anti-hack in an attempt to locate it (Through means of, say, decompilation or disassembly).
    2) Write a "fake" Gunz client which captures the serial being sent to the client.



Page 1 of 2 12 LastLast

Advertisement