Ripper99-x / CS2-Internal

95 stars 19 forks source link

Not an issue, just a question #10

Closed daniel218-cyber closed 2 months ago

daniel218-cyber commented 6 months 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 6 months 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 6 months 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 6 months 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 6 months ago

would you have any suggestions for me?