Making a mod menu is easy! (Here's how to make one with Python and Cheat Engine)

  Рет қаралды 859,702

Kian Brose

Kian Brose

Күн бұрын

Пікірлер: 1 200
@KianBrose
@KianBrose 3 жыл бұрын
FAQ: 1. I can't find the pointer to my address!!!! Finding pointers is never easy and newer games tend to have measures against this method, but you can always find the values manually through cheat engine and use those addresses together with the script without the pointer and that will work just fine, the only downside being having to find the address(es) every time the game is closed and opened 2. I'm on mac That's a shame 3. Does the python bit version matter? (64 vs 32 bit) From my testing I have found that you can use 64 bit python to read and write to addresses of both 32 and 64 bit programs, but when trying to use a 32 bit python installation to access a 64 bit program it will not work properly and give you some huge weird values 4. What method usually works on all games? AoB scanning generally works regardless of what game it is, but that requires an entire video of its own and is the method I personally use. For those interested in researching the topic while the video is made, the AoB scanning module I use can be found here: github.com/AlexCatDev/ProcessMemory (Note: this is c#, not python)
@disrael2101
@disrael2101 3 жыл бұрын
that's a perfect video, i can't wait for the AOB tuotrial already.. learned SOO much from this 10mins video..!!! just few questions: 1. how can we bypass when a game block ce from running at the same time? (which is most games i presume) 2. if the preferred base value is already in use in memory how would we figure the correct base address to use the offset to figure the correct value we want to edit?
@KianBrose
@KianBrose 3 жыл бұрын
@@disrael2101 Most games that block ce just check if a program called "Cheat engine" is running in the background, so renaming it often does the trick. More advanced games check if memory is being accessed by a process which shouldn't be allowed according to the game logic which causes the game to shut down, lots of ways. 2. You would need to find a way to find the preferred base value of the program from code without hardcoded calculations which is as far as my research went not possible in python
@disrael2101
@disrael2101 3 жыл бұрын
@@KianBroseVery interesting information, just couple more questions, 1. How the preferred value is gurnautee to work if it may be in use by other programs at the time of loading the game? 2. How people create cheats to multiplayer games where the devs block access to memory outside the allowed list of processes? 3. Can we use ce to find backdoor in softwares / os or even on a website?
@KianBrose
@KianBrose 3 жыл бұрын
​@@disrael2101 1. Nothing is ever guaranteed to work, I'm not sure I understand the question enough to be able to answer it 2. They either reverse engineer the application itself and remove the anticheat or find a way to work around it, I have never done this before so I don't know the specifics 3. If your definition of "backdoor" is a way to gain complete control of software/os/server hosting a website then no. You can however use cheat engine to mess with license keys which is how most keygens are created
@disrael2101
@disrael2101 3 жыл бұрын
@@KianBrose the first question was about the base preferred address, which may be in used by other programs, what can we do in that case, just manually find it each time? 2. Will you teach us to reverse engineering apps in the future vids?
@BloxxingDinosaurus
@BloxxingDinosaurus Жыл бұрын
"There's a variable that controls whether you have pressed the Like Button." And at that moment, a rainbow border suddenly appeared around the Like/Dislike panel. Very cool addition.
@KianBrose
@KianBrose Жыл бұрын
ty
@yeetus5653
@yeetus5653 10 ай бұрын
omg i didnt even know that can be modified!
@vicktorviggo2097
@vicktorviggo2097 10 ай бұрын
exacly what i though so i went to the comments xd
@Magnus_The_Dog
@Magnus_The_Dog 5 ай бұрын
@@KianBrosehow! Legend
@changnong8082
@changnong8082 Жыл бұрын
This video is "scripted" and thus is very clear, and easy to follow. Other authors' videos are often improvised and thus contain too much redundant part and irrelevant talks. To sum up, Kian did a very good job.
@KianBrose
@KianBrose Жыл бұрын
YOu had me in the first part not gonna lie
@BoostedTypist
@BoostedTypist Жыл бұрын
lol same@@KianBrose
@onceGoat
@onceGoat 2 жыл бұрын
Thanks bro finally someone who isn't posting malware or fake stuff, you deserve my subscribe!
@KianBrose
@KianBrose 2 жыл бұрын
Thank you!
@justhuman9551
@justhuman9551 Жыл бұрын
This video is insanely good. Great editing and overall quality. The information is presented in an easy-to-understand way with a visual explanation. Keep up the great content!
@KianBrose
@KianBrose Жыл бұрын
Thank you! Will do
@alex-gg5yr
@alex-gg5yr 11 ай бұрын
Easy to understand my ass
@johnnylego807
@johnnylego807 Жыл бұрын
Wait……. 0:17 HOW DID YOU DO THAT 😂😂 your very creative. I noticed the Like button glow when you said that. Very cool, didn’t even know that was possible.
@KianBrose
@KianBrose Жыл бұрын
rainbow magic
@johnnylego807
@johnnylego807 Жыл бұрын
@@KianBrose Legend 🤣💪
@thedarknessinu3151
@thedarknessinu3151 2 ай бұрын
Feature of youtube since some years xD
@Drag0nSl4yer18
@Drag0nSl4yer18 11 ай бұрын
You know, I am 30 years old and started my programming journey with python a few months back. THIS has to be the most fun/educational/value_packed video out there. Thanks for sharing your knowledge and thanks for helping out with an absolutely other project of mine :D
@KianBrose
@KianBrose 11 ай бұрын
glad to hear that!
@chaxiraxi_ytb
@chaxiraxi_ytb 10 ай бұрын
Hi! Using this pip package makes Read and Writes to process memory really easy and handful. But before finding your video, I managed to do the same by importing the kernel32 DLL from the Windows API using the built-in ctype module. That means that we are directly calling C functions from the Windows API within our Python script. While this is trickier and requires more lines of code to do the same thing, this is a wonderful way to learn how low-level stuff works while still using an easy high-level language like python! This is how I learnt the basics of assembly and memory management using Cheat Engine and creating my own trainer with Python while calling the original Windows API
@KianBrose
@KianBrose 10 ай бұрын
Oh yeah for sure that's a better method, but this one is simpler xD
@Wojtek_1777
@Wojtek_1777 10 ай бұрын
@@KianBrosecan you make a video about making a mod menu have gui with tkinter or pygame please I haven’t been able to get my crappy one to work
@saaofficial5415
@saaofficial5415 8 ай бұрын
I didn't know that Cheat Engine was actually such a complex program considering that that was one of the first apps I downloaded from the internet...
@ByteBeacon9660
@ByteBeacon9660 3 жыл бұрын
Thank you so much for making these tutorials. This is exactly what I'm interested in. I really hope that you continue with the tutorials and maybe make some a little bit more advanced or in depth. Much love for you
@KianBrose
@KianBrose 3 жыл бұрын
I hope I can continue as well
@zdx_1023
@zdx_1023 2 жыл бұрын
Me too i am interested on making gta5 mod menus
@Mortyyy
@Mortyyy Жыл бұрын
@@GameHackingGuru The market for cheats in online games is at an all time high right now. Best way to earn some money on the side.
@Gurnoorthegamer
@Gurnoorthegamer 11 ай бұрын
Is it just me or did the like button glow rainbow when he said there was a variable if I like the video or not
@Sarah-k6y9w
@Sarah-k6y9w 7 ай бұрын
I also saw that, KZbin's a chang'in
@gaonemagagwa5773
@gaonemagagwa5773 7 ай бұрын
Had to go back to see if I really saw it
@rsgmj
@rsgmj 7 ай бұрын
time stamp?
@subiedeeznutz
@subiedeeznutz 7 ай бұрын
there's a variable to tell if you're schizophrenic or not
@grim-xc7ij
@grim-xc7ij 7 ай бұрын
0:16​@@rsgmj
@InVizTempo
@InVizTempo 3 жыл бұрын
I'm so happy you're getting recognition because the way you explain things plus the speed at which you do it is just perfect. Keep up the great work.
@KianBrose
@KianBrose 3 жыл бұрын
Thanks! Will do
@antoninperbosc1532
@antoninperbosc1532 3 жыл бұрын
"things plus the speed at which you do it is just perfect." The topic is interesting but not perfect in my pov. This tutorial could be more interesting if : - He didn't put a very annoying / boring song in background ... believe it or not anybody do not share the same taste for songs /sound ... - He could take his time and force himself to correct his pronunciations dificulties with words sound s / ch instead speaking like "Speedy Gonzales under cocaine " ... believe it or not when you work in a compagnie and/or explain something to other persons if you speak too fast and people have dificulties to understand ... you will have big problem ... - The fact to speed as quick as possible the shootscreen on your tuto is not a good idea too ... if we slow down the video 0.75 some screen stay less than 1 second ... - For this kind of topic this video 25 to 30 minutes could be a good good timing. Interesting tuto but ... and as you know in communication no sentence before this magic word "but" is important ... he has good topics and knows so if he wana skyrocket on youtube he must work on the "shape" of his video and think that his target are persons who wana learn, not people who already knew how to deal.
@KianBrose
@KianBrose 3 жыл бұрын
​@@antoninperbosc1532 Thank you for taking the time to write your advice Honestly the hardest part of any video in my opinion is the music, I just don't know how to do it properly, but I don't think just plain silence is a good idea either... As for the speed, since a video is something that can be paused and played back I'm doing everything as quickly as possible to waste as little time as possible
@itscookies7753
@itscookies7753 2 жыл бұрын
@@KianBrose can u do afk 24/7 on online game
@rxclpolorsnda
@rxclpolorsnda Жыл бұрын
10k Bawat Pamilya
@zoltanhanzel9661
@zoltanhanzel9661 6 ай бұрын
Hey, this tutorial helped me a lot. i been learning AHK (AutoHotKey) for 1 year now, and i have been trying to make mod menu's, and this video caused my success. Thanks bro, you're a legend.
@Stormface16
@Stormface16 3 жыл бұрын
Nice work man! Keep it up, your quality rises so quickly
@KianBrose
@KianBrose 3 жыл бұрын
Thanks!
@littricks3631
@littricks3631 3 жыл бұрын
I have always been interested in reverse engineering.This one's turning out to be my dream channel.Keep it up!
@KianBrose
@KianBrose 3 жыл бұрын
Will do!
@thenoddingturtle
@thenoddingturtle Жыл бұрын
I just started watching this video, so I'm not familiar with the content or the channel in general, but I really appreciate the lack of "Hello my name is X and today we'll be doing Y". Nice and straight to the point.
@KianBrose
@KianBrose Жыл бұрын
Thanks!
@hangup8629
@hangup8629 Жыл бұрын
some corrections: 1:48 - while technically true, its quite misleading in this context. Modern OSs don't actually give you direct access (atleast easily) to the physical memory in your computer, each process is given its own virtual memory space, it is completely empty, only filled with exclusively what the running program requires to operate, and so the addresses that are shown in cheat engine, and the ones you use to write your own mod menus, use these virtual memory addresses. It is entirely possible for processes to have resources allocated at the same virtual address, matter of fact, all system dlls are guaranteed to be located at the same virtual memory address in every process, partially because the OS relies on DLL injection for standard operation. This is also possible for user dlls - when an instance of one is loaded into memory, any subsequent mapping of it will use its base address, though only as long as nothing else is located there, until all instances of this dll are closed (to an extent, this is heavily dependent upon the version of windows, it might forget the base address right away, or it might take a system restart). 7:33 - it should be noted that this way of getting the image base will likely never work in the real world. Starting with windows vista a mechanism called ASLR was introduced. This stands for Address Space Layout Randomization, a mechanism that ensures that the base image, stack and heap address won't always be the same. While at the time it was introduced the enforcement of this feature was quite lax, nowadays modern OSs and compilers are far more aggressive at applying it. It can still be disabled though, by modifying the applications PE headers (and in rare cases changing some settings in windows), which is what the CE tutorial executable does. For more indepth reading about ASLR you can check out - www.mandiant.com/resources/blog/six-facts-about-address-space-layout-randomization-on-windows. also i keep seeing the mention of AoB scanning in the comments to get around ASLR, it should be noted that this is not entirely necessary. To get the base address of an image, internally you can either use GetModuleHandle or CreateToolhelp32Snapshot, while externally only CreateToolhelp32Snapshot will work, for python I'm sure there's libraries that expose this functionality.
@KianBrose
@KianBrose Жыл бұрын
Great comment, it was unfortunately buried in a weird youtube bug that I was notified today was fixed, you hit some kind of spam filter I did not know about most of those things outside of the existence of ASLR, I just knew that while it existed I never encountered it in the wild Personally my main reason for going with AoB nowadays is its just pretty simply and convenient to be honest, doesnt require injection, rarely requires anticheat bypass, simple and functional
@YISTECH
@YISTECH 3 жыл бұрын
well explained! already knew python, just found out how cheat engine works. Looks like a ton of fun
@KianBrose
@KianBrose 3 жыл бұрын
It is!
@sandrawilliams1659
@sandrawilliams1659 2 жыл бұрын
Hey quick question I know it's been a couple months, but I'm currently trying to find a good online class/s to learn python and C++. Could you point me in the right direction? And yes I'm doing my own searching and have asked others, just don't want to waste my time with something that is useless by accidentally going to a wrong websit.
@KianBrose
@KianBrose 2 жыл бұрын
@@sandrawilliams1659 hmmm, honestly i can't recommend anything since the best way to learn is to just start programming on your own
@minhhoangvo4759
@minhhoangvo4759 3 ай бұрын
​@@KianBrosehey how do i freeze number in a edit app?
@EmpireE696
@EmpireE696 8 ай бұрын
I was looking for this topic a lot, you really explained it in the best and simplest way, I am really grateful to you. Good luck
@KianBrose
@KianBrose 8 ай бұрын
Glad it was helpful!
@ScreamingManiac
@ScreamingManiac Жыл бұрын
I've used cheat engines like the ones you find on wemod before but its cool to see what a cheat engine is actually doing. I studied abit of computer structure in college so I was aware how computers store memory but its interesting to see how memory can be easily manipulated.
@KianBrose
@KianBrose Жыл бұрын
indeed! It's just knowing da wae with python
@greysky2933
@greysky2933 Жыл бұрын
@@KianBrose I see what u did there
@Hydrax_Real
@Hydrax_Real Жыл бұрын
Anyone Realize when he said like the like button turned chroma colar
@Azertyyys
@Azertyyys 11 ай бұрын
Cheat engine = adware in installer wemod = monthly payment just dont use cheats at this point
@Cainny
@Cainny 11 ай бұрын
Yes because those are definitely the only two options to cheat.@@Azertyyys
@Jdeadevil
@Jdeadevil Жыл бұрын
Your quick explanation as to what pointers are is better than any tutorial I've seen yet. But I already know how to use CE so maybe I'm a little biased, but other tutorials have a bad habit of explaining how to do it without giving a simple explanation first.
@sushantpatil7950
@sushantpatil7950 3 жыл бұрын
We need more Python bots please ❣
@KianBrose
@KianBrose 3 жыл бұрын
Theres so many videos to make xD
@walidtlm2788
@walidtlm2788 3 жыл бұрын
@@KianBrose bro just one question if u know PUBG MOBİLE is there any chance that anyone can hack the UC in it or let me say the units that used to inapp purchase
@KianBrose
@KianBrose 3 жыл бұрын
@@walidtlm2788 probably not to be honest
@hugowinnberg
@hugowinnberg 3 жыл бұрын
@@walidtlm2788 money is stored on the servers and then you need to hack the servers and like aimbot is memory that's stored on your computer that's something you can use for example aimbot
@racapadexxa_
@racapadexxa_ Жыл бұрын
​@@walidtlm2788 You can change the ammount of money you have but you won't be able to use them since the server checks your real balance to make purchases. In the end is like Monopoly cash
@kubamaly4070
@kubamaly4070 Жыл бұрын
0:16, when he says "the like button" the like button actually glows :DD
@KianBrose
@KianBrose Жыл бұрын
rainboow
@r0x304
@r0x304 2 жыл бұрын
Holy crap!! This is wonderfully put and so detailed at a good speed. Love you man!
@KianBrose
@KianBrose 2 жыл бұрын
Glad you enjoyed it!
@Breadn
@Breadn 4 ай бұрын
Thanks for keeping the pace up while keeping it easy to understand, one of the best explanations of these concepts.
@8BitGamerYT1
@8BitGamerYT1 Жыл бұрын
Insanely productive video. No bs
@ፔ̇_ፔ̇
@ፔ̇_ፔ̇ Жыл бұрын
i love how the like button turns rainbow when you say like button
@KianBrose
@KianBrose Жыл бұрын
ty
@storyofbo
@storyofbo 3 жыл бұрын
This is amazing! Where did you go to learn all this kind of stuff? School, google, forums, friends?
@KianBrose
@KianBrose 3 жыл бұрын
Google, lots and lots of google I find modern education to be sort of irrelevant, just learn what you want as you go by looking for it
@LegendaryITA
@LegendaryITA Жыл бұрын
@@KianBrose W
@xtdycxtfuv9353
@xtdycxtfuv9353 Жыл бұрын
@@KianBrose🤨
@jytdjkcjmliyukdthm991
@jytdjkcjmliyukdthm991 6 ай бұрын
Great video! I know nothing about pointers but you managed to make me understand it all
@raisincains337
@raisincains337 Жыл бұрын
The way you find pointers is much faster than the way i used to!
@succcusckk
@succcusckk 11 ай бұрын
Thanks for the tutorial man!, i made a executer runner for roblox thanks to this vid
@KianBrose
@KianBrose 11 ай бұрын
Np!
@hardmave
@hardmave Жыл бұрын
You dude, nice video! i know you're probably not gonna respond, but do you have the link to download cheat engine. Really cool video, just earned a sub🤗
@KianBrose
@KianBrose Жыл бұрын
Ty! It's on cheatengine.org I think
@hardmave
@hardmave Жыл бұрын
@@KianBrose All on cheat engine has viruses with them. And i dont want to take that risk. Do you have a clean version you can maybe send
@KianBrose
@KianBrose Жыл бұрын
www.cheatengine.org/ Literally that, it's not a virus, just a false positive, just don't install the adware when installing it
@مصطفىغالى-ط6ج
@مصطفىغالى-ط6ج 2 жыл бұрын
I just watched ur video now and it was wat av been looking for bro..... thanks champ
@KianBrose
@KianBrose 2 жыл бұрын
No problem 👍
@m3lar
@m3lar Жыл бұрын
6:35 what if is a .dll instead of an .exe????
@KianBrose
@KianBrose Жыл бұрын
em should work the same
@HxZyBoy
@HxZyBoy Жыл бұрын
finally i found another swedish tech pro, keep up❤
@KianBrose
@KianBrose Жыл бұрын
Thanks! Will do
@DexNeXuS1
@DexNeXuS1 2 жыл бұрын
Hey there. I was wondering how I would make a python script that started running when a pointer value changed. Like when your health drops it automatically run. Can you also write that pointer value to a text file?
@KianBrose
@KianBrose 2 жыл бұрын
Theoretically you can put the statement that reads the value of the address in an infinite while loop that will only stop once the value is set to something you want, here's a rough theory behind it: var = False while not var: pointer_val -read the value of your pointer here- if pointer_val == something_you_want: var = True - do something - hope that's understandable As for writing a string to a text file: file_object = open('file.txt', 'a', encoding='utf-8') file_object.write(f'{pointer_variable} ') file_object.close()
@DexNeXuS1
@DexNeXuS1 2 жыл бұрын
@@KianBrose that’s brilliant yeah that would work really well I’ve just started doing coding and I’m not great at it. Made a randomiser that never repeats until it’s used up numbers 1-50 then restarts. A few read and write things. Lists and stuff but yeah very basic but I’m wanting to do a few more things. This is so helpful thankyou. Your video was very well done by the well really insightful.
@DexNeXuS1
@DexNeXuS1 2 жыл бұрын
@@KianBrose also. Sorry again. Would I have to start the python script initially? And how would I stop the while loop if I’ve made it so it would run constantly (whole duration of gameplay). If that makes sense. Is there another way to stop it.
@KianBrose
@KianBrose 2 жыл бұрын
@@DexNeXuS1 glad you liked it!
@KianBrose
@KianBrose 2 жыл бұрын
@@DexNeXuS1 yes, you can use while loops with conditions that will eventually break when something happens as I showed in the first snippet
@AnthonySegarra-wt9wq
@AnthonySegarra-wt9wq 9 ай бұрын
I am a CS student and have never heard pointers explained better than in your 15 second breakdown
@KianBrose
@KianBrose 9 ай бұрын
lmao that's sad
@marioyt11
@marioyt11 2 жыл бұрын
Bro we need laptop to do mod or we can do on any device
@KianBrose
@KianBrose 2 жыл бұрын
You do need a PC to make the mod yes
@marioyt11
@marioyt11 2 жыл бұрын
@@KianBrose tanks bro and happy easter
@leothao6560
@leothao6560 Жыл бұрын
Well, that variable that made the like button shine made me auto liked the video.
@KianBrose
@KianBrose Жыл бұрын
magic
@user-jg6kg1hn1k
@user-jg6kg1hn1k 2 жыл бұрын
True fact: he is in the same cave as tony stark in iron man 1
@KianBrose
@KianBrose 2 жыл бұрын
Lol, yep my walls are literal big rocks
@EMSDemon
@EMSDemon Жыл бұрын
ok the like button lighting up rgb when he mentioned it was sick
@KianBrose
@KianBrose Жыл бұрын
rainbow magic
@aubreydebruyn84
@aubreydebruyn84 Жыл бұрын
The best subscription request.
@KianBrose
@KianBrose Жыл бұрын
Lol
@TheNikolaThing
@TheNikolaThing 10 ай бұрын
One cool thing to know, the offsets are being written in python from down to up, or in programming terms, from right to left(least significant bit to most significant bit) due to windows systems being little endian. Some extra knowledge to get you to explore system memory and its core concepts :)
@0797cjm
@0797cjm 2 жыл бұрын
Your living space is rad 🤙🏼
@KianBrose
@KianBrose 2 жыл бұрын
Thanks, my cave is nice and cozy
@G-ö-k-b-ö-r-ü
@G-ö-k-b-ö-r-ü 11 ай бұрын
Helpful video after I watched the video I found out that there is subscribe variable which I executed immediately :D
@KianBrose
@KianBrose 11 ай бұрын
ty"!
@angetlx883
@angetlx883 2 жыл бұрын
BROTHER, YOU ARE THE BEST!!! You oooh really helped me!! THANK YOU VERY MUCH!
@KianBrose
@KianBrose 2 жыл бұрын
np
@marcoisplaying3859
@marcoisplaying3859 2 жыл бұрын
Yoo I learned, appreciate the knowledge you share Liked and subscribed! Keep it up Kian.
@KianBrose
@KianBrose 2 жыл бұрын
Thanks!
@deadlyhallowed4208
@deadlyhallowed4208 3 ай бұрын
Between kian brose and swashed my cheat engine skills just get better and better
@KianBrose
@KianBrose 3 ай бұрын
ic
@deadlyhallowed4208
@deadlyhallowed4208 3 ай бұрын
@@KianBrose you have good tutorials I liked your auto clicker script video also lol I have learned alot from your videos
@Stefikiks
@Stefikiks Жыл бұрын
Anyone notice when he says "Theres a variable that controls whether you have pressed the like button" at 0:18 that the like button has a rainbow going outline?:)
@dantethewebdev2818
@dantethewebdev2818 Жыл бұрын
omg, i didn't see your comment when ever i commented
@afhartuaeru
@afhartuaeru Жыл бұрын
really nice tutorial u explained everything very well and the speed of which you were explaining is perfect :)
@KianBrose
@KianBrose Жыл бұрын
thanks! Glad you liked da speed
@MrJestriktheJester
@MrJestriktheJester 3 жыл бұрын
YES!!!! FINALLY THE LEGEND HAS COME BACK TO PUBLISH A NEW VIDEO!!!! I WAITED SOOOOOOO LONG!!!! I LIKE YOUR VIDEOS BECAUSE IT'S SO EASY TO UNDERSTAND!!!!
@KianBrose
@KianBrose 3 жыл бұрын
Ty!
@farmacialasmariasca6838
@farmacialasmariasca6838 2 жыл бұрын
good work king, love you
@KianBrose
@KianBrose 2 жыл бұрын
Ty
@KrusherMike
@KrusherMike Жыл бұрын
Bruh, I've been grifting through all this. Loving your breakdowns. 🤙
@KianBrose
@KianBrose Жыл бұрын
thank you!
@N1K0420
@N1K0420 Жыл бұрын
wow didnt understand anything although you explained it perfectly and watching your cheat videos is damn entertaining, hope you get your playbutton soon
@KianBrose
@KianBrose Жыл бұрын
lol ty
@HarryClapp
@HarryClapp Жыл бұрын
At 0:15 when he said like button my like button flashed rainbow thats crazy and im pretty sure its a feature cause i tested multiple times is this not new???
@KianBrose
@KianBrose Жыл бұрын
M a g I c
@daddyofalltrades
@daddyofalltrades 3 жыл бұрын
Beautiful stuff 🔥 Need more of this content please !
@KianBrose
@KianBrose 3 жыл бұрын
Will do! Takes a while to make these xD Not because theyre thaaat hard to make, but because I am a Certified Expert Procrastinator™
@kinggio4553
@kinggio4553 2 жыл бұрын
@@KianBrose love it bro thank you ❤️
@tom62926
@tom62926 2 жыл бұрын
great vid man!
@KianBrose
@KianBrose 2 жыл бұрын
Thanks!
@luxosgamer1998
@luxosgamer1998 Жыл бұрын
Cool bro! greetings from Central America
@coollapiz3570
@coollapiz3570 Жыл бұрын
Thanks for the knowledge you gave me I am going to use to bypass anti cheats and develop malicious cheats for games, thanks! now im learning kernel level injection
@KianBrose
@KianBrose Жыл бұрын
bruh
@MelonScripter
@MelonScripter 10 ай бұрын
really helpful!!, made my own menu for a sp game
@KianBrose
@KianBrose 10 ай бұрын
nice!
@AntonisMatakos
@AntonisMatakos Жыл бұрын
What I want to ask you (that curiously nobody else did) is where did you shoot this video? A 60-80cm stone wall with a slanting window is a crazy place to be that's either a very old village house or a bunker!!
@KianBrose
@KianBrose Жыл бұрын
Reinforced basement lmfao I unironically live in a basement
@mazarinee
@mazarinee Жыл бұрын
A neat system I found was when I was introduced to Roblox hacking. You can scan for variables being used (adaptation of remotes) and eventually find the one you want by doing the action repeatedly until the variable shows up. You can create simple code to modify it then.
@KianBrose
@KianBrose Жыл бұрын
indeed
@Catalysm
@Catalysm Жыл бұрын
So you can modify variables in Roblox games with cheats?
@UhmMusicBoi
@UhmMusicBoi 11 ай бұрын
at the first time i watched it. When you explain the variable of how many likes this video has. The like and dislike vote this GLOWS RAINBOW. HOW...
@KianBrose
@KianBrose 11 ай бұрын
magic!
@galisma
@galisma Жыл бұрын
Nice video
@KianBrose
@KianBrose Жыл бұрын
Thanks!
@Travis-hb2bl
@Travis-hb2bl 3 жыл бұрын
Kians back again with his "educational purposes" video
@KianBrose
@KianBrose 3 жыл бұрын
ofc
@DaZe1Cinema
@DaZe1Cinema Жыл бұрын
Teaching me new things everyday
@KianBrose
@KianBrose Жыл бұрын
Nice
@johndeaux8815
@johndeaux8815 Жыл бұрын
Thanks, this brings me back to getting 2.47 billion dollars in asphalt 8 in high school 😂 we would play that game at school as it was one of the only ones that would run on the laptops both hardware wise and network wise
@KianBrose
@KianBrose Жыл бұрын
ayy the max 32 int value, 2.147, nice!
@dantethewebdev2818
@dantethewebdev2818 Жыл бұрын
Anyone else notice when he says, "there is a variable that checks whether you have pressed the like button or not" the like button border lights up as a rainbow border
@KianBrose
@KianBrose Жыл бұрын
rainbow magic
@albertgrzegrzoka7033
@albertgrzegrzoka7033 4 ай бұрын
Im wondering what is the name of this tool that displays the memory addresses and you can see how they are changing in real time, 1:41
@KianBrose
@KianBrose 4 ай бұрын
cheat engine
@tinsku332Xd
@tinsku332Xd 11 ай бұрын
Very interesting video :D
@MaskedTeenGamer
@MaskedTeenGamer Жыл бұрын
Even i dont use mod menus and not planning on it its helpful to learn codeing
@superdepressif6047
@superdepressif6047 Жыл бұрын
It was very easy to understand I like how you explain using analogies! I'm curious about game hacking and it's not easy to find a good video like this
@KianBrose
@KianBrose Жыл бұрын
glad to hear that!
@xAESEC
@xAESEC 8 ай бұрын
Thx, a great explanation video, espacially the offset-part
@KianBrose
@KianBrose 8 ай бұрын
Glad it was helpful!
@schnaufenderzeppelin3629
@schnaufenderzeppelin3629 2 жыл бұрын
whats the programm could where you see whats the ram writing in it? on 1:36?
@KianBrose
@KianBrose 2 жыл бұрын
Cheat engine
@lenoirx
@lenoirx Жыл бұрын
Interesting, and very informative. Good job!
@KianBrose
@KianBrose Жыл бұрын
Thank you!
@Mrawesome100046
@Mrawesome100046 3 жыл бұрын
Great vid. 👍🏾
@KianBrose
@KianBrose 3 жыл бұрын
Thanks!
@thekingofterrorz
@thekingofterrorz Жыл бұрын
HOW DID YOU MAKE THE LIKE BUTTON DO THAT AT 0:17???
@KianBrose
@KianBrose Жыл бұрын
By the power of rainbow magic
@thekingofterrorz
@thekingofterrorz Жыл бұрын
@@KianBrose Ah that makes sense now, thank you!
@trapoganda1660
@trapoganda1660 7 ай бұрын
I’m high asf and you taught me more in 20 minutes than school ever did.
@KianBrose
@KianBrose 7 ай бұрын
nice
@SirWashy
@SirWashy 26 күн бұрын
So im trying to do something similar with a game on a jailbroken PS4. When i find the address for changing money, it allows me to change it to whatever i want. But like you're saying in the video. The address isnt static. So whenever i close the game and reopen it, i have to redo all previous steps. I'd like to make a trainer of some sorts but whenever I search for a static address it gives me one, but it ends up controlling or triggering other things besides just in game currency. Like causing the screen to turn white or just not loading assets into the game anymore. Doesnt crash the game at all. Any advice? Im pretty new to all of this but im super willing to learn.
@KianBrose
@KianBrose 22 күн бұрын
I would recommend looking into AOB (Array of Bytes) scanning This is a method that does not require pointers at all and only requires a "pattern" of data to exist, for example if you find the memory region containing the health of a player, the values near it will most likely always be the same for hardcoded parameters Then by doing a scan for ?? AA BB CC DD ?? ?? FF ?? ?? etc, you find the "pointer"
@huzaifakhan6474
@huzaifakhan6474 2 жыл бұрын
Love from Lovelak !!
@KianBrose
@KianBrose 2 жыл бұрын
ty
@AniWorld_HD
@AniWorld_HD Жыл бұрын
Nice work ! :D I will try it later with Ratopia
@KianBrose
@KianBrose Жыл бұрын
gl
@cmaciosek8480
@cmaciosek8480 3 жыл бұрын
Love your content! Keep up the greate work!
@KianBrose
@KianBrose 3 жыл бұрын
Thank you! Will do!
@jika8895
@jika8895 3 жыл бұрын
Why you don't get much views? This was amazing
@KianBrose
@KianBrose 3 жыл бұрын
Because as youtube decided to remove the dislike button, people are now unable to judge the authenticity of educational content on the platform which naturally repels viewers from either looking for it or spending time figuring out whether it was good or not
@ForeignMadeIt
@ForeignMadeIt Жыл бұрын
Hey I stumbled upon your channel a while ago & I learned a ton! thank you. I been on this tutorial for a while. So far I can get the baseaddress to print the value but with offsets it cant seem to find it. Do i keep trying different offsets from the addresses loaded up?
@KianBrose
@KianBrose Жыл бұрын
In modern games you need to do the pointer scans at least a few dozen times before getting rid of most false positives, but since for demo purposes I used the training program i only had to do it a couple of times
@ForeignMadeIt
@ForeignMadeIt Жыл бұрын
@@KianBrose ok makes sense. thank you. It's definitely a tedious process. Im going to try and do a python script to automate it all.
@hash_81
@hash_81 2 жыл бұрын
Good, thanks for share!
@KianBrose
@KianBrose 2 жыл бұрын
np!
@clammyclam
@clammyclam Жыл бұрын
2:45 is the point in the video where my brain shut down
@KianBrose
@KianBrose Жыл бұрын
Mission failed,I explained it too harshly
@Youtubeusermann
@Youtubeusermann Жыл бұрын
Nice video, easy sub
@KianBrose
@KianBrose Жыл бұрын
Thank you!
@Dgubz11
@Dgubz11 Ай бұрын
help i did everything but with a float and instead of it being "game.exe" it brought up a .dll and it wouldnt work unless it was an exe and when i ran the code it said the value was too large or something
@KianBrose
@KianBrose Ай бұрын
ah the code pointer being too large is a ctypes error, it is fixable but i forgot how to do it
@shillenzez549
@shillenzez549 3 жыл бұрын
your job is amazing :Dd
@KianBrose
@KianBrose 3 жыл бұрын
Thanks!
@Cain532.
@Cain532. Жыл бұрын
Great tutorial! Another way you can do pointer scans is manually. After you activated that breakpoint you can see the address is stored in ebx. If you open the registers and look at ebx, then scan for that pointer value, save the results then re-launch the game. Set another breakpoint on that same function command and then update your search. This generates a substantially smaller pool of results and also takes a great deal less time! Will you be going over how to call/alter game functions? or maybe alter the assembly code instructions?
@KianBrose
@KianBrose Жыл бұрын
thats ctually fairly advanced usage of cheat engine i dont even know how to do yet lol it does sound interesting,b ut atm im trying to like move away from tutorials into more "educational entertainment" so it's highly unlikely in regards to pointers, i dont really use them anymore, i was unable to use pointers with emulated processes like bluestacks so moved to another method called AoB scanning which ive used ever since
@Cain532.
@Cain532. Жыл бұрын
@@KianBrose AOB is very handy but can be time consuming especially if the memory ranges are MASSIVE. There are some fairly advanced techniques that use AOB to scan for a function call which returns the desired pointer to a struct. I used to rely HEAVILY on memory manipulation (what you showed) with AOB scans in the PS3/Xbox 360 days. Still useful! All the same, I'd love to see what sort of educational stuff you can come up with!
@KianBrose
@KianBrose Жыл бұрын
@@Cain532. indeed, i remember my first aob menu taking a solid 5 minutes to scan for values even with methods like taking in 4086 (dont remember exact byte size, multiple of 8) bytes of memory to read at once to minimize memory reads and other methods like that, i also find it quite a lot simpler than pointers once you get the hang of them
@Cain532.
@Cain532. Жыл бұрын
@@KianBrose haha Oooh I remember those days too... Awesome stuff man :) Definitely looking forward to seeing what I can learn from you!
@crispy.caesus
@crispy.caesus Жыл бұрын
damn, this is really interesting, thanks
@KianBrose
@KianBrose Жыл бұрын
np!
@lucasanddre
@lucasanddre Жыл бұрын
You rocked in this tutorial! 🤟
@KianBrose
@KianBrose Жыл бұрын
Thank you!
@87bocademivida
@87bocademivida 3 жыл бұрын
Nice vid. PS: You look like Steve Smith from American Dad,
@KianBrose
@KianBrose 3 жыл бұрын
Lol
@chesesuz3784
@chesesuz3784 Жыл бұрын
did you make the like button light up when you talked about it?
@KianBrose
@KianBrose Жыл бұрын
perhaps
@XStriver
@XStriver Жыл бұрын
that like button was awesome
@KianBrose
@KianBrose Жыл бұрын
ty
@samuelraposo4186
@samuelraposo4186 5 ай бұрын
Remember you cannot modify the servers neither access them but you can execute it if an game file executes junk by tricking it to execute something u want. I know u will probably say something like YeS yOU cAn EXECUTE, im talking about the server side, also use kernel level systems against kernel level anticheats also if an game uses an kernel level anti cheat DO NOT USE the windows api
@Luke24666
@Luke24666 11 ай бұрын
WHY DOESMY LIKE BUTTON GLOW WHEN HE SAYS IT?! EVERY TIME TOO
@KianBrose
@KianBrose 11 ай бұрын
Magic
@Cracko298
@Cracko298 Жыл бұрын
That's pretty cool, KZbin highlighted your Light/Dislike Buttons @00:14 if it's not liked/disliked.
@KianBrose
@KianBrose Жыл бұрын
r a i n b o w
@thehonestdude1067
@thehonestdude1067 Жыл бұрын
What an amazing video
@KianBrose
@KianBrose Жыл бұрын
thank you
@nikfun2802
@nikfun2802 Жыл бұрын
Hi thanks for the great video i just have a problem when i print the value i only get 0 in the console but if i enter the address instead of baseaddress and offsets i get the correct result. why? and have you a idea how to fix this?
@KianBrose
@KianBrose Жыл бұрын
The address itself will always be correct that particular time, but if you get 0 it means the base address or offsets are wronf
Multiplayer Cheating, explained
7:50
Kian Brose
Рет қаралды 1,3 МЛН
Cracking Software with Reverse Engineering 😳
8:01
nang
Рет қаралды 1,7 МЛН
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 44 МЛН
How I make bots using python (educational)
17:12
Kian Brose
Рет қаралды 567 М.
Suing Minecraft Because They Broke The Law & Pissed Me Off
15:09
Kian Brose
Рет қаралды 3,1 МЛН
Why You NEED a DRIVER (for hacking games)
8:03
cazz
Рет қаралды 470 М.
I beat rigged giveaways with a bot
3:43
Kian Brose
Рет қаралды 2,3 МЛН
How to Crack Software (Reverse Engineering)
16:16
Eric Parker
Рет қаралды 769 М.
Beating a Pay to Win game with a bot
5:09
Kian Brose
Рет қаралды 2,3 МЛН
Python Game Hacking Tutorial - Simple External Cheat
13:28
Guided Hacking
Рет қаралды 161 М.
3 Hours vs. 3 Years of Blender
17:44
Isto Inc.
Рет қаралды 6 МЛН
I tried to make a Valorant AI using computer vision
19:23
River's Educational Channel
Рет қаралды 1,5 МЛН
Chinese app design: weird, but it works. Here's why
10:51
Phoebe Yu
Рет қаралды 575 М.