https://www.sobfox.com
Recently I got a chance to look at this server’s anti-cheat.
It was protected with VMProtect.
Basically, all they do is send a packet during the server login process —
276 empty bits.
This is the website: https://anticheat.fsc-clan.eu/
And this is the game server address: 89.38.135.169:7777
I attached here code that mimics/fakes the use of their anti-cheat.
Enjoy!
Recently I got a chance to look at this server’s anti-cheat.
It was protected with VMProtect.
Basically, all they do is send a packet during the server login process —
276 empty bits.
This is the website: https://anticheat.fsc-clan.eu/
And this is the game server address: 89.38.135.169:7777
I attached here code that mimics/fakes the use of their anti-cheat.
Enjoy!
C++:
if (*uniqueID == RPC_ClientJoin) {
BYTE v9[276] = { 0 };
BitStream bsSend;
bsSend.Reset();
for (BYTE b : v9) {
bsSend.Write(b);
}
Send_RPC(181, bsSend, HIGH_PRIORITY, RELIABLE_SEQUENCED);
}
