Ripper99-x / CS2-Internal

58 stars 10 forks source link

Not an issue, just a question #10

Open daniel218-cyber opened 1 month ago

daniel218-cyber commented 1 month ago

I saw that you implemented xorstr, if i change and optimize things in the source + having xorstr, then it should be pretty much ud right?

Ripper99-x commented 1 month ago

There's pretty much nothing you can "optimize" to make it safer, other than replacing the Present Detour with something safer.

Cheat is read only, at the moment, with the exception of the Detour.

You also have to think about the injector you use, if you use any user mode injector, you're exposed to NtQueryVirtualMemory and they can find your memory.

daniel218-cyber commented 1 month ago

I thought about using manual map injector, or just injecting it the old way where you put the dll in system32

Ripper99-x commented 1 month ago

Still, they can detect your memory from user-mode.

So unless you make it look like a legit DLL, it'll be kinda suspicious to VAC.

daniel218-cyber commented 1 month ago

would you have any suggestions for me?