Can someone who lives in the kansas area please forward this to the authorities, i don't know what I'm able to do from Norway but this person randomly said this in my twitch chat and didnt comment further. RTs appreciated as I really need someone from kansas to see this.
As a captain for one of the teams in this tournament, listening to this genuinely INFURIATES me.
How annoying to have one of your players just outright refuse to listen and constantly bitch and moan about the hero they're assigned to play when you're trying to come up with team comps.
I'm so glad my team doesn't have this issue.
It's not even like we expect our players to put up some insane performance, just listen to the people who play the game and try your best to win.
There's 300k on the line ffs, you're supposed to put in some effort!
everyone was mad when it was a woman that was forcing a D tier dps in a tournament for money but when it’s a man doing it there’s tons of people defending him and calling aramori a whiny bitch and osama bin laden of vibes for caring xd
Wait so a hitscan champion on overwatch is trying to get pity points cause he wanted to play squirrel girl in a 300k tourney and wondering why people mad at him 😭😭😭
Kingsman got a whole career out of the Zazza situation while Aramori is getting flamed for being rightfully upset. The double standard is very strong with this one lol
defending a man who threw a 300k tournament bc he wanted to play sg (he is a known hit scan player in ow) + pissy at aramori for being upset… but when it was a girl who refused to switch & threw we got misogyny, corny zazza jokes + kingsman hype and gave him more opportunities
Man throws a literal $300,000 tournament on squirrel girl
twitter: be nice to him omg hes just a babyyyy🥹🥹🥹
Woman plays widow in $40k tourny
twitter: AWFUL human being how DARE she play widow, SIX MONTHS of ENDLESS harassment and THREATS NOW!!!!!!!
women always just get the short end of the stick in esports its so sad like literally just look at how aramori is being treated right now in her replies for wanting to try to win the tournament, just full of disgusting animals who always favor men in any situation.
En el momento no me enojé porque pensé que era parte del festejo, pero ya editando me di cuenta de que fue directo a mí. Real, ¿a eso van al estadio? 😐 Una vez mas se comprueba que el dinero NO DA educación. Sin palabras. 😶
You are literally the creator of intlist… a website dedicated to paying money and throwing peoples games and harassing every single person whether they deserve it or not. And don’t worry I will respond to everything soon accordingly, cheaters never prosper.
Hello Everyone,
In a previous life, I used to do offensive and defensive anti-cheat research professionally, and one thing I’d like to say is that this game is doing the absolute bare minimum to secure and protect itself against cheaters. To give the team some credit, combating cheating is extremely difficult because cheat developers are constantly adapting (especially with AI) and testing new methods faster than most of these developers can realistically respond to. I’m going to outline what the anti-cheat team does right and what they do wrong, and then let you come to your own conclusions about the overall state of the game’s anti-cheat efforts.
Vocabulary:
- DLL: This term will be used heavily, and it refers to a piece of software that is injected into a process (for ex. Marvel Rivals) and is capable of executing arbitrary code within the game process. This allows cheaters to modify or manipulate different parts of the game in order to gain an unfair advantage (f.ex reading from or writing to the game state).
- DLL Sideloading // hijacking: Replacing a legitimate DLL that the game uses with a malicious DLL that allows an actor to execute arbitrary code within the game process while masquerading as the legitimate DLL.
- XIM: A cheating device primarily used on consoles to for example mask a keyboard and mouse as a controller allowing malicious actors to essentially have aim-assist, and run a ton of other scripts that give malicious actors to gain a competitive edge over players
- Function Hooking: This allows a malicious user to redirect how the code normally works, giving them control over how the program behaves and letting them change the result of certain functions.
What they do right:
- Sending telemetry from the game process to the anti-cheat backend server, even without the kernel anti-cheat running, to determine whether a game session appears legitimate or illegitimate (cheating).
What they do wrong:
- The Kernel Anti-Cheat component is pretty useless. It’s really only meant to serve a few purposes (it does a bit more, but these are the main components you should actually care about), and the entire system becomes redundant when you can simply disable the kernel component. The first purpose is acting as a preventative measure against DLL injection, which it does a poor job at because you can use DLL Sideloading and the game will blindly accept illegitimate DLLs and inject them into the game process. Another purpose is sending telemetry to the anti-cheat backend, which collects data about the process and scans for cheat signatures, abnormal process conditions, and unauthorized modifications. The Kernel Anti-Cheat probably does more than that, but it becomes pretty useless when you can just disable the kernel anti-cheat component entirely.
- There have been claims that if you run a certain command line argument it completely disables the anti-cheat, but this is only partially false. It disables the kernel anti-cheat component, but it does not disable the anti-cheat that lives inside the game process, “QSec.” QSec is another anti-cheat component inside the game process, and it does a bit of the heavy lifting by sending increased telemetry about your aim score, XIM score, and other unusual process events. This can also be disabled by patching the game executable on disk, preventing the system from even being initialized. (I’ve sent this directly to the developers a while ago, and they’ve done nothing with it.) One thing I will give them credit for is that they’ve at least attempted to protect this code, but they’ve done a terrible job executing it. There’s also another component they use called “AC (Anti-Cheat) SDK.” This component exists in an extremely niche location within the game process, but I won’t explain it further because it could lead to additional attack vectors, although the team already knows where it lives. From what I understand, this component also sends additional telemetry and periodically sends screenshots of your game to the anti-cheat backend (at least for high-risk players) in an attempt to detect cheats like ESP, which gives exact player locations through walls. This component can also be disabled.
- The anti-cheat team also has an additional QSEC (anti-cheat) component that is completely server-side. This anti-cheat automatically scans replay files and match data to determine whether a player is cheating based on heuristics. This approach is extremely flawed because a cheater can disable the components I explained above and “humanize” their cheats to avoid detection. It can also lead to false bans if the system’s assumptions are incorrect, which appears to happen periodically.
- The Anti-Cheat team actually does nothing to validate whether the kernel component is running or not, this is one thing some anti-cheats like "Easy Anti Cheat" does right, the game server will kick you out if it doesn't receive a valid token from the client generated by the anti-cheat. Sure some telemetry may give the team some insight saying "Hey so this user isn't running our anti-cheat, they're probs sus asf", but when those telemetry components are disabled and your only component is the server sided anti-cheat it makes the entire system super redundant.
- The Marvel Rivals team claims that a user who gets banned will get device bans, and IP bans. From my understanding they don't IP ban, but they do attempt to device ban (HWID Ban) and they do a terrible job at it, since you can disable the kernel component of the anti-cheat the game process is left with only one way.. do call windows functionality to generate a Hardware Identifier based on the limited functionality that Microsoft gives them. This is completely redundant when you can disable all of the components I've mentioned earlier and the use Function Hooking to essentially "spoof" your hardware identifier, and once you get banned, you can clean all of the traces the game process leaves and create a brand new account as if nothing happened.
There's a few more components that I haven't talked about or may not completely know about, but I hope this gives you a slight idea on how the team actually handles cheating. I've actually sent most of what is currently in this post directly to the team months ago, and they haven't done anything with it. You know where to contact me NetEase. Chào👋