1. Clone all packets on my main router from my gaming rig to my dev machine.
192.168.2.10 = my DEV machine
192.168.2.30 = my gaming rig
Code:
iptables -I PREROUTING -s 192.168.2.30 -p UDP -t mangle -j ROUTE --gw 192.168.2.10 --tee
iptables -I POSTROUTING -d 192.168.2.30 -p UDP -t mangle -j ROUTE --gw 192.168.2.10 --tee
I launch Steam both on the gaming rig and the dev machine using the same account. Once logged into both machines on the same account you can choose 'stream from gaming rig' inside Steam (instead of the Play button).
This way you can now play on your dev machine, the game itself runs on the gaming rig (including BE/VAC). So whatever you are now doing on your dev machine cannot be picked up by BE/VAC. So i can use SendInput/MouseEvent, use overlays etc. Plus, your sniffer/radar doesn't run on the same machine.
I think this is the most secure way to cheat in the game. My main issues are that i cannot read the camera fov, so i have to adjust that manually all the time. But ESP works and is actually very precise.
Is this an actual thing? I don't understand what he is doing with the iptables pre routing part. Anyone tried this?