Help needed with dll
Hi..I'm really new to C++ coding and Im rly into learning it. I've been reading tutorial and i've learned a lil bit about dynamic link libraries. I want to make a dll that feeds fake information to a process. Theres this process for a game and it looks to this .ini file and in the .ini file theres a line : Crc:2
Now, when ever i open the game it closes cause it says "hacking attempt detected". It used to be : Crc:0 (meaning it was off)
I tried changing the Crc:2 to Crc:0, but it wasnt that simple. The anti-hack process also has a checking system. It has another remote .ini file that it uses to compare to the .ini file in the game folder. If there's a difference, it changes it back to what it's supposed to be.
After 1 week of searching, i finally found out that i can bypass this by feeding fake info the the process.
I learned that you can make a dll with fake info and inject it into the process,making it think that the .ini file is correct.
So basically i want to try and make a DLL that feeds this process the information that tells it that the .ini file is "Crc:2", when it really is Crc:0. If it feeds it the info that it's Crc:2, it wont check to see if it isnt, so thats how i found out that this will work.
I have NO idea how to do this and make a dll that does this. One of the people i asked in the past told me that it's pretty simple to make if you know what you're doing. So...basically, i want to know if anybody can do this and if they're willing to help me make it or make it for me.
If it's NOT simple and its pretty hard, just tell me. Also, if you know any tutorials that can help me learn how to make this DLL, I'd greatly appreciate it if you could post them.
Again, i would really appreciate if someone could make this for me.
Thanks in advance =)
Yours,
Dev-C++
|