So yeah, I want to discuss or point out why I think Valve needs to fix Anti-Cheat issues. They have VAC but apparently its doing jackshit, be it Counter Strike 2 (any previous iterations) or something like Hunt: Showdown the prevalence of cheating players is non deniable. For me personally it has come to a point that I am not enjoying playing those games anymore, although they are great games by itself. But the amount of occurrences being killed or playing against cheaters is at a height, where I don’t see the point anymore.

  • Why I think Valve is the only company able to something against cheaters?

Because they have the tools with VAC already aiming to prevent cheaters. Valve has got the resources to actually invest into something more profound which could be used for any game where anti-cheat protection needs to be implemented. And lastly Valve is the company which is interested in furthering the ability to gaming on Linux, the anti-cheat solution needs to work on both operating systems. Only Valve has the motivation and means to achieve that with their knowledge and resources. What do you guys think about the topic? Is the fight against cheaters hopeless? Do you think some other entity should provide anti-cheat protection, why? I skimmed over “anti cheat in linux kernel” posts in the net, but I have very little knowledge about the topic, what is your stance on it?

Edited: Mixed EAC with VAC. EAC seems to be part of Epic Company. Both of these tools seem unable to prevent cheating like mentioned above.

  • SavvyWolf
    link
    fedilink
    English
    1015 months ago

    Screw client side anti-cheat, fix your goddamn server code.

    I’m reminded of a case in Apex Legends where cheaters started dual wielding pistols, despite dual wielding not actually being a game mechanic. That should be something you can easily detect on your server and block.

    Client side anticheat is just smoke and mirrors and lets developers think they can get away with not doing their job of writing secure code.

    I’m honestly surprised that with all this concern about privacy against Google, Microsoft, Epic, and so on, gamers are willing to just let these games have unrestricted and unchecked access to all your internet, microphone and camera data.

    Likewise, despite how much gamers call games “broken glitchy messes”, they are perfectly willing to give them enough hardware access to literally destroy your computer.

    • @brsrklf@jlai.lu
      link
      fedilink
      37
      edit-2
      5 months ago

      Yeah, I agree with that. Installing freaking rootkits on people’s personal device, with the express purpose of identifying them and knowing what their machine contains, is not OK. A multiplayer client should be as lightweight as possible and shouldn’t be able to fuck with a game.

      Even if they agree not using your data for anything else, the next security breach on their servers will make that promise useless.

      And I am not sure why one would trust big publishers to have any kind of ethics anyway. Do you remember Activision’s patent to manipulate matchmaking? That would specifically match players to reward those who buy microtransactions and create pressure on those who don’t?

      Yeah, totally trusting those manipulative snakes with my private data with a big “do not watch” sticker on it.

      • @tal@lemmy.today
        link
        fedilink
        125 months ago

        Installing freaking rootkits on people’s personal devices

        If Valve is gonna do anything, I’d rather have them sandbox games from screwing with the environment, not the opposite. I’d like to be able to install random mods from Steam Workshop without worrying about whether some random modder might have malware attached to their mod that can compromise the whole system. I don’t care if a malicious mod dicks up the save games for a particular game, but I’d rather know that it cannot go beyond that.

        That doesn’t solve the cheating problem, of course, but it’s a case where anti-cheating efforts and security concerns are kind of at odds.

    • lemmyvore
      link
      fedilink
      English
      25
      edit-2
      5 months ago

      Hear, hear.

      Quick disclaimer, I’ve been involved with FOSS shooters for something like 20 years now. I mention that to establish where I come from: in a FOSS game anybody can modify the game client all they want, so all the bullshit is out of the way from the start. You can’t hide behind make-believe notions such as “they can’t modify the client” – which is one of the major lies and fallacies of commercial close-source games. If there’s something you don’t want the client to know or do, you make it so on the server.

      There is a lot of things that the server can do that can severely limit cheater shenanigans. If you don’t want them to see through walls then don’t tell them what’s behind walls. If you don’t want them to know what’s behind them then don’t tell them what’s outside their cone of view. If you don’t want them to teleport look where they were a moment ago and where they claim to be now and figure out if it should be possible. You get the idea.

      Aimbots can be detected because at the core it’s a simple issue of the client’s aim snapping from one place to the target too fast. What’s “too fast” and the pattern of the movement can be up for debate but it can definitely be detected and analysed and reviewed in many ways – regular code, AI, and human replay.

      If this kind of analysis is too much for your server to perform in real time (it was too much, 20 years ago) then you can store it and analyse it offline or replay it for human reviewers. You can fast-parse game data for telltale signs, analyse specific episodes in detail, and decide to ban players. Yes it happens after the game was ruined but at least it happens.

      There are a couple of types of cheating that you can’t detect server side:

      • Modifications to the client HUD that help the player grok information faster and better. This is a large category that can include things like colorblindness overlays, font changes, UI changes, movement tracking on display etc. As far as I’m concerned that falls under HUD modding and should be welcome in any healthy game. Again, if you don’t want clients to have a piece of information don’t give it to them, and design your game in a way that such mods are mostly irrelevant.
      • Automating input. Again a large category that includes macros that speed up complex chains of operations. Can be slowed down by imposing server-side delays but you can hurt legit fast players this way too. Same as above, if this is what makes or breaks your shooter then perhaps you should rethink it.

      Some of the most fun games I’ve seen did not care about HUD mods and macros and on the contrary embraced them. You want to write a macro that will auto-purchase the best gear based on your available coin after respawn? Knock yourself out, because what constitutes “best” gear changes depending of the circumstances, and a veteran with a pistol can smoke your ass anyway if you don’t know how to properly use that fancy plasma gun.

      I’ve mentioned human review above which brings up an interesting feature that I don’t see implemented in enough games: saving and replaying game metadata. It’s stupidly simple to store everything that happened during a match on the server side and it doesn’t take much space. You can offer that recording to seasoned players to replay on their PC which allows them to see the match from any player’s point of view. An experienced veteran can notice all kinds of shenanigans this way – and it’s also an excellent e-sport and machinima feature that enables commentary, editing, tutorials and so on.

      Edit: Oh, forgot one thing. You may be wondering, then why don’t the big game companies do all this? Simple, cost. Why should they pay for server juice and staff to review games properly when they can slap a rootkit on your computer and use your resources?

      • @tal@lemmy.today
        link
        fedilink
        4
        edit-2
        5 months ago

        in a FOSS game anybody can modify the game client all they want, so all the bullshit is out of the way from the start. You can’t hide behind make-believe notions such as “they can’t modify the client” – which is one of the major lies and fallacies of commercial close-source games.

        Sometimes, just for practical performance reasons, with realtime games, the client is gonna need access to data that would permit one to cheat. You can’t do some game genres very well while keeping things on the server.

        Consoles solve this by not letting you modify your computer. I think that if someone is set on playing a competitive game, that’s probably the best route, as unenthusiastic as I am about closed systems. The console is just better-aimed at providing a level playing field. Same hardware, same performance, same input devices, can’t modify the environment.

        'Course, with single player games, all that goes out the window. If I want to modify the game however I want, I should be able to do so, as it doesn’t hurt anyone else. I should be able to have macros or run an FPS in wireframe mode or whatever.

        For PC competitive multiplayer, in theory, you could have some kind of trusted component for PCs (a “gaming card” or something) that has some memory and compute capability and stores the stuff that the host can’t see. The host could put information that the untrusted code running on the host can’t see on the card. It also lets anti-cheat code run on the card in a trusted environment with high-bandwidth and low-latency access to the host, so you can get, for example, mouse motion data at the host sampling rate for analysis. That’d be a partial solution.

        • @justJanne@startrek.website
          link
          fedilink
          35 months ago

          Sure, it’d be a solution for five minutes until someone delids the secure enclave on the gaming card, extracts the keys, and builds their own open source hw alternative.

          High-performance FPGAs are actually relatively cheap if you take apart broken elgato/bmd capture cards, just a pain in the butt to reball and solder them. But possibly the cheapest way to be able to emulate any chip you could want.

          • @tal@lemmy.today
            link
            fedilink
            3
            edit-2
            5 months ago

            someone delids the secure enclave on the gaming card, extracts the keys

            Not a problem. You can potentially go for an attack on hardware, maybe recover a key, but you have a unique key tied to it. Now the attacker has a key for a single trusted computer. He can’t distribute it with an open-source FPGA design and have other users use that key, or it’ll be obvious to the server that many users have the key. They blacklist the key.

            It’s because hardware is a pain to attack that consoles don’t have the cheating issues that PCs do.

      • conciselyverbose
        link
        fedilink
        265 months ago

        Server side anti cheat can’t distinguish good players from aimbots.

        Neither can a rootkit, which should be unconditionally illegal and send CEOs to jail for putting in their product. There are no exceptions and no scenarios where it can possibly be acceptable for a video game to access any operating system anywhere near that level. Every individual case should constitute felony hacking, with no possibility of “user consent” being a defense even if they do actually clearly and explicitly ask for “permission”.

        • @tal@lemmy.today
          link
          fedilink
          25 months ago

          Ehhhh.

          If you want that, I kind of feel like the obligation should be placed on the OS (or maybe Steam or similar distribution platforms) to do sandboxing. Generally-speaking, in the computer security world, you’re better off just not letting software do something objectionable than trying to track down everyone who does it and have the judicial side handle things.

          Mobile OSes and game console OSes already sandbox games that way.

          PCs could have the ability to do that, but they don’t do that today.

          I do think that they’re heading in that direction, though, at least relative to where they were, say, 30 years ago; at that point in time, permission tended to be really at a user level, and if you ran software on your computer, it pretty much had access to anything that the user did. Web browser are generally available and act as a sandbox for some lightweight sandbox. On Linux, Wayland’s a move towards handling isolation of apps at the desktop level – for a long time, desktop APIs really didn’t permit for isolation of one graphical program from another. Also on Linux, Flatpak and the like are aimed at distributing isolated graphical applications.

          • conciselyverbose
            link
            fedilink
            55 months ago

            If you don’t physically control the hardware, it is not secure.

            The only valid approach to preventing cheating that matters is to have authoritative servers. Nothing else works, nothing else theoretically can work, and nothing else can possibly be described as anything but malware. There is literally no possible scenario where any entertainment company knowing anything about what else is happening on your computer can be justified.

            • @tal@lemmy.today
              link
              fedilink
              2
              edit-2
              5 months ago

              My above comment isn’t about preventing cheating, but preventing malware, like mods with a malicious payload.

          • @teawrecks@sopuli.xyz
            link
            fedilink
            15 months ago

            I’m not smart enough to see a world where Linux and effective client side anti-cheat can cohabitate. Nothing can ever stop someone running a custom linux kernel that hides any nefarious code from the games they’re targeting. PC gaming can only head that direction to the degree that they take kernel-level control away from the user.

        • @teawrecks@sopuli.xyz
          link
          fedilink
          15 months ago

          When it comes to windows, the devs working on kernel-level anti-cheat systems are working closely with microsoft on the implementation. To the point that, if you were to try to reverse engineer it on your own machine, in all likelihood msft could convince a court that you are hacking their system, not the other way around.

      • SavvyWolf
        link
        fedilink
        English
        115 months ago

        Server side anti cheat can’t distinguish good players from aimbots.

        I’ve been thinking about this, and I wonder how accurate this is. I think overuse of all this modern AI nonsense is a problem, but wonder if this might be a good use case for it.

        A big game will probably have huge amounts of training data for both cheaters and non cheaters. An AI could probably pick up on small things like favouring the exact centre of the head or tracking through walls.

        If a user has a few reports of aimbotting, just have this AI follow them for a bit and make a judgement.

        It’ll get it wrong sometimes, but that’s why you also implement a whole appeals process with actual humans. Besides, client side anticheat systems also have a nasty habit of mistakenly banning people for having specific hardware/software configs.

        However, I would like games to come with servers again so you can play games on your own terms

        Please! Not just for anticheat reasons, but also for mods and keeping the game playable when the publishers decide it isn’t profitable.

          • SavvyWolf
            link
            fedilink
            English
            35 months ago

            I’m a Linux gamer, every few weeks there’s a story in the news about how some random update to anti-cheat ending up banning Linux/Steam Deck users, it’s not a problem unique to AI. AI finding false positives will happen, but that’s where the “human in the loop” appeals process happens.

            Some games do employ new tactics. For example, when the game suspects you’re cheating, it’ll spawn fake opponents only you can see and check if you try to interact with them. This will defeat most wallhacks and maybe even a few aimbots.

            This is the kind of cool things that they should be doing! Try new and interesting things instead of trying to brute force anti-cheat by putting restrictions on what people can do with their computers and forcing a narrative where cheaters only exist because you weren’t strict enough.

        • @tal@lemmy.today
          link
          fedilink
          15 months ago

          However, I would like games to come with servers again so you can play games on your own terms

          Please! Not just for anticheat reasons, but also for mods and keeping the game playable when the publishers decide it isn’t profitable.

          The problem is that having an essential component of the game run on servers that only the publisher has access to is also a pretty effective way to do DRM, so they’ve got a pretty strong incentive not to do that. It’s a lot easier to ensure that someone paid for an account on publisher-run servers than that someone paid for a copy of the server and client binaries that they are in possession of.

      • @Omega_Haxors@lemmy.ml
        link
        fedilink
        3
        edit-2
        5 months ago

        I made an anti-cheat for vanilla minecraft once, it’s REALLY easy to tell if someone is cheating it’s just developers are grotesquely incompetent when it comes to detecting that sort of thing or (more often) just don’t give a shit. They’ll just create a naïve solution then never test it. For example: minecraft’s god awful anti-fly and anti-speedhack which is just “is the player in the air for 5 seconds” or “did the player go too fast” which is notorious for false positives and doesn’t even stop people trying to cheat, just punishes players for its own fuck-ups.

        It really is as simple as creating a model of what the player should be able to do, and then nudging clients towards that expected play. Normal players will not even notice (or will be pleased when it fixs a desync) but cheaters will get ENRAGED and try to cheat harder before eventually giving up. The point of a good anticheat is not to punish players for cheating, but to make it easier and more fun to play within the rules.

        It’s like piracy: We had years of systems built on punishment and all they do is create resentment and people trying to break your system, but you build a system on rehabilitation and you become one of the biggest platforms for PC gaming with people willingly downloading it.

          • @Omega_Haxors@lemmy.ml
            link
            fedilink
            35 months ago

            I don’t really consider Minecraft to be a game that cares much about cheaters. I don’t even get why you would cheat at Minecraft

            And yet people did. I only brought that up as an example because minecraft is like 90% client side, proving that server-sided AC is possible.

      • Footnote2669
        link
        fedilink
        35 months ago

        In case of CS2, it doesn’t even ban people who teleport behind you at the first second of the round. Or killing everyone through the whole map like here (Reddit): link

    • @dinoOP
      link
      English
      35 months ago

      How do you propose to hinder aimbots and the like from working with server-side changes?

      • @Cirk2@programming.dev
        link
        fedilink
        English
        55 months ago

        how do you stop it on client side? I’m not sure if it has been deployed into the wild but these days computer vision is good enough to just work off the images. Capture image signal, fake usb mouse outputting movements calculated from image data. If this isn’t already available it’s only held back by the need for extra hardware.

        • xep
          link
          fedilink
          15 months ago

          Why do you call anti-cheat software rootkits? Rootkits are malicious.

          • SavvyWolf
            link
            fedilink
            English
            95 months ago

            It’s software I don’t want running on my system and the kernel mode stuff has full hardware access.

            • xep
              link
              fedilink
              15 months ago

              Yes. It’s a matter of knowing what you trust on your pc and understanding your threat model. Programs running in user mode can also be malicious.

              • SavvyWolf
                link
                fedilink
                English
                75 months ago

                Inexhaustive of things that kernel mode code can do that unprivileged (without “root”) user mode cannot:

                • Update and install drivers.
                • Run programs (like cryptominers) without them appearing in the task list.
                • Make network requests ignoring all firewalls and monitoring tools, even when seemingly in airplane mode.
                • Monitor your webcam and microphone, possibly without turning on that little light next to it.
                • Escape any sandbox you put it in.
                • Replace the OS with one containing malicious code.
                • Replace the efi firmware with one that replaces any future OS install with the aforementioned malicious OS.
                • Permanently brick your graphics card.
                • Take advantage of buggy hardware to burn your house down.

                And so on. The question you should be asking isn’t “are they going to do this?” but instead “why are they even asking for this permission in the first place?”.

                A game where you run around pretending to be a space marine doesn’t need low level access to your hardware.

          • @t3rmit3@beehaw.org
            link
            fedilink
            35 months ago

            I’d argue that any software that is adversarial towards the user/computer owner, and takes actions specifically to hinder an action by them, on their own machine, is malicious.

            We’d be absolutely apoplectic if the government demanded we install a surveillance tool on our laptops in order to e.g. access the DMV website or file our taxes, but when someone tells us to in order to play a game, it’s okay? Nah.

          • RandoCalrandian
            link
            fedilink
            25 months ago

            So are anti-cheats

            You can call them good for the community, but that doesn’t change what they are or what they’re meant to do

            Or all the things they could be doing with that access and you not knowing about

            Client side anticheat is all malware, and they do it because violating consumer privacy and protections is cheaper than writing good and secure server code.

            FFS, most games farm out the security to a third party that creates the malware, just to push off any liability and at “yeah, we’re totally doing something about cheaters” and that third party has way more motivation to act maliciously than the game maker, doing things like collecting data and selling it.

            • xep
              link
              fedilink
              1
              edit-2
              5 months ago

              When was the last time you saw malicious software with a EULA and an uninstaller?

        • lemmyvore
          link
          fedilink
          English
          15 months ago

          What makes you think that anything client-side will be allowed to work as it should?

          • SavvyWolf
            link
            fedilink
            English
            2
            edit-2
            5 months ago

            I don’t. Anything on the client can be tampered with. It’s the server’s job to make sure anything they receive is both valid and consistent with how a human would act.

        • @dinoOP
          link
          English
          15 months ago

          I mean AI sounds like a legit idea. In the past e.g. battle.net from Blizzard was also just looking for “patterns”. And AI could be much better at that. The question is, how do you get the required information without having any clientside info? To distinguish between a good player and a bot would be very very time consuming to train an AI on that level.

          • SavvyWolf
            link
            fedilink
            English
            15 months ago

            All you really need is where the character is looking, their location and the terrain map, all of which are things the server has authority over or can check easily.

            Distinguishing between a good player and a bot probably won’t be that hard. A simple aimbot would probably fire exactly at a target’s (0, 0) coordinate, while a good player may be a frame or two early or late. Someone with wallhacks will behave differently if they know someone is around a corner. There’s almost certainly going to be small “tricks” like that that an AI can pick up on.

            • @Lmaydev@programming.dev
              link
              fedilink
              45 months ago

              We went through this in RuneScape with auto miners. You just randomise locations and times slightly and it’s almost impossible to tell the difference.

              It’s so easy to get around.

              • @tal@lemmy.today
                link
                fedilink
                1
                edit-2
                5 months ago

                We went through this in RuneScape with auto miners. You just randomise locations and times slightly and it’s almost impossible to tell the difference.

                Depends on whether people working on cheats can see the anti-cheat detection code. It’s hard to ensure that one data set is statistically-identical to another data set.

                I remember at one point, reading about use of Benford’s law, that the IRS looked at leading digits on tax forms. On legit tax data, “1” is a more-common leading digit.

                Recently, Russia had a vote in which there was vote fraud, where some statisticians highlighted it in a really clear way – you had visible lines in the data in voting districts at 5% increments, because voting districts had been required to have a certain level of votes for a given party, and had stuffed ballot boxes to that level.

                If I can see the cheat-detection code, then, yeah, it’s not going to be hard to come up with some mechanism that defeats it. But if I can’t – and especially if that cheat-detection code delays or randomly doesn’t fire – it may be very hard for me to come up with data that passes its tests.

            • @dinoOP
              link
              English
              35 months ago

              Distinguishing between a good player and a bot probably won’t be that hard. A simple aimbot would probably fire exactly at a target’s (0, 0) coordinate,

              bots are way more elaborate than that, even 20 years ago there were randomization patterns.

              • RandoCalrandian
                link
                fedilink
                15 months ago

                Randomization patterns don’t mean much if the ai can detect a meaningful difference between a players normal reaction time and patterns and the reaction when they score points.

                The point of the bot is to improve player performance. That performance change is detectable by an ai with the right metrics to watch.

                If it wasn’t detectable, there wouldn’t be a reason to use the cheat in the first place.

                This strategy won’t catch full botting, where there is no human input, but that’s why they layer the security.

                • @dinoOP
                  link
                  English
                  15 months ago

                  It’s not as easy as you make it to be.

              • SavvyWolf
                link
                fedilink
                English
                15 months ago

                Unless the aimbot is using its own AI learning system, it’ll not behave as a human would. For example, it might fire at a random point in a circle, where a human might have better aim along the horizontal axis or something.

                • @dinoOP
                  link
                  English
                  25 months ago

                  Bots can be updated to, its the same game with hacks and exploits, it just depends on the resources available at each side.

            • xep
              link
              fedilink
              15 months ago

              How would a server-only method detect esp or wallhacks, which are generally speaking client-only exploits?

              • SavvyWolf
                link
                fedilink
                English
                3
                edit-2
                5 months ago

                People with wallhacks will deliberately move their crosshairs over people that they see through walls. Or, if they know the server is watching for that, they’ll make a subconscious effort to never have their crosshairs over someone through walls.

              • RandoCalrandian
                link
                fedilink
                15 months ago

                Wall hacks are enabled by poor server code.
                The server shouldn’t send info the player shouldn’t have in the first place.

                • xep
                  link
                  fedilink
                  15 months ago

                  We can only hope to play a good game with such perfect design one day.

    • BruceTwarzen
      link
      fedilink
      15 months ago

      I just started apex two month ago and i think i haven’t encountered more than one cheater, but i wasn’t really sure. I watched a video on cheaters on apex yesterday and ooof, it’s really bad. In other games i played they would use aimbot and or walls. But not speedhacking, dual wielding, aimbot and quickshielding and what not. And apparently nothing really ever happens to them.

  • @t3rmit3@beehaw.org
    link
    fedilink
    335 months ago

    I have run into maybe 3 people that I legitimately think were cheating, in 6+ years of CS:GO, and now CS2.

    Where the hell are you running into this many cheaters?

    • dreadgoat
      link
      fedilink
      105 months ago

      On the flipside of this, I’ve been kicked from games because I know how to prefire, and a lot of players see that and just assume you’re wallhacking. Nobody pays attention to the 70% of the time that you prefire at air, but when you guess right and instakill someone holding an angle, it’s easier to say “cheater” than “i’ve been holding this same angle for the past 5 rounds, perhaps I’ve become predictable”

    • @jjagaimo@lemmy.ca
      link
      fedilink
      English
      35 months ago

      It’s basically luck of the draw with trust factor and region

      I regularly run into cheaters who I watch the demo afterwards and they just sit there aim locked onto someone and tracking them through the wall for 10s before blasting them without ever seeing them, or react to things they can’t see (e.g. suddenly flick to a corner someone is walking up to in a panic wo seeing or hearing a thing). Basically every other game has someone suspicious if not blatantly cheating from the start. If was bad in CSGO and it’s 10x worse in CS2

      • @t3rmit3@beehaw.org
        link
        fedilink
        45 months ago

        I remember back in like 2016~2017 seeing one of those spinning aimbots with a wallhack, just sitting at CT spawn in Dust 2 and killing everyone on T. We all watched it for 5 minutes until it got VAC-banned. That one was hilarious.

        I do wonder if West Coast US (where I am) is more heavily policed than other regions. That would make sense if Valve is doing some kind of post-match automated analysis of player behavior, which would probably be too compute-intensive to run everywhere.

        • @jjagaimo@lemmy.ca
          link
          fedilink
          English
          35 months ago

          Apparently East coast is just a FFA. Ive played in EU and West Coast servers with friends and they’re definitely better about cheaters

      • @Emphimisey@aussie.zone
        link
        fedilink
        35 months ago

        You are either using hyperbole or you are lying. VAC is an incredibly good AC for CS. To have a cheater every other game is not possible unless your trust factor is in the basement/you are at 20k+ (which I doubt)/ or you are really low like <3k (most likely).

        Game sense is a big thing in CS and it can be the reason for a lot of decisions that people make, which can be thought of as cheating. Go watch professional LAN tournaments of 1.6 especially on Nuke and see all the wall bangs that happen that’s not wall hacks it’s game sense.

        • @jjagaimo@lemmy.ca
          link
          fedilink
          English
          25 months ago

          I have been playing CS since 1.6. I know a cheater when I see one and I know wallbangs can happen. You mean the guy with 100% headshot rate, shoots exclusively at people thorough walls before seeing them, and puts their face into a wall to stare at the enemy and track them walking through the map on 1v1 is playing legitimately? Unless I’ve done something to tank my trust factor and it hasn’t changed in something like 5 years, then there’s no reason for me to have low trust factor.

          The cheater problem was not like this before and has been getting steadily worse. Just because you don’t see them doesn’t mean they don’t exist. Besides that wallbangs are nothing like in 1.6.

      • @t3rmit3@beehaw.org
        link
        fedilink
        4
        edit-2
        5 months ago

        I’m usually ranked either 3rd or 4th in FFA deathmatch matches, so if they’re hiding it so well that they’re not pushing the non-cheaters down, what is the point of cheating? And if they’re hiding it so well that they’re not actually even winning, how are they causing so much grief?

        Maybe it’s a bigger issue in Ranked/ competitive, but if you’re not actually on an esports team I just don’t get caring about rankings and playing ranked (is it just for the ranked season profile badge? I did that one year to get to Gold Nova 3, and then never bothered again).

    • @dinoOP
      link
      English
      15 months ago

      What is your playtime? Mine is pretty low on CS2 but the biggest critics on the game online are the amount of cheaters.

  • MentalEdge
    link
    fedilink
    29
    edit-2
    5 months ago

    Cheats will only grow more advanced, at some point you’ll be able to train an AI to play exactly like a human, but while performing perfectly far more reliably than a human.

    The line between what skill looks like versus cheating will only get blurrier.

    The real long term solution is to enable the vetting of players (not by the game company or god forbid the government, looking at you china), by returning to community based servers/private matches. And to have reports dealt with faster and by people who care about the game personally.

    As a member of the Northstar community, cheating is basically a solved problem for us atm.

    There is no anti-cheat, instead a global ban tracking system was put in place and server admins are now able to share the identities of players who have been caught cheating, banning them on every server, regardless of who is running them, by the hosts simply opting into the global ban system.

    People used to form “gaming-clans” in order to find people to play games with to begin with, and that structure for a community around a game is likely to become relevant again simply to be able to fill matches with people who you can be sure are honest players.

    • @gk99@beehaw.org
      link
      fedilink
      7
      edit-2
      5 months ago

      People used to form “gaming-clans” in order to find people to play games with to begin with, and that structure for a community around a game is likely to become relevant again simply to be able to fill matches with people who you can be sure are honest players.

      Unlikely imo, because modern game devs have been killing the viability of that for years. User-hosted servers are gone, crossplay is reliant on SBMM to be realistically possible, and private matches often block players from receiving XP and rewards because they’re worried about FOMO and people getting too much fun without spending enough. Even CSGO got an update in the months leading up to CS2 where they removed the ability to earn drops on community servers, driving another nail into the coffin as one of the last kinds of these games that still retain the mere ability to run servers of our own.

      • MentalEdge
        link
        fedilink
        8
        edit-2
        5 months ago

        While that’s all true, the day you can just fire up an undetectable AI to play for you, and all the matchmaking queues are flooded with people doing the same… Players are going to beg for the ability to not just team up with people they know, but play against people they know.

        Maybe that wont be privately hosted servers, or even fully custom matches, but when cheaters become indistinguishable from the highly skilled, forming even the most basic community bonds in order to find people to play with will be preferable to matching with randos.

        For similar reasons people already prefer to team up with someone they know, as opposed to a stranger they might have to carry. People will want to be able to pick who they go up against, as well.

        Once the cheaters win, (and they will) the first game to figure out a system to let players do this, WILL be a better experience than current matchmaking algos.

        Edit: An example of a game that kinda already does this is Elite: Dangerous. There are two main modes, open and solo, in open you can run into all other players also playing in open, that means you might have to defend yourself against other players.

        But, if you want to avoid PvP, but still want to run into other players, you’re in luck! Because there is a third option, private groups. When in a private group, the game works as if you’re in open, but you can only see other players who are in the same group. Meaning other players who also do not want to engage in PvP.

        Mobius is likely the largest such group, essential it’s a giant clan of non-PvPers who play the game together. Something similar could absolutely be done for other games, where smaller communities can then vet their members and get rid of players who break the rules.

    • @dinoOP
      link
      English
      35 months ago

      server admins are now able to share the identities of players who have been caught cheating, banning them on every server, regardless of who is running them, by the hosts simply opting into the global ban system.

      By which information? I have no clue what Northstar is, but if you ban by IP or MAC, its pointless.

      • xep
        link
        fedilink
        85 months ago

        It’s cat and mouse when it comes to banning, even with hwid signatures the cheaters are able to use sophisticated spoofing techniques. Also there are side effects like legitimate players buying second hand pcs that have been banned.

      • MentalEdge
        link
        fedilink
        6
        edit-2
        5 months ago

        EA account ID. Northstar is the community modded version of Titanfall 2.

    • @lukas@lemmy.haigner.me
      link
      fedilink
      25 months ago

      There is no anti-cheat, instead a global ban tracking system was put in place and server admins are now able to share the identities of players who have been caught cheating, banning them on every server, regardless of who is running them, by the hosts simply opting into the global ban system.

      A global ban system without a more nuanced approach is a terrible idea. Operators of that global ban system will whitelist themselves, blacklist people they hate, and maybe even backdoor the mod that enables them to ban people in the first place. Server admins have no choice but to either opt into the entire system or have none at all, and both of these options suck. We’ve seen how this plays out already.

      Score players by your own criteria, weight everything with different blacklists, greylists and whitelists, etc. and ban players if they exceed a threshold automatically. It won’t be perfect, but email catches most spam emails that way just fine.

      • MentalEdge
        link
        fedilink
        2
        edit-2
        5 months ago

        It’s open source.

        No choice? I can still apply my own bans on top no matter what the mod does. Spyglass isn’t what enables bans, it just makes them networked and tracked. And I could modify the mod to work however I like, or even fork the whole thing and make my own database.

        That’s not been necessary as Erlite has been maintaining the spyglass mod and database with integrity.

        There’s no chokehold here, no problems have arisen, and if they do, only then are additional solutions warranted. I’m not suggesting this is the final solution for all games, but that this kind of community driven counter-cheater work, is.

        Cheating is being treated as a tech problem with a technological solution, when really it’s a social problem which should be solved with inter-social solutions.

        • @lukas@lemmy.haigner.me
          link
          fedilink
          2
          edit-2
          5 months ago

          I didn’t describe what could happen, but what did happen in real life. Multiple times.

          MCBans is open-source btw, yet nobody checked and changed the source code, as should be expected really. Operators whitelisted alts and friends. Blacklisted server owners who didn’t appreciate that the operators of their global ban list griefed their servers with backdoors.

          Another typical example is 3rd-party Discord ban lists. They whitelist their own staff. They backdoor their bots to fuck around with servers. It’s just the reality of global ban lists.

          If Erlite doesn’t abuse that trust, then someone with admin access will, or Erlite’s successor. That’s a fact, not an opinion. Email spam filters prevent single trust lists with scores, multiple lists, etc.

          • MentalEdge
            link
            fedilink
            1
            edit-2
            5 months ago

            I’m not denying any part of what you’re saying, I’m saying that this specific case is currently working fine, and that it is merely an example of the kinds of solutions I want to see enabled.

            Obviously the bigger the community, the more complex the solution needs to be, and the more bases have to be covered. You’re nitpicking a specific example I gave (and doing so from a position of ignorance concerning northstar and its community), rather than my ideological thesis. Which is that communities should be empowered with social structure so that cheaters can be properly ostracized. Spyglass is just one way for a community to implement that.

            Northstar isn’t big enough to even begin to compare with discord or minecraft. The concurrent playercount on all servers put together seldom matches ONE big minecraft server.

            If the factors you bring up become a concern, I’m ready to pick up the tools to deal with it myself, as I’ve already done before. But so far, there has been no need.

    • RandoCalrandian
      link
      fedilink
      15 months ago

      “At some point”?

      Fuck, I can do that now. Training ai is trivial. It’s getting it to do well that’s hard.

      But if you can mix in other things like regular object recognition it gets much easier

      • MentalEdge
        link
        fedilink
        0
        edit-2
        5 months ago

        You could train a network with three nodes over 15 minutes with a dataset consisting of two screenshots of victory royales, and say you “did it today”.

        But really you’d need a model that takes in the same inputs as a human (audio and display signal) then outputs the same inputs that a human would make (keyboard/mouse). This is orders of magnitude more complex than what even LLMs do.

        There’s no easily accessible dataset large and detailed enough for training a model on any current competitive games, not to mention modern games are some of the most complex things humans interact with at all. Driving a car is a joke in comparison (in terms of complexity).

        Looking it up, the most advanced game-learning AI is currently MuZero and it’s been learning old Atari games.

        • RandoCalrandian
          link
          fedilink
          1
          edit-2
          5 months ago

          I disagree, replay files on something like starcraft work great for training. In fact, Starcraft2 was targeted after Go for AI gaming benchmarks, and it’s replay functionality is probably a reason why.

          But yes, to set it up as a separate machine that is sending nothing but the same user inputs as a person to a computer running the game both completely bypasses and invalidates any of the anti-cheat malware that gets installed, and becomes more and more undetectable to server side code.

          not to mention modern games are some of the most complex things humans interact with at all. Driving a car is a joke in comparison

          insert .gif

          Looking it up, the most advanced game-learning AI is currently MuZero and it’s been learning old Atari games.

          yes, that people do for fun, as hobbies. With great success. And they are at the point where they have their own leaderboards and benchmark games. The ethics of it are the biggest reason why it hasn’t been applied to competitive games.

  • Melody Fwygon
    link
    fedilink
    205 months ago

    Most anti-cheat software can’t do much on the client side. Really all it can do is look around at it’s environment where it’s allowed to look and see what’s going on.

    Most Cheat Software will run on a higher privilege level than the game; whether that’s as an “Administrative” user or as “root” or “SYSTEM” in a context where it’s running as an important driver.

    In any case, the only thing the Anti-Cheat can reliably do on the client side is watch. If it’s cleverly designed enough, it will simply log snippets of events and ship them off for later analysis on a server side system. This will probably be a different server than the one you’re playing on, and it won’t be sending that data until after the match has ended properly.

    Sometimes it might not even send data unless the AC server asks it to do so; which it might frequently do as a part of it’s authorization granting routine. Even when it has the data there may not be immediate processing.

    Others have also mentioned that visible action may be delayed for random time periods as well; in order to prevent players from catching on to what behaviors they need to avoid to get caught, or to prevent cheats from getting more sophisticated before deeper analysis could reveal a way to patch the flaw or check to ensure cheating isn’t happening.

    Since cheat software can often be privileged, it also has the luxury of lying to the server. So clever ways to ensure that a lying client will be caught will probably be implemented and responses checked to ensure they fit within some reasonable bounds of sanity.

  • @Megaman_EXE@beehaw.org
    link
    fedilink
    13
    edit-2
    5 months ago

    Valve works differently than other companies. Internally everyone works on what they want when they want. You can literally wheel your desk to a new location if you decide to want to work with another team. Because of this though it creates an odd dynamic that isn’t always going to work out best for the developers or the consumers.

    This is why it feels extremely random whenever valve releases something new. You would think they would just release banger after banger of hot AAA titles. But it’s more complicated than that unfortunately. This is also reflected in things like fixing cheats in team fortress 2 etc etc.

    This video will answer a lot of your questions

    https://youtu.be/s9aCwCKgkLo?si=YoE9G-S80xf7JjLO

    • Big P
      link
      fedilink
      English
      25 months ago

      I thought they stopped doing this during half life alyx?

      • Friendship
        link
        fedilink
        15 months ago

        One can only hope. That policy has left Valve spinning in circles and accomplishing very little for a long time now.

  • macniel
    link
    fedilink
    5
    edit-2
    5 months ago

    Valve uses EAC? The fuck? What’s with VAC?

    Besides that, EAC works without issues on Linux.

    • @dinoOP
      link
      English
      3
      edit-2
      5 months ago

      Oh did I mix up those two? I was actually referring to VAC, need to check who is responsible for EAC.

      Edit: Apparently its Epic, I will correct the beginning post.

  • 🇰 🔵 🇱 🇦 🇳 🇦 🇰 ℹ️
    link
    fedilink
    English
    4
    edit-2
    5 months ago

    My only issue with VAC and Valve’s policy on dealing with cheaters isn’t that their anti-cheat isn’t good; it’s that even when a player is flagged for using cheats, it doesn’t instantly remove them. It waits, sometimes months after flagging them before it actually doles out punishment.

    Their reasoning is that it slows down new cheats being made; but what the hell does that matter if the existing cheats it flags are still allowed to be used for months at a time?

    That said, it’s rare I encounter cheaters in CS. Plenty of other games I play where there are constant, obvious cheaters that aren’t even being detected by the anti-cheats in use, since they ban instantly on detection.

    • xep
      link
      fedilink
      9
      edit-2
      5 months ago

      Giving cheat authors instant feedback in terms of detection results in cheats getting better at evading detection more quickly.

    • @Akrenion@programming.dev
      link
      fedilink
      65 months ago

      This is for paid cheats. If you ban in waves the companies selling cheats lose a larger sum of money all at once. This also hits right at the time when they need to put in the most work.

      • @jjagaimo@lemmy.ca
        link
        fedilink
        English
        35 months ago

        The problem is that for detection of identical programs, vac relies on program signatures. You could make slight changes to to program to change the signature and recompile it, or use something that changes the signature every time you compile it. That means even though those running the cheats are using essentially the same program sold to them by the same person, if one gets banned then VAC sees the other program and goes, “I’ve never seen this program in my life”

        Other anti cheats will try to identify programs by their functionality (e.g modifying or reading memory of other programs) and using heuristics but that is both more invasive and requires higher level of privilege which many people aren’t willing to give.

        The other alternative valve is experimenting with is AI to detect aimbot, which could work in some instances, but is prone to false positives, and isn’t able to as easily identify behavior such as walling

  • @highduc@lemmy.ml
    link
    fedilink
    25 months ago

    Only Valve has the motivation and means…

    I think they have the means but not the motivation. I can think of only 2 reasons why the state of anti-cheat is the way it is:

    1. They don’t want to spend money to fix it
    2. They don’t want to ban paying customers
    • @dinoOP
      link
      English
      15 months ago

      I doubt that, I mean show me a proper working anti cheat which isn’t deeply rooted into the system as this Valorant bullshit? Don’t even know how good that one is actually working. I just think there should be more focus from players and general attention that cheaters are bad for sales, because people don’t want to spend money on games where cheaters are free to prevail.

      I also think with CS2 Valve has a big motivating factor to make this classic one which is cheater free. Also why aren’t third party games able to use VAC?

      I really like the community driven moderation of playerbase is a good suggestion. For games like Hunt: Showdown and any other game with just lobbies, its not working though.

  • @Omega_Haxors@lemmy.ml
    link
    fedilink
    1
    edit-2
    5 months ago

    There is no problem involving valve games that can’t be solved by not playing valve games. Seriously, I quit a long time ago and my mental health has soared from not being around those borderline neo-nazi gamers all the time. Fuck valve for harboring fascists within their platform.