Advanced Teleport Hack (stolen from cheaters)

Поділитися
Вставка
  • Опубліковано 11 чер 2024
  • There exists a pretty cool teleport hack that I couldn't discover myself. So I decided to steal it and share it with you all!
    Minecraft:HACKED Playlist • Minecraft:HACKED
    Purchase LiveOverfont (advertisement): shop.liveoverflow.com
    Paper Source Code: github.com/PaperMC/Paper/tree...
    Community Showcase: Jorian, EnderKill98, Shrecknt
    Chapters:
    00:00 - La Casa De Papel
    00:53 - Reach Hack Recap
    01:59 - The Vault Challenge
    03:43 - Code Review of handleMovePlayer()
    05:45 - Logging Packets from Cheaters
    07:03 - Reverse Engineering the Teleport Hack
    09:01 - Debugging the Movement Code
    11:58 - Self-reflection: Why did I not find this?
    13:40 - The End of Minecraft:HACKED
    15:06 - Community Showcase: Jorian, EnderKill98, Shrecknt
    =[ ❤️ Support ]=
    → per Video: / liveoverflow
    → per Month: / @liveoverflow
    2nd Channel: / liveunderflow
    =[ 🐕 Social ]=
    → Twitter: / liveoverflow
    → Streaming: twitch.tvLiveOverflow/
    → TikTok: / liveoverflow_
    → Instagram: / liveoverflow
    → Blog: liveoverflow.com/
    → Subreddit: / liveoverflow
    → Facebook: / liveoverflow

