UNBREAKABLE OFFSETS with a NETVAR MANAGER - CSGO RADAR HACK

  Рет қаралды 26,344

cazz

cazz

Күн бұрын

In this video we create an internal CSGO Netvar Manager so that you never have to update your offsets again. We also use hashing to make it as efficient as possible. We accomplish this by looping through CSGO's ClientClasses and RecvProps/Tables. This combined with an interface manager is the basis of any good internal hack. Please enjoy the video!
💎 Source code is available for my Patreon members!
/ cazzwastaken
💎 Join our community over on Discord!
/ discord
→ Twitter: / cazzwastaken
→ GitHub: github.com/cazzwastaken
→ Email: cazzwastaken@gmail.com
🕙 Timestamps 🕙
0:00 - Intro
1:00 - Project setup & DllMain
4:18 - Getting Interfaces
6:30 - Getting DataTable
7:28 - Getting FNV hasher
8:16 - Netvar.h
13:40 - Netvar.cpp
20:38 - Making Radar hack
24:34 - Testing
25:25 - Outro
📝Resources 📝
→ FNV Hashing: pastebin.com/e8J0cR6D
→ Data Table: pastebin.com/rjiBsjwK
→ Interfaces: • CALL CSGO FUNCTIONS WI...
→ First Internal: • YOUR FIRST INTERNAL - ...
⚡See More ⚡
Internal Menu: • IMGUI INTERNAL DIRECTX...
Aimbot: • MAKE AIMBOT IN 10 MINUTES
No Recoil: • REMOVE RECOIL IN CS:GO
Glow ESP: • MAKE GLOW ESP IN 10 MI...
Skin Changer: • SKIN CHANGER IN 10 MIN...
Shout out to Chris for the thumbnail 💖
Follow him here: / @lucid_horizons

