Results 1 to 15 of 15
  1. #1
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah

    So it is possible to make .net hacks

    Any of you guys tried in vb or C#?
    I started working on an injector yesterday to inject my C# dll and run it without using a bootstrap dll.

    I was testing it out just now with a new address
    Wallhack addy
    Code:
    Crossfire.exe+2D29FC or 0x6D29FC with the base added
    And it worked.
    Toggable wallhack
    Code:
                if (Keystate(Keys.F6, 0))//WallHack
                {
                    byte[] byts = B[0] ? new byte[] { 00, 00, 00, 00, 00 } : new byte[] { 01, 01, 01, 01, 01 };
                    WriteBytes(MainBase + 0x2D29FC, byts);
                    B[0] = !B[0];
                }
    Write bytes function
    Code:
            static void WriteBytes(int Address, byte[] byts)
            {
                uint _Old, tmp;
                VirtualProtectEx(ProHandle, new IntPtr(Address), byts.Length, 0x40, out _Old);
                Marshal.Copy(byts, 0, new IntPtr(Address), byts.Length);
                VirtualProtectEx(ProHandle, new IntPtr(Address), byts.Length, _Old, out tmp);
            }
    Screen
    [IMG]https://i203.photobucke*****m/albums/aa29/Baxter_esa/NetWall.png[/IMG]

    This should make things easier for people. I just need to finish it and also convert it to vb.
    I think more people in the CF section code in VB than any other language.
    Two bonuses, the dllmain can be written an inf amount of ways.
    The dll itself can be built from a loader and excrypted making them basically private hacks.

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

    dakr54 (08-19-2012)

  3. #2
    ahmedtito5's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    SomeWhere :D
    Posts
    129
    Reputation
    10
    Thanks
    4
    My Mood
    Amused
    Nice Good Job are you gonna Realse it?
    DONT EVER GIVE UP FOR ANY THING

    Thank Me If I Helped



    ResPectList:
    @Ramo
    @[S]aeed
    @BackD00r
    @Jeovante
    @Hero

  4. #3
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    Of course i will.
    Gonna clean it up and release a vb and c# source.

  5. #4
    ..x_X_x..'s Avatar
    Join Date
    Dec 2011
    Gender
    male
    Location
    On The [[[MoOoN]]]
    Posts
    1,812
    Reputation
    49
    Thanks
    620
    My Mood
    Angelic
    Oh....can't wait to make it with VB..

  6. #5
    Viktor's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    BC, Canada
    Posts
    4,433
    Reputation
    127
    Thanks
    598
    Why did you post the codes -.-'', You know there are leechers waiting for stuff to leech and nice, i hope you release it soon


     


  7. #6
    Janitor's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    MPGH Reports
    Posts
    16,255
    Reputation
    3259
    Thanks
    7,214
    My gosh didn't expect that !!

  8. #7
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    Nice

  9. #8
    Bernard's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Purgatory
    Posts
    26,364
    Reputation
    3488
    Thanks
    3,546
    My Mood
    Lurking
    sounds good
    Rep. Power: 126

    Minion: 11/28/12-3/15/14

  10. #9
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    Quote Originally Posted by Exil View Post
    Why did you post the codes -.-'', You know there are leechers waiting for stuff to leech and nice, i hope you release it soon
    Ah i wasnt worried about that. Its useless how it is.
    I will release as soon as i can. Im not the fastest vb coder.
    I have 3 ideas for this, an injector, a loader and a hack creator.
    The hack creator will take the longest to make but it'l be worth it when done.
    All someone would need to do is define the on/off value and value type, hotkey if they want it toggable and the offset.
    Click build and the dll will be built and injected.
    Iv done something like that already but for a trainer maker. This wont need a gui so it wont take as much code to do.

  11. The Following 2 Users Say Thank You to Pingo For This Useful Post:

    sujit (08-18-2012),Viktor (08-18-2012)

  12. #10
    sujit's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    BARODA/GUJRAT/INDIA/ASIA
    Posts
    354
    Reputation
    25
    Thanks
    31
    My Mood
    Amazed
    Quote Originally Posted by Pingo View Post
    Ah i wasnt worried about that. Its useless how it is.
    I will release as soon as i can. Im not the fastest vb coder.
    I have 3 ideas for this, an injector, a loader and a hack creator.
    The hack creator will take the longest to make but it'l be worth it when done.
    All someone would need to do is define the on/off value and value type, hotkey if they want it toggable and the offset.
    Click build and the dll will be built and injected.
    Iv done something like that already but for a trainer maker. This wont need a gui so it wont take as much code to do.
    i am witing for ha.ck becous it's 400% exp bonos so when you post it canc you message me plsss...... without hack game is like i am noob off all server :P
    hey guys .... what's up....

    need any help ask me i try to help you sure

    BUT NEVER FORGOT TO PRESS -=THX=- OVER HERE -------------------------------------------------
    |
    |
    V

  13. #11
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    Quote Originally Posted by sujit View Post
    i am witing for ha.ck becous it's 400% exp bonos so when you post it canc you message me plsss...... without hack game is like i am noob off all server :P
    yea will do.
    I think iv finished the main parts now. I'v also converted it to VB and it works fine.
    I just need to add it to my current injector.
    I should have something for you guys tomorrow. It'l be an inejctor that injects C++, C# and VB dll's
    I'll just leave it up to you guys to make the hacks, i will provide an example hack in vb/c# though.

  14. #12
    XxCodersxX's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    100
    My Mood
    Amazed
    nice man you going to relese
    My Youtube Account : https://www.youtube.com/OnlineGamingCrew
    My Old Account Was : BryanVB
    My Respect List:


    Thank Me If You Have Swagg!

  15. #13
    Maybe this world is another planet's Hell.
    MPGH Member
    Arii's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In my cardbox
    Posts
    2,116
    Reputation
    120
    Thanks
    117
    My Mood
    Breezy
    Quote Originally Posted by Exil View Post
    Why did you post the codes -.-'', You know there are leechers waiting for stuff to leech and nice, i hope you release it soon
    Its easy to get the addys...
    MPGH's Official Facebook, Twitter, and Youtube page!






     
    Swiftdude
    Hero
    Jigsaw
    Alen
    JigsawJr

     
    Scata




  16. #14
    dakr54's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    396
    Reputation
    16
    Thanks
    669
    Quote Originally Posted by Pingo View Post
    Any of you guys tried in vb or C#?
    I started working on an injector yesterday to inject my C# dll and run it without using a bootstrap dll.

    I was testing it out just now with a new address
    Wallhack addy
    Code:
    Crossfire.exe+2D29FC or 0x6D29FC with the base added
    And it worked.
    Toggable wallhack
    Code:
                if (Keystate(Keys.F6, 0))//WallHack
                {
                    byte[] byts = B[0] ? new byte[] { 00, 00, 00, 00, 00 } : new byte[] { 01, 01, 01, 01, 01 };
                    WriteBytes(MainBase + 0x2D29FC, byts);
                    B[0] = !B[0];
                }
    Write bytes function
    Code:
            static void WriteBytes(int Address, byte[] byts)
            {
                uint _Old, tmp;
                VirtualProtectEx(ProHandle, new IntPtr(Address), byts.Length, 0x40, out _Old);
                Marshal.Copy(byts, 0, new IntPtr(Address), byts.Length);
                VirtualProtectEx(ProHandle, new IntPtr(Address), byts.Length, _Old, out tmp);
            }
    Screen
    [IMG]https://i203.photobucke*****m/albums/aa29/Baxter_esa/NetWall.png[/IMG]

    This should make things easier for people. I just need to finish it and also convert it to vb.
    I think more people in the CF section code in VB than any other language.
    Two bonuses, the dllmain can be written an inf amount of ways.
    The dll itself can be built from a loader and excrypted making them basically private hacks.
    I try working with net once? But I didn't really know how to use it properly. gj!

  17. #15
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    @dakr54
    Do you code still?
    Alot here use VB, but i think C# is easier.

Similar Threads

  1. Replies: 2
    Last Post: 11-14-2009, 09:40 AM
  2. Is it possible to make a dvd burner in .NET?
    By trevor206 in forum Programming Tutorial Requests
    Replies: 1
    Last Post: 10-06-2009, 07:21 PM
  3. All Noobs Read> Making Lvl Hacks.
    By quin123 in forum General
    Replies: 19
    Last Post: 06-15-2006, 08:43 AM
  4. how can i make game hack?!!!!
    By UnknownID in forum General Game Hacking
    Replies: 2
    Last Post: 02-07-2006, 07:21 PM
  5. Plz I Want Maple Global Hacks And Where Do I Get Game Engine 2 Make The Hacks Work???
    By mattinthehat in forum MapleStory Hacks, Cheats & Trainers
    Replies: 3
    Last Post: 01-15-2006, 06:12 PM