КОМЕНТАРІ • 149

  • @va1iduser682
    @va1iduser682 10 місяців тому +34

    For the love of GOD please bring this back.... One of the only series i enjoyed and there is NOTHING ELSE LIKE IT ON THIS PLATFORM!! PLEASE!!!!! Do i have to take out a loan from a bank to pay you to do it?

  • @apenasmedeixausar
    @apenasmedeixausar Рік тому +96

    Hope you still do this kind of practical, hands on stuff where you use your knowledge to search for solutions. I personally don't much care for Minecraft all that much, but I watched all the episodes just to see how you would accomplish what you wanted to do. I hope this type of content continues somehow.

  • @Death2u_
    @Death2u_ Рік тому +330

    A video about anti cheat, how it works and how they could improve would be a cool.

    • @rustunsafe
      @rustunsafe Рік тому +23

      @GHG Im pretty sure you dont need OS knowledge for some anticheats.

    • @joshix833
      @joshix833 Рік тому +1

      In minecraft?

    • @decencies
      @decencies Рік тому +19

      @GHG I think the OP meant anticheats made specifically on the Minecraft server, which is a whole lot different than a client-side anticheat.

    • @CZghost
      @CZghost Рік тому

      That's what I was looking for.

    • @maixicek
      @maixicek Рік тому +3

      only server anti cheat matters, all client anti cheat are trash jokes that only prevent from script kiddy and backdoor for legit players, every skilled hacker will just disable anti cheat cause he has his own kernel module

  • @va1iduser682
    @va1iduser682 10 місяців тому +6

    This was a next level educational series that I HOPE TO GOD someone else picks up since LiveOverflow is apparently done with it... Such a shame and bring me such sadness that its over... It honestly felt like it was only getting started... Only known and widely used exploits were covered and i truly feel like you could have done so much more.

  • @0x150
    @0x150 Рік тому +22

    10:30 small correction: isFallFlying checks if the player is using an elytra. makes sense in this context, since an elytra may go really fast, and the check expands the max movement for that to be allowed

  • @craftydoeseverything9718
    @craftydoeseverything9718 Рік тому +22

    Thank you so much for making this video! What sets it apart from the other videos in my opinion, is that it shows that nobody is perfect. There are countless times when I would spent hours and hours trying to figure something out, only to not exactly get anywhere. Often when we watch programming (or in this case, hacking but they are very similar) videos, the power of editing just makes it look like people get it so easily and somehow figure everything out, even if they do say they spent hours working on it. Just seeing somebody fail a project really makes me feel like I'm not the only one who tries really hard but doesn't have something work out. Thank you.
    Also, thank you for this whole series in general. As someone who enjoys both Minecraft and hacking, whilst I am not entirely good at hacking, it helps my understanding so, so much to see a practical application of a concept, rather than just the constant talking and information overload.

  • @Crysal
    @Crysal Рік тому +39

    This series was so good, a very nice way to use a thing you enjoy casually to improve professionally

  • @navaneeth6157
    @navaneeth6157 Рік тому +12

    Eye opening episode. Sad to see the Minecraft:HACKED series ending but excided to see what is ahead

  • @teddyJayyy
    @teddyJayyy Рік тому +10

    I really enjoyed this series. Hopefully it's something you continue casually or perhabs another game in the future.

  • @EnderKill98
    @EnderKill98 Рік тому +2

    Cool Video!
    Btw just wanted to mention that the showcase with me and Shrecknt was all Shreckent's idea. I didn't come up with the way and simple helped by recording and helping Shreckn't back out of the self-made prison. :D

  • @Sadiinso
    @Sadiinso Рік тому +45

    so... hum.... Why was the "i" term added to the movement check ? What problem does it solve ? Is there a legit situation where the player would be sending multiple move packets in a single tick ? Maybe if the player is lagging ?

    • @lassipulkkinen273
      @lassipulkkinen273 Рік тому +19

      Was thinking the same, but my best guess is it's meant to avoid constantly teleporting the player when the server is lagging. No idea why it would be squared, though, and given that movement check teleportations do occur as a result of low TPS, it doesn't seem to be achieving this goal.

    • @Sadiinso
      @Sadiinso Рік тому

      @@lassipulkkinen273 Ah, that's indeed a good point, if the server is lagging there might be more chances for multiple pos packets landing on the same tick 🤔

    • @inhaspie
      @inhaspie Рік тому

      @@lassipulkkinen273 When there is lag and the server finally comes around to "resolving" the movement of the player the "i" term prevents the player from lagged back to their previously (by the server) known position. This is why during lag you might see other players teleport around.
      Hoped this cleared it up and my explanation was not too messy.

    • @Sadiinso
      @Sadiinso Рік тому +3

      But then, I guess a better option would be to limit the number of packets sent in a specific duration, for example "no more than one packet every ~50ms" would limit to 1 packet per tick at 20tps and 50 packets per tick at 1tps

    • @lassipulkkinen273
      @lassipulkkinen273 Рік тому +3

      @@Sadiinso Yeah, even better would be not to limit the number of packets at all, and just use real time to check the movement speed. Some leeway would of course still be necessary, to compensate for TCP jank etc.

  • @m8_981
    @m8_981 Рік тому +1

    Thank you so much for this series! Was an absolute pleasure to watch it all! :)

  • @diracspace5842
    @diracspace5842 Рік тому +4

    Really love your videos, it's incredible how you add things like self-reflection and situations where it makes you think. Please keep up the great videos, and hope you have a great day every day.

  • @suitkais7
    @suitkais7 Рік тому +5

    if minecraft hacked is actualy over ima be so sad i loved this series

  • @JohnDev
    @JohnDev 10 місяців тому +1

    oh man. sad its already over. i just binge watched every episode. really entertaining :)
    reminds me of my arma 3 hacking days.
    creating a dedicated server for hacking challenges is such a cool idea.
    i wonder if it would be possible to do with other games aswell ^^
    if you ever plan on doing something like this with another game again, i will sure to not miss it this time :)

  • @guillaume6373
    @guillaume6373 Рік тому

    Would love for you to continue, I absolutely loved this series :) Or at least maybe not minecraft, but some other games

  • @Kynatosh
    @Kynatosh Рік тому +16

    I really liked to play on the server since I discovered it last June! Great community there ;)

    • @HadronCollisionYT
      @HadronCollisionYT Рік тому

      what is the IP?

    • @Kynatosh
      @Kynatosh Рік тому

      @@HadronCollisionYT it changes sometimes

    • @HadronCollisionYT
      @HadronCollisionYT Рік тому

      @@Shrecked scan what....What is the current IP

    • @_Cfocus
      @_Cfocus Рік тому

      ​@@HadronCollisionYT its a hacking server you gotta know some hacking to get the ip itself to even join lol 😅

    • @_Cfocus
      @_Cfocus Рік тому

      ​@@HadronCollisionYT السلام عليكم باختصار هم مخلين ال ip سري لازم تعرف تهكر وتجيبه بنفسك عشان تدخل لو ما تعرف تهكر ما يدخلوك

  • @spotandjake1008
    @spotandjake1008 Рік тому

    I really like this series it is a really aproachable walkthrough on finding vulnerabilities.

  • @mu11668B
    @mu11668B Рік тому

    Ngl I love your ads at the end of your videos. They're priceless! xD

  • @stevencowmeat
    @stevencowmeat Рік тому

    This has been one of my favorites to watch It was a very good series .👍

  • @Niklxs
    @Niklxs Рік тому

    Ich liebe das Format. Bitte mach weiter damit

  • @Gaming32i
    @Gaming32i Рік тому +9

    I checked to see what this code has in Vanilla. The movement packets per tick is used in the equation, but is a multiply instead of a power, which makes this possible on Vanilla, but harder.

    • @ostkreuz52
      @ostkreuz52 Рік тому +2

      Oh, okay... Thanks! But I don't understand why the amount of sent packets is part of the "Moved to quickly"-check.
      My thought was: The amount of sent packets has nothing to do with the content of the packets.

    • @livingfray2340
      @livingfray2340 Рік тому +4

      @@ostkreuz52 I believe its a form of lag compensation. If a legitimate player was running for say 5 ticks but due to lag the server received/processed their movement ticks all on the 5th tick they need to be able to move 5x further than normal that tick to avoid rubber banding

  • @peanut-sauce
    @peanut-sauce Рік тому +2

    Nice! Something I find interesting are your menus, is there any documentation you used to make those?

  • @KingRabbitDev
    @KingRabbitDev Рік тому +2

    Loved the money heist throwback

  • @Skidam
    @Skidam Рік тому

    It was pretty cool series thanks! :)

  • @lucacraftlp1602
    @lucacraftlp1602 Рік тому

    The best end to a series i have seen in a long time (the intro music just gives vibes)… Still im sad that it’s ending so soon…

  • @nBlackyHVH
    @nBlackyHVH 29 днів тому

    We need this series back

  • @r000tbeer
    @r000tbeer Рік тому

    Don't beat yourself up too much, you got it figured out. Nice work!

  • @superblaubeere27
    @superblaubeere27 Рік тому

    I love the intro, made my day a bit sweeter

  • @kr1v
    @kr1v 11 місяців тому

    I am currently implementing my own version using the meteor client source code! This has been super fun to follow!

  • @solcloud
    @solcloud Рік тому

    Thank you for series! 😊

  • @q7b663
    @q7b663 10 місяців тому +2

    Id love to know more about anti cheat plugins and heuristics

  • @xPatata
    @xPatata Рік тому

    that minecraft font is very cool!

  • @dabla8479
    @dabla8479 Рік тому +1

    awesome :) is there a monospace version?

  • @2b_xc22
    @2b_xc22 Рік тому +1

    the music sounds nice and i immediatly know what it was from

  • @blitzbrian
    @blitzbrian Рік тому +1

    i already knew as soon as u showcased the box that u were going to log the packets lmao

  • @bims_sh
    @bims_sh Рік тому

    Good video, as always

  • @ZotyLisu
    @ZotyLisu Рік тому +1

    have you heard about Tarkov controversy about the game being plagued by cheaters? it blown up recently - it'd be nice to see a more technical video from you discussing anti cheat in general :D
    also Valorant's ring zero anti cheat caught these ones better than the actual game, that's interesting and maybe worth exploring

  • @S4ber_
    @S4ber_ Рік тому

    I really like those videos

  • @Enyel5555
    @Enyel5555 Рік тому

    the intro was very nice

  • @Kmactitan
    @Kmactitan Рік тому

    I love watching this as a newb coder. so spamming a bunch of the same packets in a simple loop within that ms and then shifting it to a different packet is that does it? damn lol love it

  • @Napert
    @Napert Рік тому +1

    5:57 so if someone just starts spamming the outside button the server could theoretically crash?

  • @zeeman_eng
    @zeeman_eng Рік тому +4

    To be honest, I'm impressed with the time and effort you put into this video, keep it up! ❤😇
    By the way, I also make videos!

  • @rustkitty
    @rustkitty Рік тому

    So some kind of anti-lag protection? If you have dropped/corrupted packets it still shouldn't ban or reject your position you when the client and server sync up with each other.

  • @Mathew82khs
    @Mathew82khs 10 місяців тому

    Will continue the series in the future?

  • @Mempler
    @Mempler Рік тому

    This is probably to make the famous speed boat glitch possible. aka boat on ice = faster than the server can handle.
    If you remove it, you will get rubber banded back when using a boat.

  • @Jdbye
    @Jdbye Рік тому +1

    Anybody noticed how the Z position of the cheater was 1336.50? So close to greatness.

    • @ees4.
      @ees4. 2 місяці тому

      hacker*

  • @Shadowtrot
    @Shadowtrot Рік тому

    I sat there staring at that code for at least a few hours trying to figure out how variables I control could let me clip into that cube. I still have a trick you haven't shown yet, and having revealed this you actually re-enabled another old trick I thought was patched, but this one specifically I didn't see. For me, I think I wasn't paying attention to it because it didn't seem like it was a variable I had control over. It is, every packet I send increments the counter, but it was a less direct side effect, so I didn't think much about it. Maybe that's part of why you missed it as well, something you can try to focus on in the future. It will be for me.

  • @poglin_or_smh
    @poglin_or_smh Рік тому

    hope u still do atleast some cheating on games videos
    its fun to see someone being able to read someone else's code

  • @MultiTommon
    @MultiTommon Рік тому

    What's client you using ans what Is the client of Enderkill98 ?

  • @ironnoriboi
    @ironnoriboi Рік тому +3

    5:58 dictatorUwU

  • @tg7943
    @tg7943 Рік тому

    Push!

  • @Alexandres668
    @Alexandres668 Рік тому

    I must have missed a video, why is it possible to teleport through roofs ?

  • @Ryan-iz1vn
    @Ryan-iz1vn Рік тому

    whats the song of the intro? really gave an last episode vibe to this

    • @dahohi
      @dahohi Рік тому +2

      It is the" LA CASA DE PAPEL OPENING SONG"

    • @Ryan-iz1vn
      @Ryan-iz1vn Рік тому

      @@dahohi ohh ofcourse, I just realized he's wearing the mask

  • @berndeckenfels
    @berndeckenfels Рік тому

    Why care about the number I, just limit sum of distances per tick (velocity) … is that for congestions or something?

  • @davidnagl2767
    @davidnagl2767 Рік тому

    Whats the song in the intro? 🤔 I know the melody from somewhere …

    • @dahohi
      @dahohi Рік тому +1

      It is the "LA CASA DE PAPEL OPENING SONG" (Money Heist)

  • @ahmetlackscontent
    @ahmetlackscontent Рік тому

    holy $h!t i love this.

  • @slackclient
    @slackclient 11 місяців тому

    in hacking, we call the reach thing, tpaura or infaura

  • @HiImKyle
    @HiImKyle Рік тому +3

    I'll never buy a font but it does look cool. I might be persuaded if there's a monospace version in the future

    • @vgaggia
      @vgaggia Рік тому

      or maybe a whole os font >>

  • @LetsPlay4Free
    @LetsPlay4Free Рік тому

    What I do not understand is what the original idea behind the increased i is.

  • @jojoe77777
    @jojoe77777 Рік тому

    10:30 isFallFlying is whether the player is flying with elytra

  • @Embuer
    @Embuer 2 місяці тому +2

    When will this series be revived

    • @ees4.
      @ees4. 2 місяці тому

      ikr

  • @Cornbread2100
    @Cornbread2100 Рік тому +10

    Wait you actually stole our secrets?! Noooooooo

  • @dam6641
    @dam6641 Рік тому +1

    Officially public now i guess

  • @Jdbye
    @Jdbye Рік тому

    100% this code is designed this way to prevent false positives/kicks from laggy players. It's kind of genius, actually. The way it works, no matter what someone's ping is, the code can adjust to kick them only if they cheat, without false positives. Shame it's so exploitable.

  • @reaper7104
    @reaper7104 Рік тому

    ima need that reach cheat

  • @CONKISREAL
    @CONKISREAL 2 місяці тому

    Server Ip?

  • @michaelol
    @michaelol Рік тому

    So what AntiCheat are you using if any? NoCheatPlus with a proper config stops everything or are you just using vanilla to test all these cheats?

    • @ees4.
      @ees4. 2 місяці тому

      it's a server where players are encouraged to hack so that new hacks can be discovered.

  • @solcloud
    @solcloud Рік тому

    If you are looking for another game for hacking I have created one that will be pretty easy on client side but on server side it should be quite challenging to fool server 🙃

  • @IamLupo
    @IamLupo Рік тому

    The code that leads to this exploit is code readability. The check that fails should be made inside a variable and have added with comments with the details of this variable. If this should have made in the server then this process should have been straight forward for you to exploit this.
    Documenting is key to make your project safe!

    • @0x225
      @0x225 Рік тому

      well this is decompiled output and most of the modifications here are very old from before there was mappings like this so most of the code at one point was still half obfuscated

    • @IamLupo
      @IamLupo Рік тому

      @@0x225 Ow sorry i didnt knew, i expected that the source code of the server side was open source for a while now with documentation. Thanks for highlighting!

  • @Pixel_b0t
    @Pixel_b0t Рік тому

    Does anyone know the ip of the proxy

    • @ees4.
      @ees4. 2 місяці тому

      scan for it :) but the server is dead now and I found it way too late :/

    • @Pixel_b0t
      @Pixel_b0t 2 місяці тому

      @@ees4. Me too D:

  • @Bommel1337
    @Bommel1337 Рік тому

    you could do such a kind of series in gta they got trash af anti cheat

  • @Puppetmaster664
    @Puppetmaster664 Рік тому

    Me on 2b2t:👏👏👏👏👏👏🤫🤫🤫🤔🤫🤫🤫🤫

  • @KittenKatja
    @KittenKatja Рік тому +1

    I guess UI creation isn't your forte either, as you were unable to make the number appear in a text field, to quickly change the number from 1 to 40 without clicking on the + button 40 times.

  • @graemewiebe2815
    @graemewiebe2815 Рік тому

    ah yes, squilly!
    For those not aware, squilly is the boat + bed respawn glitch, often used in mc prison escapes. It functions by having all potential spawnpoints obstructed except for one, and then having a boat obstructing the last location. I don't know the exact reason, but deems the spawnpoint invalid, but instead of saying so and dropping you at world spawn, it spawns you at the next highest unobstructed y level.

  • @Beetless
    @Beetless Рік тому

    jeez what happened to the views

  • @crowbalde8096
    @crowbalde8096 11 місяців тому

    15:49 actually can read it, cus. im german

    • @schwegelbin
      @schwegelbin 10 місяців тому

      Honestly, I would never want to taste it...

  • @fab_5356
    @fab_5356 Рік тому

    How do you get the minecraft code

  • @kgaming7599
    @kgaming7599 Рік тому

    ok

  • @shooshee5555
    @shooshee5555 Рік тому

    i grew up with games like pacman and bards tale... im too dumb for minecraft ...

    • @thewhitefalcon8539
      @thewhitefalcon8539 Рік тому

      Minecraft is just computer Lego. You don't have to hack it.

  • @nonchip
    @nonchip Рік тому

    `class Dictatoruwu` smh my head :P

    • @ees4.
      @ees4. 2 місяці тому

      so thats what the discord message was about

  • @Max-hu9wf
    @Max-hu9wf Рік тому

    Who thought calling variables d10, d6 or i is a good idea! WTF!

  • @Atlantic_Griefers
    @Atlantic_Griefers 6 місяців тому

    damn a first comment in 3 months

  • @RemiDv
    @RemiDv 10 місяців тому

    your video link is in meteor client source code lol

    • @ees4.
      @ees4. 2 місяці тому

      where? did they implement the vertical clip thing?

    • @RemiDv
      @RemiDv 2 місяці тому

      @@ees4. I think it was in the Vclip command file, it said something which explained how the code works and a link to this video

    • @ees4.
      @ees4. 2 місяці тому +1

      @@RemiDv yep, that was from a server scanning inc member

  • @TheMAZZTer
    @TheMAZZTer Рік тому

    Software developer here. I can confirm sometimes you have to just add debugging and run through the code to figure out how it works.

  • @alyti
    @alyti Рік тому

    skill issue

  • @pierce8308
    @pierce8308 Рік тому

    Oh god so many minecraft videos jesus christ. Please consider bringing back old school videos too.
    Like your binary exploitation, browser hacking, blockchain, hardware, lib internals. What happened to those man smh :(.
    Worst of all, NO CTFS 😭😭
    Its like those are long gone and never coming back. Those were amazing videos and in my opinion PEAK liveoverflow.
    Now whole year went by and 90% its minecraft hacking :(. I dont have anything against minecraft, but I really feel this is just too many minecraft hacking, there are several interesting ideas possible as well

    • @NateLevin
      @NateLevin Рік тому +2

      He says at the end of this video that this was the end of the series.

    • @pierce8308
      @pierce8308 Рік тому

      @@NateLevin Thank god finally

  • @mctrafik
    @mctrafik Рік тому

    Watching you do this is very painful. I'm at 12 minutes and all I've noticed is that you failed to evaluate an if statement by not looking at all variables. :/ This isn't entertainment.

    • @Cookiekeks
      @Cookiekeks Рік тому

      Then don't watch it instead of bragging like a prick

  • @dumbidiot1119
    @dumbidiot1119 Рік тому

    The name of the packet logger 💀