Tutorials & Guides

Do you want to know how to ? Check the useful topics here.
Hello UGBASE, Iam releasing my analysis knowledges about FenixZone Anticheat and solution to prevent being detected. Basically everything is here https://github.com/WaterinoS/FenixZoneACBypass I would start how they managed to load the anticheat into process memory: Its Basic RCE (Remote Code Execution) via RPC_ShowDialog Its ilegall to use RCE How you can detect incoming malicious rpc like this one? Make IncomingRPC Hook Check for RPC_ShowDialog Check packet size .. MaxSize of every normal dialog is 33000, but they oversized it (injected assembly via that so its around 382032 b (unpacked its ~ 220kb)) All you need to do is to get bitstream data and check every byte until you found byte[0] = 'M' && byte[1] = 'Z' (dont need to...
I want to code a mod(hack) fot GTA:SA-MP, but the cleo library is too hard, it seems like assembly. Is there a way I can code my own code in C++, or other static strongly typed language?
Top