Пікірлер: 64
@YLJ2K
@YLJ2K 2 жыл бұрын
“literally a fucking coach roach touch my fucking foot that’s fucking disgusting… continues coding”
@cazz
@cazz 2 жыл бұрын
I'm so glad someone mentioned that haha, that dirty mother-fucker crawled on my foot and spooked the shit out of me - but we stay on the grind!
@user-rg3kf3ty1p
@user-rg3kf3ty1p 2 жыл бұрын
when lmao?
@tf6017
@tf6017 2 жыл бұрын
@@user-rg3kf3ty1p ur a bit late
@user-rg3kf3ty1p
@user-rg3kf3ty1p 2 жыл бұрын
@@tf6017 why?
@unsigned_long_long
@unsigned_long_long 2 жыл бұрын
this had me dying first thing i did was look in the comments when i heard that lmfao
@Josus
@Josus Жыл бұрын
Is amazing how amazing you take care of the small details!
@ningu1036
@ningu1036 2 жыл бұрын
bro i was waiting for you to post thank you!!
@komaoff4240
@komaoff4240 2 жыл бұрын
I was waiting for you to post omg it feels so good when you post one like this, also Hello from France haha
@cazz
@cazz 2 жыл бұрын
Hello!!
@P0K0
@P0K0 2 жыл бұрын
Owwooowo that's pretty much intelligent work ≥≤
@mrboblox4444
@mrboblox4444 2 жыл бұрын
keep it up man
@cazz
@cazz Жыл бұрын
Always!
@Mr.top10.
@Mr.top10. Жыл бұрын
Everything we want is here 😃❤️
@Trandunz
@Trandunz Жыл бұрын
Hi Cazz, I have been following along with your tutorials and all is swell. I have managed to dump all of the netvars to a text file however there seems to be everything but dwforcejump. Is there a way to get this offset withought using a dumper?
@kanutaro3426
@kanutaro3426 Жыл бұрын
This is literally the most elegant code I've seen. I didn't even know that was possible. Honestly this keeps inspiring me to get better so I can reach that level soon
@egg-mv7ef
@egg-mv7ef 11 ай бұрын
you have not seen much code
@aufgosh8251
@aufgosh8251 2 жыл бұрын
Hitbox selector with netvars next please :)
@Glor1fy
@Glor1fy 2 жыл бұрын
i love you
@Kinito168
@Kinito168 2 жыл бұрын
Thanks
@zionsx1
@zionsx1 2 жыл бұрын
Do you get the offset names from hazedumper?
@cazz
@cazz 2 жыл бұрын
github.com/danielkrupinski/Osiris/blob/master/Osiris/SDK/Entity.h#L173 you can find some here, but yeah, hazedumper will provide the netvar name, but not the class
@zionsx1
@zionsx1 2 жыл бұрын
@@cazz thanks big man
@ccdevil773
@ccdevil773 Жыл бұрын
hi Cazz, i got an error message when tried to inject the dll. Error code 0xC0000135
@furno6909
@furno6909 2 жыл бұрын
if it's internal, it means it's easy to detect by anti cheat?
@cazz
@cazz 2 жыл бұрын
Nope, not really.
@cazz
@cazz 2 жыл бұрын
@@snakwastaken not at all :) they are equally as "bannable"
@hessfire
@hessfire Жыл бұрын
it seems to stuck in a infinite loop after i call SetupNetvars function, what can be wrong?
@cazz
@cazz Жыл бұрын
We call that "recursion" - the function calls itself. What you are experiencing is like a loop of death where the loop condition is never met so the loop never breaks. Make sure your if statements are correct.
@hessfire
@hessfire Жыл бұрын
@@cazz yeah, i accidentally used ‘=‘ sign instead of ‘==‘ in the one “if” statement, thanks for that fast replying
@biigsmokee
@biigsmokee Ай бұрын
In my case it was my for loop in SetupNetvars(), I didn't do clientClass = clientClass->next just clientClass->next Thank you cazz
@Nioxs
@Nioxs 2 жыл бұрын
Thats only a thing for source engine games, right?
@cazz
@cazz 2 жыл бұрын
correct
@hagefale_original
@hagefale_original Жыл бұрын
bro i have no idea what virtual functions are why you using them i have so much questions.
@Jack-ss4re
@Jack-ss4re Жыл бұрын
Why use #define in NETVAR function?
@ambosdead
@ambosdead 8 ай бұрын
does the netvar manager for source stil work w source 2? ( for cs2)
@cazz
@cazz 8 ай бұрын
The code in this video will not work for CS2, unfortunately.
@ambosdead
@ambosdead 8 ай бұрын
didnt think it would :/ ill look for a source 2 netvar manager tho cuz updating offsets is driving me to insanity@@cazz​
@stdint.h
@stdint.h 10 ай бұрын
16:55 Why "&table->props[]" instead of "table->props[]"? The "table" is a pointer, and the "props" member of the table should be a pointer too.
@stdint.h
@stdint.h 10 ай бұрын
My bad, you are getting the address of the prop at index i of the props array (props ptr) inside the table struct
@fozzy9731
@fozzy9731 2 жыл бұрын
first
@fozzy9731
@fozzy9731 2 жыл бұрын
nvm
@cazz
@cazz 2 жыл бұрын
@@fozzy9731
@Miguel1337x
@Miguel1337x Жыл бұрын
my external esp does the same thing it takes roughly 24 hours (wich i dont know why) but it works everytime with 0 detections or red trust
@Ace-vq7jm
@Ace-vq7jm Жыл бұрын
wdym it takes 24 hrs
@Yuze408
@Yuze408 2 жыл бұрын
external version pls👀👀
@cazz
@cazz 2 жыл бұрын
good idea :)
@Nadabauty
@Nadabauty Жыл бұрын
@Cazz please add the subtitle to the videos, thank you 🏠
@gamingwithdjole570
@gamingwithdjole570 2 жыл бұрын
Hello sir, can you make video about making valorant cheat? (or you cant?)
@ederathegoat2746
@ederathegoat2746 2 жыл бұрын
you can but their anti-cheat is one of the best because of it being kernel unlike VAC(which csgo uses), plus it starts before windows boots up so they can actually scan every single process and ect. Only way to bypass it is by writing a kernel driver which take AGES to fully learn and complete because any mistake leads to a BSOD(Blue Screen of Death)
@MegaChickenPunch
@MegaChickenPunch 2 жыл бұрын
Can you please do a tutorial on CHAMS in hunt showdown?
@LeetFerret
@LeetFerret 11 ай бұрын
Hunt is protected by EAC. Do not learn how to hack on games with strong anti-cheat
@salzlord
@salzlord 11 ай бұрын
@@LeetFerretI mean with a kernel driver he should be good. But good luck trying to code one..
@LeetFerret
@LeetFerret 11 ай бұрын
@@salzlord yes that's my point. If he does Hunt he will have to learn how to bypass EAC, not just how to make chams. Much easier to learn to make chams on games that have no anti-cheat first and then learn bypassing after. I'm sure you'd agree
@aaron6807
@aaron6807 Жыл бұрын
Holy fucking shit
@cazz
@cazz Жыл бұрын
Holy balls
@copypaste6401
@copypaste6401 2 жыл бұрын
bro pls make fortnite cheats
@ederathegoat2746
@ederathegoat2746 2 жыл бұрын
you cant because of EAC(Easy Anti-Cheat) and BE(BattlEye) but both launch randomly depending on your account, you might get BE or EAC but it will never always for like ages stick as one of them only launching plus both are kernel meaning you need to make your cheat kernelk and not usermode which means your need to research how kernel drivers work plus reverse EAC and BE because like i stated its more random depending on your account. But good luck on learning because nothing is impossible and no one is stopping you, despite what people say continue doing what you like.
@mohammadbaqer8946
@mohammadbaqer8946 2 жыл бұрын
This hack work on faceit?
@yousafkhan481
@yousafkhan481 2 жыл бұрын
hi, i need some help, about dll proxy if you know , make discord server for free to help each other
@cazz
@cazz 2 жыл бұрын
not sure what you mean, join my discord though
IMGUI EXTERNAL OVERLAY TUTORIAL
31:16
cazz
Рет қаралды 91 М.
I used CS:GO tricks you NEVER use..
8:34
NadeKing
Рет қаралды 604 М.
She ruined my dominos! 😭 Cool train tool helps me #gadget
00:40
Go Gizmo!
Рет қаралды 35 МЛН
How to bring sweets anywhere 😋🍰🍫
00:32
TooTool
Рет қаралды 40 МЛН
New Gadgets! Bycycle 4.0 🚲 #shorts
00:14
BongBee Family
Рет қаралды 17 МЛН
HOW AIMBOTS WORK
8:36
cazz
Рет қаралды 964 М.
Block EVERY Online Ad with THIS - Pi-Hole on Raspberry Pi
16:03
Linus Tech Tips
Рет қаралды 4,5 МЛН
Creating a Drawing Software: Window Setup (C++ & OpenGL)
7:42
MMORPG Bot Reverse Engineering and Tracking
9:46
LiveOverflow
Рет қаралды 670 М.
47% of CSGO Pros Use This Mouse...🤔
5:45
DiamondLobby Reviews
Рет қаралды 268 М.
The (almost) perfect Neovim setup for Node.js
20:37
Dreams of Code
Рет қаралды 69 М.
I tried to make a Valorant AI using computer vision
19:23
River's Educational Channel
Рет қаралды 1,4 МЛН
TEMPLATES in Modern C++
9:31
cazz
Рет қаралды 25 М.
Smurfing In Silver 1
7:23
Waffle
Рет қаралды 688 М.
She ruined my dominos! 😭 Cool train tool helps me #gadget
00:40
Go Gizmo!
Рет қаралды 35 МЛН