- I Cast Fist ( @ICastFist@programming.dev ) 35•3 days ago
So, simply receiving “aim bot” as a whisper (private) message was enough to get permabanned. FUCKING JEE-NIUS ANTICHEAT, GREAT JOB, GUYS!!!
- renegadespork ( @renegadespork@lemmy.blahaj.zone ) 107•4 days ago
That kernel level anti-cheat is really working out well, eh?
- ILikeBoobies ( @ILikeBoobies@lemmy.ca ) 31•4 days ago
Kernel level isn’t about stopping cheaters, it’s about gaining system access
- Revan343 ( @Revan343@lemmy.ca ) 8•3 days ago
Naw, it’s about pretending to stop cheaters. It’s security theatre, same as the TSA
- Sas [she/her] ( @Sas@beehaw.org ) 6•3 days ago
And about putting a buzzword on your game that makes people think they’re safe from cheaters
- GetOffMyLan ( @GetOffMyLan@programming.dev ) 3•3 days ago
Source?
- KeenFlame ( @KeenFlame@feddit.nu ) 9•3 days ago
Their source comes from it giving system access and that is what they want.
- GetOffMyLan ( @GetOffMyLan@programming.dev ) 2•3 days ago
Why would they want that? Are there any cases of it being abused?
- KeenFlame ( @KeenFlame@feddit.nu ) 2•1 day ago
Yeah why would any mega conglomerate corporate entity want the most valuable and easy to harvest resource on earth
- GetOffMyLan ( @GetOffMyLan@programming.dev ) 1•1 day ago
Computer usage statistics? Score!
- KeenFlame ( @KeenFlame@feddit.nu ) 1•12 hours ago
Of course, no unfathomably demonic corporate entity would ever choose to track users and target them like that, to for instance sell products with zero repressions due to a lobbying hate group bribing lawyers to make it legal
- Something Burger 🍔 ( @SomethingBurger@jlai.lu ) 4•3 days ago
It has system access yet doesn’t prevent cheating.
- lud ( @lud@lemm.ee ) 2•3 days ago
Nothing is perfect bruh.
- CalcProgrammer1 ( @CalcProgrammer1@lemmy.ml ) 80•4 days ago
Honestly, not even mad. Sucks for the victims, but we need hackers poking holes in kernel anticheats. Show the game companies that kernel anticheat is a waste of effort and maybe this horrific plague of gaming will die off.
- GetOffMyLan ( @GetOffMyLan@programming.dev ) 3•3 days ago
The issue is that without it cheating is so much easier in many games. So then people just get pissed at all the hackers.
No, not really. That’s the point. Kernel level anticheat has no real advantages and is easily bypassed. It’s the laziest possible solution that only detects and blocks the laziest possible implementations of cheats.
Good game design eliminates the possibility of cheating. Cheats are only ever possible if you take enough stupid and lazy shortcuts that it’s easy to take advantage.
- lorty ( @lorty@lemmy.ml ) 3•3 days ago
So what are these easy anti-cheat solutions that can detect aim-hacking?
That’s super easy. Aim hacks hit the same point. Record the event with the exact point aimed at to cause the guy (assuming hit scan system instead of projectile), and compare the last x number of hits. If the last x hits are all the same location(s), suspend or flag for human review depending on resources.
Alternatively, track last x seconds before the fire button was pressed, compare to last several shots.
Scripts do not behave like humans, they aim predictably. After x number of shots, you can always programmatically detect them.
- untimed ( @untimed@lemm.ee ) 8•3 days ago
First of all, I‘m not a fan of kernel level anti cheats either. I think your point shows the never ending cat and mouse game that game developers have to deal with. Implement what you described, catch a few cheaters. Now cheats developers add pseudo random deviations within the hitbox to their aim hack. From what I understood, the kernel level anti cheats aimed to abstract and attack at the single point that all cheats have in common. I am not up to date but I believe that single point is code, that is being injected into the game process, or another program messing with the allocated memory of the game process. At least that would make sense to me as to why such an intrusive implementation of anti cheat is necessary.
Anyway, in my opinion the gains do not justify it.
To your first point pseudorandom variations don’t actually change the method of detection or it’s effectiveness. Heuristic pattern matching as described will work until the movement and shots are no longer accurate enough or fast enough to matter.
To your second point, all anticheats do that. Kernel level anticheat looks at the running memory of all other programs. That’s the difference. It can detect and scan anything that is open on your machine. Got a Firefox tab open with your bank details? Kernel level anti cheat knows it. Running obs and streaming? Hope obs has active encryption for your stream key in memory, because the anti cheat can grab it otherwise.
If it just looked at the memory of the affected game literally no one would have a problem with it, that’s all anticheats.
Kernel level anticheat means you trust the entirety of your computer and everything running on it to at least the game publisher, if not an additional anticheat company.
- Sas [she/her] ( @Sas@beehaw.org ) 5•3 days ago
Interestingly enough valve has tried your method of catching cheaters your way by pattern matching with a neutral network in csgo. Sadly they never got to the confidence level where they made it automatically ban people because they didn’t want to catch really good players in the crossfire. Instead they send them to overwatch, a system where sufficiently good players could judge the case and determine if the person is cheating.
But also there’s many different types of cheats and that will only gets you so far. Information plays a big role in cs so wall hacks can go undetected if the player masks then which they do since they know they’re probably watched. There’s also subtle aim bot for that reason that doesn’t snap your aim to your enemy precisely but corrects your manual aim by just correcting it a tiny bit.
As the other user described, it is an arms race and so far the cheaters keep finding ways to trick the algorithm after each ban wave. I still admire valve for not going kernel level with their anti cheat and trying the complicated and interesting route instead. However i think that is because valve tried kernel level when it was still resisted by gamers so they got big backlash at the time and went back to regular anti cheat.
I think what worked best for me was trust factor, which rates the trustworthiness of your steam account and since i have a legit account I’ve not played against cheaters since they implemented it and until i stopped playing. It sucks for new players with new steam accounts tho as they get matched with a lot of cheaters.
- GetOffMyLan ( @GetOffMyLan@programming.dev ) 3•3 days ago
Bots just get around that by adding random amounts. We learnt this with RuneScape lol
Also in a fast paced FPS they aren’t going to hit the same spot from the same position repeatedly.
I covered that, there is no real RNG. It will always be able to be programmatically detected over enough shots.
To your second part, yes, they will. They aim at the same point. Even if there’s variance in the points there won’t be enough variance in moving to the points that they’ll be able hide the unnatural movement.
- GetOffMyLan ( @GetOffMyLan@programming.dev ) 4•2 days ago
Again this happened in RuneScape with the auto clickers. Every time they get better at detecting them the hackers get better at hiding them. You just start throwing on a few miss fires and they’re back to square one. It really isn’t as simple as you describe or they would do it.
- Gamma ( @GammaGames@beehaw.org ) 70•4 days ago
Vizor explained that Ricochet uses a list of hardcoded strings of text to detect cheaters and that they then exploited this to ban innocent players by simply sending one of these strings via an in-game whisper. To test the exploit the day they found it, they sent an in-game message containing one of these strings to themselves and promptly got banned.
Vizor elaborates, “I realized that Ricochet anti-cheat was likely scanning players’ devices for strings to determine who was a cheater or not. This is fairly normal to do but scanning this much memory space with just an ASCII string and banning off of that is extremely prone to false positives.”
This is insane, they had an automatic script to connect to games and ban random people on loop so they could do it while away
- renegadespork ( @renegadespork@lemmy.blahaj.zone ) 26•4 days ago
a list of hardcoded strings
Violating a core programming tenet right off the bat. I wonder how much money Activision payed for this software…
- ramjambamalam ( @ramjambamalam@lemmy.ca ) 12•3 days ago
We and the hacker have no idea if this list is config driven or truly “hard coded” i.e. a const in the source code. It’s hardly an indicator of violating a core programming tenet.
- 🇰 🌀 🇱 🇦 🇳 🇦 🇰 ℹ️ ( @Kolanaki@yiffit.net ) 10•3 days ago
Is stopping cheaters in most video games even possible?
- jerkface ( @jerkface@lemmy.ca ) 12•3 days ago
When I was at my peak effectiveness in Urban Terror, I could hold my own against them…
- 🇰 🌀 🇱 🇦 🇳 🇦 🇰 ℹ️ ( @Kolanaki@yiffit.net ) 15•3 days ago
Heh. GTA V used to be fun even when a cheater would show up and because you could just use a rocket launcher on them to keep them ragdolled forever so they couldn’t use their cheat menu (or any menu). They’d have to alt-F4 to quit since being ragdolled closes any open menus.
- TheDorkfromYork ( @TheDorkfromYork@lemm.ee ) 4•3 days ago
Yes, but not through standard methods. Even AI aimbot can be filtered, but the amount of RND required is likely to much for a single studio to bear alone. I believe we are more likely to see neural network trained bots largly replacing real players using an off the shielf model. Just a guess, not an expert.
- blindbunny ( @blindbunny@lemmy.ml ) 16•4 days ago
This is kinda punk 🤔