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

    C# & VB.net Code Injection Source only

    If you're familiar with cheat engines AA scripts, this class might help you. Otherwise it wont do you much good. Its very simple to use but the functionality is very limited.

    Heres an example also shown in the project.
    Say you have one of the instructions that access trigger speed.
    Code:
    00768DEB - 83 7E 3C 00                - cmp dword ptr [esi+3C],00
    00768DEF - 74 6A                      - je 00768E5B
    And if you want to inject some custom code. Well a jump like that requires 5 bytes. As you can see
    cmp dword ptr [esi+3C],00 is only 4 bytes, so a codecave is needed to write
    mov [esi+3c],00000000.
    mov [esi+3c],00000000 when read from the memory viewer is c7 46 3c 00 00 00 00
    In the vb source you would write
    Code:
    Mem.Inject_Jmp(&H768DEB, "c7463c00000000", "837e3c00746A")
    &H768DEB being the address you jump from.
    "c7463c00000000" being the new bytes you want to write and
    "837e3c00746A" being the default bytes.
    1 click of the button writes the hack, another click puts it back to default and cleans up the cave.
    If you dont know anything about code injection and mess up the default bytes, your game will crash.

    Report any bugs to me, iv made alot fo changes but iv not had time to test everything.
    VirusTotal
    Jotti
    Last edited by Pingo; 07-30-2011 at 10:51 AM.

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

    ah1mafia2rd (05-08-2015),csitheme (08-29-2014),dnh757 (11-16-2012),DyNamoTR (03-02-2013),Edlmann (07-31-2011),fandy1 (05-04-2014),fwsefwsgrgwhergr (12-14-2015),illumin8ed1 (01-29-2014),j546 (02-11-2013),JSJ (07-04-2014),kanift (04-26-2014),livehacking300 (07-17-2013),lolbie (07-31-2011),persoas98 (01-30-2015),Releow (04-05-2014),The Conjurer (05-03-2013),transongngocquan (04-25-2012),trops998 (07-28-2012),waveblur (03-21-2013),yoraeangga (02-07-2015),zolferno (05-06-2012)

  3. #2
    Heartview's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    KY Cygni
    Posts
    9,202
    Reputation
    717
    Thanks
    2,890
    File is clean so Approved.
    Texture Mods


    Obedear, the sky is low

  4. #3
    lolbie's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Netherlands
    Posts
    5,207
    Reputation
    288
    Thanks
    2,136
    My Mood
    Angelic
    nice man now this is online there will be so many better trainers

    good job
    I love it when people keep their agreements /sarcasm ftw

  5. #4
    Edlmann's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Main.pas
    Posts
    1,386
    Reputation
    15
    Thanks
    407
    My Mood
    Sneaky
    Awesome job as always, and also thanks for putting the fast trigger feature online
    My Releases:
    GUI For External BoxESP v. 1.0
    Another Single-Player-Zombie-Trainer v 3.0
    <Delphi Source> Simple Pattern Scanner

    If you have questions concerning coding/hacking in delphi, just pm me

  6. The Following User Says Thank You to Edlmann For This Useful Post:

    j546 (02-11-2013)

Similar Threads

  1. [HELP]Good injecter source code!
    By DeathHunter in forum Programming Tutorial Requests
    Replies: 7
    Last Post: 02-22-2010, 01:32 PM
  2. [HELP]Good injecter source code!
    By DeathHunter in forum Visual Basic Programming
    Replies: 7
    Last Post: 02-22-2010, 01:32 PM
  3. Real VB injecter Source code
    By Ugleh in forum Visual Basic Programming
    Replies: 34
    Last Post: 01-02-2010, 09:38 PM
  4. [Source Code] C++ Code Injection
    By Matrix_NEO006 in forum C++/C Programming
    Replies: 2
    Last Post: 10-22-2009, 10:31 PM
  5. VB injecter Source code
    By Jimmy in forum Visual Basic Programming
    Replies: 20
    Last Post: 09-26-2009, 04:22 PM