drop links to some tutorials for injection clients.
Hacked client tutorials always teach horrible coding practices.
If you haven't learnt java yet, the oracle tutorial(https://docs.oracle.com/javase/tutorial/) is the best but no one has actually read that. Derek banas' tutorial is good or if you'd prefer something to read, look at head first java. Once you've learned java well, start learning about java agents and asm. There's not really a good tutorial about this, you're pretty much on your own but if you know java, it won't be difficult to pick up.
Injection clients are made using java agents and usually ASM, java agents are pretty simple, ASM is a library to manipulate bytecode(used for the actual injection part of the client). Ghost clients don't use javaagents in the usual way, they attach them using JVMTI, you need to know c++(or any other native language) to do that.I do
I know Java pretty well, its injection clients I don't really know much on how to code.
any links?Injection clients are made using java agents and usually ASM, java agents are pretty simple, ASM is a library to manipulate bytecode(used for the actual injection part of the client). Ghost clients don't use javaagents in the usual way, they attach them using JVMTI, you need to know c++(or any other native language) to do that.
i agree with this ^^ (hi suggesting)I recommend learning a decent amount of C++, then you probably want to learn memory hacking and DLL injection. If you learn these then you'll have really all the knowledge you need to create an external or DLL based cheat.
Hi, thanks for tagging me. I'll be glad to explain how injection clients are made. First of all, I'd like to preface this by saying that there are 2 main programming languages that can be used when creating an injection client. Let's start with C++:i agree with this ^^ (hi suggesting)
I recommend you familiarize yourself with C++ first as it does get complicated if you aren't experienced in it (like myself). Then you have to learn a little bit about process memory. Then you can make your injector. There's plenty of DLL injector tutorials all over the web. As for the DLL, I recommend to use JNI to basically program in Java in C++.
note: I haven't made a working DLL injector myself but I do know the basics of injection clients
my friend furytheskid can elaborate and explain better than I can and can definitely offer better tips/advice (he's the one that taught me this and is probably cringing at my explanation)
