HOW HACKING WORKS

Поделиться
HTML-код
  • Опубликовано: 21 янв 2025

Комментарии • 239

  • @cazz
    @cazz  Год назад +42

    To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/cazz/. The first 200 of you will get 20% off Brilliant’s annual premium subscription.

    • @StarkGamingYT
      @StarkGamingYT Год назад

      How hard is it to make cheat for mobile games like esp and magic bullet do you have any idea? Where should I start? Which language should I learn (I have little knowledge about c++)? Is there any website to start with?

    • @jasshand5373
      @jasshand5373 Год назад

      how did you comment 7 days ago if this came out 8 hours ago??????????????

    • @StarkGamingYT
      @StarkGamingYT Год назад

      @@jasshand5373 because this video was in unlisted mode and the comment were added on the day of upload maybe that's my reasoning 🧐

    • @esozal
      @esozal Год назад

      @@jasshand5373 unlisted video

    • @Snowman420DK
      @Snowman420DK Год назад

      at 1:55, Rockstar lmao

  • @sudowtf
    @sudowtf Год назад +159

    This channel got me interested so much into game development and game hacking that I switched my focus off of wanting to pursue an A.I. dev study to now wanting to apply for a Game Dev study. Videos are god tier too! Keep it up man❤

    • @vidal9747
      @vidal9747 Год назад +13

      Mix up the too. If Anti-Cheats can have AI so can cheats

    • @untiziocheesiste7155
      @untiziocheesiste7155 Год назад

      @@vidal9747 That is probably where the market is going. Nice advice

    • @ooheureka
      @ooheureka Год назад +1

      you can create an AI aimbot

    • @sudowtf
      @sudowtf Год назад +1

      @@ooheureka Yes you can but it is not really necessary. Besides, A.I. development focuses way more on data science and that’s boring as fuck. Game development is way more creative (imo)

    • @cc1drt
      @cc1drt Год назад +15

      @@sudowtf You just changed from arguably the strongest computer science subdomain to the weakest. But hey, if it makes you happy

  • @ayon12351
    @ayon12351 Год назад +72

    You explain SO WELL! Like most people on youtube suck at explaining to people who aren't expirienced yet in this topic. This makes so much sense

  • @nezu_cc
    @nezu_cc Год назад +51

    for frequently changing offests, pattern scanning can still be used. You just need to find a place in the game where the value you're interested in is accessed, make a signature for that, and then you can extract the offset you need directly from the game's code.

    • @tablettablete186
      @tablettablete186 Год назад +1

      That's a really good idea, I have only changed the code so far.

    • @midge9740
      @midge9740 Год назад +4

      and if we're talking about cs u can even go further and interface with the schemasystem to get field offsets dynamically (love cs2)

    • @nezu_cc
      @nezu_cc Год назад

      @@midge9740 schema only exists for stuff that's networked. Not everything is networked

  • @Armm8991
    @Armm8991 Год назад +13

    It's worth noting that hacking games isn't just about cheating on a videogame.
    Modding is also a big part of it

  • @sun3k
    @sun3k Год назад +6

    3:04
    Thats 32 bytes, 20 is hex 14

  • @Ekuder
    @Ekuder Год назад +4

    3:12 bruh, 20 != 0x20
    otherwise yr cool!

  • @DukeofAthens
    @DukeofAthens Год назад +11

    I like the video but I feel like you could easily expand your audience by dumbing things down and explaining further. I have taken both a university software engineering program and graduated from a college level game programing course and I think it could still be explained much, much further. How exactly should you change your videos? Not sure, but I would think that close to double the length would be a good start and lowering the wpm and showing definitions on screen for those unaware of what you are referencing.

    • @ProfShibe
      @ProfShibe 6 дней назад

      @@DukeofAthens imo if you have any basic understanding of C or C++, rust, asm etc (any non garbage collected language probably) and some super basic DSA knowledge, it’s very very well explained.
      This topic is not for people with 0 knowledge of computers. Yes he’s talking about video games which everyone knows, but spending an absurd amount of time explaining basic stuff that most people won’t care about anyways is a waste.
      The channel is clearly aimed at developers, not random people who just want to cheat.

  • @anto_fire8534
    @anto_fire8534 Год назад

    Nice video. Also kind of nitpicky of me but at like 3:00 you keep saying 20 bytes while showing 0x20 on screen (0x20 being equal to 32)

    • @cazz
      @cazz  Год назад +1

      👀 my bad

  • @akakamaz7382
    @akakamaz7382 Год назад

    1:57 talk about rockstar XD, in gta 5 you can literaly have god mode, spawn vehicles, and if u know what your doing just spawn money out of thin air AND IT KEEPS whitin sesion XD. im pretty sure that if they were to patch their security problems it would cost more than just doing nothing

  • @gamespecies
    @gamespecies Год назад

    Cheers from Cape Town dude 😎 are you from Jozi ?

    • @cazz
      @cazz  Год назад +1

      Living in Durban at the moment 👌👌

  • @nordgaren2358
    @nordgaren2358 Год назад +4

    At the machine code level it will use offsets, but you don't need to use the offsets directly to make cheats if you define the structure you are interacting with, correctly.
    Like how you had the player structure defined in the video.
    It can take some finagling, but it's much better than using offsets.

    • @drunkenfarmer2513
      @drunkenfarmer2513 Год назад +1

      I never use offsets, I just recreate all relevant classes, makes it a lot easier to code complex hacks/bots

    • @nordgaren2358
      @nordgaren2358 Год назад

      @@drunkenfarmer2513 same. Godbolt is my friend. If I have some kind of issue with structure definition, it's infinitely easier to debug with a structure than it is with raw offsets.

    • @IUYGHQWEAZSCD
      @IUYGHQWEAZSCD Год назад +5

      if you are defining game made structures in your program, you are still referring to the original location in memory which means you are still using offsets, its just a more user friendly way to look at it

    • @nordgaren2358
      @nordgaren2358 Год назад

      @@IUYGHQWEAZSCD please read the comment

    • @nordgaren2358
      @nordgaren2358 Год назад

      @@IUYGHQWEAZSCD also, from a maintenance standpoint, it's a whole different ballgame. Using offsets directly means you will have to update a bunch of offsets when the structure gets updated.
      If you use the structure, instead of hard coding offsets, you just need to update the structure definition. That's it. Nothing else needs to be updated. Field names are arbitrary.

  • @Sl33pySt3rdust
    @Sl33pySt3rdust 8 месяцев назад +1

    could you make a tutorial on the memory class you always use in your external cheat videos? like "how to write memory with the memory class into this or that address" stuff yk?

    • @vasatruhl
      @vasatruhl 6 месяцев назад

      I suggest copying the code and telling chatgpt to explain it for you, it basically takes a "screenshot" of the running processes, finds the right one with the name you give it and opens a handle to it so you can use RPM and WPM. There is also a GetModuleAddress that does the same thing but when it finds the module inside of the game it returns its address.

  • @bhadrik
    @bhadrik 9 месяцев назад

    Cant they create software that randomise the offset each time you launch the game. Completely random memory address for all of the variables. Or maybe shuffle the memory once the game loded.

    • @joaovitor.fonseca
      @joaovitor.fonseca 9 дней назад

      ASLR (Address Space Layout Randomization)
      Little used because it hinders the performance, compatibility and maintenance of the code

  • @zenbladejs
    @zenbladejs Год назад +2

    That's all very intereesting, but what about network manipulation? Wouldn't that be a simple way to do it for online games? Or does each player generally have its own encryption key making it pointless to share hacks?

    • @sun3k
      @sun3k Год назад +3

      For opensourced games like minecraft etc you can make proxies which would be fully external and not modifying the game at all (even tho useless for minecraft, java and internal anticheat), but for most things Im pretty sure it would be easier to just modify memory. You would need to basically reimplement the whole protocol of the game otherwise, also obscure encryption changing each release etc

    • @Chaooo
      @Chaooo Год назад +2

      A lot of well-made online games go by the mantra of "don't trust the client", so there's a lot of validation done on the server-side to make sure your actions are legitimate.
      And then you have Dead by Daylight which doesn't even bother to check if your character is allowed to fly up off the ground and rapid-fire between hooked states, etc.

  • @Goten2321
    @Goten2321 Год назад +3

    Wouldn't the memory address of, for example, the player's health, always be in a different position, even relative to the game's base memory address? I am not too familiar with lower-level programming, but from what I understand, memory allocation doesn't always happen in a continuous block..

    • @xClairy
      @xClairy Год назад +1

      Offsets of the memory are still the same if memory is allocated statically instead of dynamically

    • @strange1702
      @strange1702 Год назад +1

      Addresses are always different, but for e.g player and player health are related cuz player is class and player health is variable of that player class so if code does not change offset will always be same.

    • @xClairy
      @xClairy Год назад

      @@catalinnedelescu Mhmm that's how dynamic memory allocation works although it would prevent the offset hack there's still many other ways to find it in memory

    • @Chaooo
      @Chaooo Год назад +1

      Not unless they have completely rewritten and transformed the Class structure or moved the health attributes to another Class in some weird refactoring project that I've never heard anyone do before.
      But to answer your question, even if the memory is compartmentalized into smaller blocks spread throughout the memory map, that's what pointers are designed to do: tell the interpreter where that memory block is. More specifically, it tells you where the BEGINNING of that chunk of memory is for that piece of data, and then you would have your offsets to access the different attributes of that structure.
      If you're learning any kind of programming language, I heavily recommend playing around with iterators for vectors or other containers. That will give you a better idea of what is happening, as the iterator is literally just an "offset" of the destination of a pointer. In C++, if you declare "auto itr = myVector.begin()", your offset is 1 position (which is 1 byte or 4 bytes? I don't remember) because your iterator is at the first item in your vector. If you do "itr += 1", your offset is now 2, so you're at the 2nd item in your vector.
      I don't believe C++ will allow you to do it, but if you were to somehow move back 1 position from "myVector.begin()", you would still be in the memory region that contains the vector because the bytes that come before the actual list of items is some code that basically says "this is the START of a vector of size X"; because we have something detailing the length of the vector, we don't need bytes at the end of the object saying "this is the END of the vector", it will instead be random memory used by who-knows-what.
      Anyone please correct me if I'm wrong on anything, it's been ages since I've coded in C++, but I'm pretty certain this is accurate.

  • @cluiv1975
    @cluiv1975 Год назад +2

    Bro this video explained everything I learned in the 6 years of self coding, in a couple of minutes, legendary

  • @mumblety
    @mumblety Год назад +2

    I personally don't hack, or have any interest to, but I find how it's done fascinating! Great video!

  • @KashRegister0001
    @KashRegister0001 Год назад +1

    This man really made me go through the brilliance course normally i just skip any and all sponsors

  • @防火长城
    @防火长城 Год назад +2

    happy new years eve bro, thanks for the great content

  • @SnapWireOnlyOne
    @SnapWireOnlyOne Год назад

    Good Video Bud. Created my First Hacks in Halo when i was 12 years old

  • @JasperGames7098
    @JasperGames7098 Год назад +1

    Does all of your csgo tutorials work for cs2?

  • @Psychopatz
    @Psychopatz Год назад

    Excellent Content as always sir and Happy New Year to Everyone!🎊

  • @tempest8600
    @tempest8600 Год назад +3

    Amazing videos as always, thanks for making videos on this topic, in such high quality too.
    Can I suggest doing one of how game cheats work in depth? Like I know some major games that have cheats that have been undetected for years, since launch even but the creators are obviously very quiet regarding how they work. I've always wondered how they run, are injected etc

    • @devnull1013
      @devnull1013 Год назад

      You gotta be more specific. Not every game tries to detect cheats in the same way nor do all cheats operate in the same way.

  • @ayon12351
    @ayon12351 Год назад

    Can you please make a video on how to find offsets to make an aimbot yourself? Lots of games don't have public offsets, or are way harder to look up... And so many tutorials are crap and hard to understand...

  • @mohammed_amine_7173
    @mohammed_amine_7173 Год назад

    What's the hex editor you're using?

    • @Chaooo
      @Chaooo Год назад +1

      Are you talking about the program seen at 3:00? That's IDA Pro, which costs a hefty amount of money for a license.
      People who don't have that kind of cash use Ghidra, ollydbg, Radare2, and so on, but I've heard many accounts of IDA Pro being the king of disassemblers.

  • @pabloqp7929
    @pabloqp7929 Год назад +1

    Wish for 2024: _cazz_ starts a podcast

  • @bobslop9136
    @bobslop9136 9 месяцев назад

    Hello, thank you for the insights! So are you on the save side (as a developer) if you calculate and store all critical data on the server? Or is there another ways to manipulate the data besides hacking the server?

  • @LeonLuckyV
    @LeonLuckyV Год назад

    What’s a good laptop to buy, currently starting learning C++ for my course too

    • @DrLifeGamer
      @DrLifeGamer Месяц назад

      @@LeonLuckyV It will be the most expensive laptop possible. The most expensive laptop possible is great.

  • @Random-Griefs
    @Random-Griefs Год назад +1

    firstly this is not hacking this is cheating, hacking is getting unotherized acess to a network, system or else, otherwise realy good vid

  • @matthewread9001
    @matthewread9001 Год назад

    Having taken assembly language and OS courses helped understand this kind of stuff a lot.

    • @Vaibhav-Nayak
      @Vaibhav-Nayak 7 месяцев назад

      Where can I find these courses? I'm currently reading the linux programming interface

    • @matthewread9001
      @matthewread9001 7 месяцев назад

      @@Vaibhav-Nayak Uh... they were required courses to get my Bachelors.

  • @FictionHubZA
    @FictionHubZA Год назад +13

    You just click random keyboard keys as you type on the commandline terminal and yell "I'm in"
    Thats how hacking work duh

  • @TazRBX
    @TazRBX Год назад

    can you make a tutorial on how we can make unlockers for the new warzone 3? or like cod in general?

  • @theodorepollock1273
    @theodorepollock1273 Год назад

    Server side are actually easier online, not many games validate packets sent to them by the client. Fake packets to store NPCs

  • @learninglearning2
    @learninglearning2 Год назад

    01:55 so pubg new state developers were totally incompetent!!

  • @mahad.k_
    @mahad.k_ Год назад

    Bro you have grown ur channel so much, i first watch you when you had 25k subs. hope your channel grows more ❤

  • @Yunzodesu
    @Yunzodesu Год назад +1

    >find video
    >gain knowledge
    >sub

  • @georgeisthename2799
    @georgeisthename2799 Год назад

    You didn't cover packet manip? I'm not sure if that's still used but I would assume that's a huge part of hacking in games.

    • @cazz
      @cazz  Год назад

      I wouldn’t say it’s a “huge” part, but for sure it plays a part. It’s another vector to cheat in for sure. Also something I’m not experienced with unfortunately. Have a good one G 👌👍

  • @saulgoodman6710
    @saulgoodman6710 Год назад +2

    Nice video! Is it possible for you to show a demo of this? say you pick an old game on which you can demo us to show how to change the values in the game memory or at least how to read that part of that memory? I'm really curious about this stuff hence the request, thanks!

  • @zabouba5990
    @zabouba5990 Год назад

    can i unlock fps on some game with hacking or is it something else ?

  • @WalkerTexRanger
    @WalkerTexRanger Год назад

    Gotta be hounest, not seen the video yet but the thumbnail is on point! Got my attention from the recommendation page :)

  • @stubstunner
    @stubstunner Год назад +2

    Hacking games and software is what got me into my cybersecurity career.

    • @Fitness_Odyssey
      @Fitness_Odyssey Год назад

      I feel like the same is happening to me. Could you tell me about your journey of getting into cybersecurity?

  • @Karam99443
    @Karam99443 Год назад

    Happy New Year

  • @jrapp654
    @jrapp654 Год назад +1

    The quality of your videos is so good, but I feel like your content is marketing down from the content you were making. Most people who have found you already know how game hacking works and have been here for your coding videos. You should consider marketing up and making content that explains more advanced topics like driver development, anticheat bypassing, etc

  • @TomakeyouIaugh
    @TomakeyouIaugh Год назад

    You should make a vid explaining server sided data vs client sided

  • @snekservices
    @snekservices Год назад +1

    How spoofers work will be an interesting topic to talk about in your next vid

  • @mooseftw5034
    @mooseftw5034 Год назад

    Dope keep it up. its mind boggling how intelligent you are with computing knowledge

  • @LennarthAnaya
    @LennarthAnaya Год назад

    Exctly. Although I'm not a game developer, and I understand developers use engines and it might be engines fault (still coded by developers), I've always believed it's stupid when a player can one-shot kill another player just because "his computer commands that". Like wtf, didn't the server knew the total health of each player, the amount of shots that are needed to drain such health and understand one end is cheating?

    • @matthewread9001
      @matthewread9001 Год назад

      The basic problem is computing power. How much of your game should the server run vs client run. Like with what you said the server should know the health. But you can say “I deal 1000 damage”

    • @LennarthAnaya
      @LennarthAnaya Год назад

      @@matthewread9001 I'm not sure what the server is doing then, is it just a proxy?
      Anyways, my computer should also know the rules of the game. If anybody sent a signal of a ridiculous damage, shouldn't my computer refuse because she understands the rules too?, the game even knows which weapon caused that damage!

  • @rawad8720
    @rawad8720 Год назад +3

    one day I'll be good at game hacking hope so

    • @ShinAkiru
      @ShinAkiru Год назад

      Dont bro,
      Whatever you do you will get ban,
      Some game might get you ip ban
      Ip ban isnt a regular ban
      So dont do it, like srsly as a game dev pls dont ruin other peoples experience

    • @bitsplode
      @bitsplode Год назад +1

      @@ShinAkiru there are many ways to ban a computer but not through IP. If any game developer would ever ban for IP that would get messy pretty quickly

    • @ferret3998
      @ferret3998 Год назад +2

      Getting ipbanned si so lame you just need a new ip LOL

    • @bitsplode
      @bitsplode Год назад

      @@ferret3998Yea game devs should start banning the windows registry and the user

  • @repairstudio4940
    @repairstudio4940 Год назад

    Awesome subbed 🎉

  • @eeeeeeeeeex3
    @eeeeeeeeeex3 Год назад

    "HOW HACKING WORKS"
    *proceeds to show top/processes
    great vid tho 👍 good job and keep it up 🔥

  • @MuskaFN
    @MuskaFN Год назад

    Best channel, thanks for your work

  • @dailydoseofshtposts6891
    @dailydoseofshtposts6891 Год назад

    WOW, i cant trust my eyes, i cant belive youve passed 100k subs, i still think you have 4k subs lol, CONGRATULATIONS on the achivement! 👏

  • @budgetarms
    @budgetarms Год назад +2

    Imagine doing reverse engineering when the source code of the game is leaked

  • @hannahprobably5765
    @hannahprobably5765 Год назад

    Stonks&Edu&IT

  • @vvercc
    @vvercc Год назад

    Nice video man, love the work you put in.

  • @goozjeesh46
    @goozjeesh46 Год назад

    yay new video 😂😂

  • @sekki2554
    @sekki2554 Год назад

    „Every cheat needs offsets“ oh yeah? *starts bruteforcing the right address on every game start until health changes and game doesn‘t break*

    • @sekki2554
      @sekki2554 Год назад

      *while manually checking if the health changed, because i don‘t know the offset to check it automatically*

  • @sergutenesistcoo
    @sergutenesistcoo Год назад

    yo keep up the work

  • @PANTHER......
    @PANTHER...... Год назад

    Bro which software do u use to hack

  • @R_Y_Z_E_N
    @R_Y_Z_E_N Год назад

    Can't we just reverse engineer using ghidra and create a new executable so that we can mod the game to get Infinite health , just local player games not online multiplayer ones .

    • @Chaooo
      @Chaooo Год назад

      That's a lot of work when you can just change some values in memory, but yeah there are hacked executables that automatically inject .dlls on startup, but it's pretty rare these days. It's way easier to create a trainer.

  • @SethEDITZ.
    @SethEDITZ. Год назад

    When you use a cheat and play the game at the same time don’t you get severe fps drops?

  • @monkeymoney114
    @monkeymoney114 Год назад

    💯

  • @z3n035
    @z3n035 Год назад

    can u make a more advanced video like how to make a driver for a ac protected game, thx

  • @ErlanSerang
    @ErlanSerang 9 месяцев назад

    I learn from your videos

  • @watercat1248
    @watercat1248 7 месяцев назад

    The question what to do if you're game ends up having hiking,
    Hacked in PvP multiplayer game destroy the game for legit Player like my self.

  • @barrettc
    @barrettc Год назад +1

    W VIDEO

  • @homikuwu
    @homikuwu Год назад +1

    damn one minute ago nicee

  • @chillblox8
    @chillblox8 Год назад

    hapy new yeers eev!

  • @fxiqval
    @fxiqval Год назад

    hi egg

  • @ridgens
    @ridgens Год назад

    how i use c++, cuz i have 8.1 wind, and in vs not working for sure like in ur vidios, damn

  • @dzwoneczek9124
    @dzwoneczek9124 Год назад

    good vid

  • @rch5395
    @rch5395 Год назад

    U
    R
    M
    O
    T
    H
    E
    R

  • @mr.no_1130
    @mr.no_1130 Год назад

    He basically explained ASLR bypass on a very basic level

  • @Python-Knowladge
    @Python-Knowladge Год назад

    Thats wrong. U record network, make automation, (write programs helping you), scan ports, use vulnerabilities and change their servers RAM/Database :)

    • @tiqosc1809
      @tiqosc1809 Год назад

      lol that level of hacking is very deep

    • @Python-Knowladge
      @Python-Knowladge Год назад

      @@tiqosc1809 yes true but its the most useful one

  • @lilililiililili6363
    @lilililiililili6363 Год назад +1

    hacking works because something else doesn't

  • @timecop1983Two
    @timecop1983Two Год назад

    Pro tip: Use Ghidra

  • @Vortex_the_Death_Bringer
    @Vortex_the_Death_Bringer Год назад

    tyvm much man!

  • @nightbot3822
    @nightbot3822 Год назад

    😃bypass byfron

  • @_Danie
    @_Danie Год назад +1

    You are the reason i started learning game hacking the way you explain everything is easily understandable keep on uploading videos and i hope 2024 will be a great year for you. HAPPY NEW YEAR🎉❤

  • @grovee1197
    @grovee1197 Год назад

    Thats cool

  • @omkarbhale442
    @omkarbhale442 Год назад

    Can you speak about how to reverse engineer stuff? Searching for numbers like health and ammo is easy, but how do we go about finding player positions? Or how to find the grid in memory in a candy crush style game(assuming it's built for native windows)

    • @zekihvh
      @zekihvh Год назад +2

      Player positions is easy, it's just about assumptions and using other search methods instead of "Exact value". There are tutorials online on how to find unknown values using "increased", "decreased" as comparison metrics.
      About the grid in memory, there probably is a sort of array for all the positions for all the candies on your screen, you have to find that structure and then reverse the way it's built and used. I don't know how Candy Crush works but a good starting point would be to use your points to reverse all the way back to the function that calculated your move as valid, that one definitely receives the grid array somehow, you can go from there.

  • @anthonycooper6927
    @anthonycooper6927 Год назад

    Sien jy van Suid afrika ek wil graag leer van die asb ons moet prt man ek kan baie leer by jou 🙏🏻🙆🏻‍♂️

  • @kgnz.xz.
    @kgnz.xz. Год назад

    MMO game bot next pls

  • @jxkz7
    @jxkz7 9 месяцев назад

    Sir , great content really thank you, can you. Make a playlist for complete beginners to advance level ,please contain long videos , really loved your explanation

  • @Estensioneh
    @Estensioneh Год назад

    can u do trigger bot for minecraft please i need it

  • @DavidTheTech
    @DavidTheTech Год назад

    interesting

  • @Programm3r
    @Programm3r Год назад

    This video made me an expert level hacker with billions of dollars from selling hacks

  • @saidaberda911
    @saidaberda911 Год назад

    We demand course

  • @crrrrc9276
    @crrrrc9276 Год назад

    Can u do a cheat for fortnite or valorant or someother Games not just cs

  • @yuvrajchhatwani
    @yuvrajchhatwani Год назад

    Can teach reverse engineering for converting paid software into free one and moding the game

  • @Gamer_Boy_C-sharp
    @Gamer_Boy_C-sharp Год назад

    Make a video on BlueStacks 5 emulator hacking. And please make a video to find no recoil in a game. Called free fire max

  • @chickennuggetx64
    @chickennuggetx64 Год назад

    MAKE A SPOOFER!

  • @DutchManticore
    @DutchManticore 9 месяцев назад

    I fully understand cheat developers. Finding ways to beat the restrictions that someone is trying to give you is very fun and interesting. The losers that are willing to pay money for cheats however I dont understand. Their psychology is very pathetic. They're pathetic people living pathetic lives that feel equally satisfactied cheating, then they would be working hard to become good at a game. Thats very sad, and unfortunately telling of the state of our society. We have a complete generation that cannot make do without instant satisfaction

  • @Mathieu_u
    @Mathieu_u Год назад

    Goods Video GG

  • @hacker_9589_
    @hacker_9589_ Год назад +1

    Hello anyone here who are able to make game bypass please reply if can

  • @elofarming
    @elofarming Год назад

    hak)))

  • @dred05m61
    @dred05m61 10 месяцев назад +1

    Thanks for this video, CAZZ
    It was a short but necessary explanation ⌨🖱

  • @akakamaz7382
    @akakamaz7382 Год назад

    2:39 wait WHAT?, did u just run cheat engine in a anti cheat´ed game? HOW? did´nt they ban you?

    • @akakamaz7382
      @akakamaz7382 Год назад

      @@Kryst1x what does that even mean?!

    • @vasatruhl
      @vasatruhl 6 месяцев назад

      If you mean that he ran it with cs2, you can use -insecure as a startup flag and it disables vac, but you can only play against bots

  • @St0RM33
    @St0RM33 Год назад

    Please send this video to valve lol