Guest quantumfusion Posted November 13, 2007 Share Posted November 13, 2007 (edited) How do i inject my own code into a program without anti-virus detecting it as a virus.I run a private server , but i need someone to teach me how to integrate my anti-hacking software into the game client. I would pay people to do that for me. Add me on msn if your interested in this job. Admin@lanjiao.org Edited November 13, 2007 by quantumfusion Link to comment Share on other sites More sharing options...
Departure Posted November 13, 2007 Share Posted November 13, 2007 look up code cave topics there are few on here.... Link to comment Share on other sites More sharing options...
Pimp.exe Posted November 14, 2007 Share Posted November 14, 2007 (edited) What you are looking to do is called inline patching. As said above a code cave (Empty place in the program) is needed. Basically you intercept a jump. Here is an example: Normal program: jmp 123456 Patched: jmp 654321 < Replace the original jump with this 654321: Our injected code here and then... jmp 123456 < We tell the program to jump to where it was going before we patched. This isnt as easy as it sounds, but can be done to most apps. There are several tuts on how to do this. A bit of trial-and-error should get you through. NOTE: Rember that the registers (EAX,EBX,etc..) may be changed by your injected code so you will have to push them onto the stack at the beginning and pop them off at the end of your injected code. Edited November 14, 2007 by Pimp.exe Link to comment Share on other sites More sharing options...
Guest quantumfusion Posted November 15, 2007 Share Posted November 15, 2007 (edited) hmm but is it really feasible to code a hacking check program with ASM . Sounds like a year of job to do lol.Any way to inject a vb program or c++ ? Edited November 15, 2007 by quantumfusion Link to comment Share on other sites More sharing options...
Pimp.exe Posted November 15, 2007 Share Posted November 15, 2007 Inject an entire program? Umm not that I'm aware. A dll call maybe. Above that you would just have to bind the .exe's. Link to comment Share on other sites More sharing options...
Guest quantumfusion Posted November 23, 2007 Share Posted November 23, 2007 how do i do that ? any tutorial to help a newbie ? Link to comment Share on other sites More sharing options...
Teddy Rogers Posted November 25, 2007 Share Posted November 25, 2007 how do i do that ? any tutorial to help a newbie ?Do you know how to code a basic .DLL? If not it would probably be best to pick up on some basic coding skills...Ted. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now