Self-Learning Reverse Engineering in 2022

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 พ.ค. 2024
  • There exist some awesome tools nowadays to accelerate your self-education for reverse engineering. godbolt and dogbolt are amazing to quickly learn basic assembly and reversing.
    Compiler Explorer: godbolt.org/
    Decompiler Explorer: dogbolt.org/
    C code example: github.com/LiveOverflow/liveo...
    Introducing Decompiler Explorer - binary.ninja/2022/07/13/intro...
    00:00 - Intro
    00:23 - Motivation
    01:00 - How to c?
    02:11 - godbolt Basic Usage
    03:40 - Function Call on x64
    04:30 - Intel vs ARM assembly
    05:22 - godbolt Compiler Options
    05:50 - Enable gcc O3 Compiler Optimization
    06:35 - Decompiler Explorer dogbolt
    07:16 - Comparing Decompiled main()
    08:25 - Outro
    =[ ❤️ Support ]=
    → per Video: / liveoverflow
    → per Month: / @liveoverflow
    =[ 🐕 Social ]=
    → Twitter: / liveoverflow
    → Instagram: / liveoverflow
    → Blog: liveoverflow.com/
    → Subreddit: / liveoverflow
    → Facebook: / liveoverflow

ความคิดเห็น • 281

  • @LiveOverflow
    @LiveOverflow  ปีที่แล้ว +73

    Sometimes I'm streaming on Twitch: www.twitch.tv/liveoverflow

    • @mindlab369
      @mindlab369 ปีที่แล้ว

      What kit do I need to purchase to practice Side Channel attacks if I don't want to spend hefty money on xilinx FPGAs?

  • @TheBackyardChemist
    @TheBackyardChemist ปีที่แล้ว +849

    Step 1: pick a target that is not written in C++ with Boost and Qt and built with O3+LTO...otherwise you will spend months reversing the

    • @InfiniteQuest86
      @InfiniteQuest86 ปีที่แล้ว +79

      Lol we've all been there.

    • @c0smo709
      @c0smo709 ปีที่แล้ว +22

      @@InfiniteQuest86 no we havent, noob

    • @InfiniteQuest86
      @InfiniteQuest86 ปีที่แล้ว +109

      @@c0smo709 Lol! Nice one!

    • @c0smo709
      @c0smo709 ปีที่แล้ว +10

      @@InfiniteQuest86 thanks bro appreciate it

    • @martysh1226
      @martysh1226 ปีที่แล้ว +108

      @@c0smo709 what a nice and friendly interaction

  • @jhbonarius
    @jhbonarius ปีที่แล้ว +292

    C and especially C++ developers are actually using compiler explorer for _forward_ engineering. I.e. during development they try optimizations there and see what the compiler makes of it, before putting the best version in their code. It's an amazing tool Matt Godbolt brought into the world.

    • @TheBackyardChemist
      @TheBackyardChemist ปีที่แล้ว +4

      Oh absolutely

    • @SamirPatnaik
      @SamirPatnaik ปีที่แล้ว +5

      I hope he gets rich out of it, somehow.

    • @jhbonarius
      @jhbonarius ปีที่แล้ว +9

      @@SamirPatnaik well, not rich no. It's more of a hobby project that has grown out of bounds. But he's become pretty famous in the C++ community.

    • @user-lb1ib8rz4h
      @user-lb1ib8rz4h ปีที่แล้ว +1

      i mean you don't need that tool, you can do the same locally

    • @OCEAN-fc9wl
      @OCEAN-fc9wl ปีที่แล้ว

      Ew c++

  • @coder_rc
    @coder_rc ปีที่แล้ว +254

    The one thing to remember while learning reverse engineering is that there are a lot of things that you won't get when you try the first time and it's fine. You also have to have a lot of patience since the process of learning reverse engineering can be extremely frustrating and it can make you give up on 5 out of your 10 projects.
    Always remember that theory will beat practice.
    Have a goal in mind why you want to learn reverse engineering as that will give you a clear idea of the platform on which you will be working.
    For example, I want to be a Vulnerbility Researcher and find 0 days on Windows so I would learn all the basics of reverse engineering simple programs on Windows, how to debug them, the tools necessary and I would read through ctf writeups and try stuff on my own. After clearing this up, I would try to increase my level and try malware analysis as it would give me clear understanding of software protections, debugging and understanding a program when almost nothing about the program is known. Then I can proceed to learn about different kinds of vulnerabilities and how they are found and so on.

    • @flirtyemy042
      @flirtyemy042 ปีที่แล้ว +5

      This is me right now. I’m into malware dev. and most times i need to reverse Engineer the binary I’m writing to see how it’s been executed in memory but just can’t seem to wrap my head around the assembly codes

    • @Jonathan-ng4vw
      @Jonathan-ng4vw ปีที่แล้ว

      @@flirtyemy042 How you learn malware dev. it means what is your resources to learn this.

    • @coder_rc
      @coder_rc ปีที่แล้ว +1

      @@flirtyemy042 the best way to learn assembly is to write own programs and see what assembly code is generated in disassemblers or you might just try making a small project in assembly.
      You can sort of cheat by just learning about the most commonly used assembly instructions.

    • @flirtyemy042
      @flirtyemy042 ปีที่แล้ว +3

      @@Jonathan-ng4vw Check out Sektor7’s malware dev course for a start. It’s really good. You can then follow it up with the intermediate and then evasion courses

    • @flirtyemy042
      @flirtyemy042 ปีที่แล้ว

      @@coder_rc I think I’ll check out the tools in the video. At least they’ll help highlight each instruction in assembly. Thanks

  • @martint1775
    @martint1775 ปีที่แล้ว +52

    If one is interested in Reverse engineering themselves, I would highly recommend the book "Practical Malware Analysis: The Hands-On Guide to Dissecting Malicious Software". It can be found online using a bit of googling. I just finished a course with the name Reverse Engineering and Malware Analysis and there we used this book. This course was obviously heavily focused on how windows malware works and can be detected through different means, but reverse engineering was a big part of it.

    • @jebactychpolicjantow5497
      @jebactychpolicjantow5497 ปีที่แล้ว +8

      A more abstract book would be Practical Reverse Engineering by Alexander Gazet and Bruce Dang. Especially if you don't want to go into malware analysis specifically.

    • @forbiddencake3989
      @forbiddencake3989 ปีที่แล้ว +3

      Leaving comment for ref. Thanks to you both

    • @younes3573
      @younes3573 ปีที่แล้ว

      Thx

    • @alimamulma3sum14
      @alimamulma3sum14 ปีที่แล้ว

      Any link for the course?
      Thanks.

    • @chasemedsker
      @chasemedsker 10 หลายเดือนก่อน

      Bookmark

  • @zanidd
    @zanidd ปีที่แล้ว +17

    Your videos (in particular the binary exploitation playlist) have been a huge help in my cybersecurity career. Thank you very much ❤

  • @MattGodbolt
    @MattGodbolt ปีที่แล้ว +6

    Thanks for the great shout out! This is a great introduction to Compiler Explorer in general!

  • @root_etikit3658
    @root_etikit3658 ปีที่แล้ว +1

    Perfect timing. I've been working my way through Practical Malware Analysis, this will be of great help! Thank you.

  • @diegocastillo6470
    @diegocastillo6470 ปีที่แล้ว +42

    I started learning assembly code and disassemblers a couple months ago, with the help of the book "Hacking The Art of Exploitation", really good book but the assembly part was really hard of me. I tried to follow on my computer but had many many issues, got frustrated and just let it go. A couple weeks ago I took it upon myself to read it again, and now I got it a little bit better. For some reason assembly is still challenging for me, but no matter how frustrated you get, take some time, breath, stop for a couple hours maybe days and then try to resume. Would have loved to have this video before. Amazing, thank you so much.

    • @babbalaminou7697
      @babbalaminou7697 ปีที่แล้ว +2

      The best intro to assembly is from the book Practical Malware Analysis. Check out the Assembly crash course section

  • @revebbever7723
    @revebbever7723 ปีที่แล้ว +6

    Thank you so much. This simple overview was what i needed to look into reverse engineering. Assembly code doesn´t look that scary anymore!

  • @logiciananimal
    @logiciananimal ปีที่แล้ว

    Thanks for the info about the decompiler collection. What a gift to the community!

  • @weinihao3632
    @weinihao3632 ปีที่แล้ว +24

    Maybe it's worth mentioning that the intermingled output of source code and assembly can also be achieved (and in fact this is for sure what happens in the background on that website) with objdump -S , if the binary was compiled with debugging enabled. So, even if you are somewhere without internet or don't want to share the code you are working on with whoever is running that website, you can still conveniently self-learn reverse engineering in 2022.

  • @astr4liteEx
    @astr4liteEx ปีที่แล้ว +1

    +rep godbolt love, didnt know asm like 2 weeks ago, watched a few vids to briefly get a hang of what it does (alot easier than what i wouldve thought actually), then used godbolt to more understand what my code does at a lower level, its really nice being able to look at asm and be able to tell what it does, especially when u can hover over parts of asm and it highlights the code responsible for it! its been a real help. documentation helps alot to for checking out odd looking functions that ive never really seen before :D 10/10

  • @lightblue254
    @lightblue254 ปีที่แล้ว +1

    I love you! Thank you so much, this helps a lot in learning how to get sharper and started! :)

  • @miranda92051
    @miranda92051 5 หลายเดือนก่อน

    This video is actually really, really good. Thank you!

  • @daljeetbhati8353
    @daljeetbhati8353 ปีที่แล้ว

    Loved background and editing

  • @Fvcktheirdads
    @Fvcktheirdads ปีที่แล้ว +2

    Every hacking inquiry I have leads to a video made by you ❤. Keep up the great work.

  • @knopix
    @knopix ปีที่แล้ว

    Thanks a lot for providing this 💖

  • @fugoogle_was_already_taken
    @fugoogle_was_already_taken ปีที่แล้ว +2

    We practiced reverse engineering by rewriting the simple basic utils like cat and tee from their asm dumps. That and also writing some assembly code is helpful

  • @teddythobane2636
    @teddythobane2636 ปีที่แล้ว +68

    Reversing is a way of life, and it takes time, but is very rewarding once you get the hang of it. Great video as always, sir.👌

    • @JoseAndCode
      @JoseAndCode ปีที่แล้ว +1

      Can you explain the rewards you have experienced

    • @TienNguyen-ky4dx
      @TienNguyen-ky4dx ปีที่แล้ว

      what do you learn this for? Bug bounty?

    • @teddythobane2636
      @teddythobane2636 ปีที่แล้ว +3

      @@JoseAndCode being able to fully understand software at the lowest level. That enables you to come up with clever ways of using (or exploiting) the software. I'm explaining in the context of software, but, really, this applies to any system that you manage to reverse-engineer :)

    • @teddythobane2636
      @teddythobane2636 ปีที่แล้ว +2

      @@TienNguyen-ky4dx There are a whole host of reasons why one might learn reversing. It might be for compatibility or interfacing purposes, for vulnerability research and/or exploit development, for software development (finding out how someone else implemented some or the other component or system and try to do it yourself while inferring from what they did), malware analysis, etc.

    • @nczioox1116
      @nczioox1116 ปีที่แล้ว

      What are some good ways for a total beginner to get started? Ive seen some beginner videos but they all seem to intermediate levels and theres only a handful of them out there it seems

  • @rivhaaken9763
    @rivhaaken9763 ปีที่แล้ว

    Thanks Liveoverflow!

  • @black_platypus
    @black_platypus ปีที่แล้ว +1

    OMG! godbolt and dogbolt are so beautiful and helpful! 🤯

  • @sliceoflife5812
    @sliceoflife5812 ปีที่แล้ว

    15secs in and I'm already in agreement with your view of an abstract concept.

  • @thezar86
    @thezar86 ปีที่แล้ว +16

    Started with your binary exploitation playlist and now working in cyber security. Thank you LiveOverflow!

    • @rafikkaddour8704
      @rafikkaddour8704 ปีที่แล้ว +1

      Same here, so greetful for the awesome content

    • @humanxoxo4
      @humanxoxo4 7 หลายเดือนก่อน +2

      whats your roadmap sir?

  • @korilcrave2783
    @korilcrave2783 ปีที่แล้ว

    IT'S REALLY USEFULL... thankyou Febian...

  • @sihmy9870
    @sihmy9870 ปีที่แล้ว

    I swear I asked myself this question today Morning & here you are with this video

  • @PedroLucasbp
    @PedroLucasbp ปีที่แล้ว

    Very nice! Thank you ❤️

  • @cinageransayeh
    @cinageransayeh ปีที่แล้ว

    Thanks for the video it was exciting.

  • @yashwardhanchavan6153
    @yashwardhanchavan6153 ปีที่แล้ว +2

    I am currently following along the binary exploitation series and these tools will really help me out, thanks for the video.

  • @EscolaFreiMarcos2023
    @EscolaFreiMarcos2023 ปีที่แล้ว

    Thanks, really helped

  • @yuriimynash6118
    @yuriimynash6118 ปีที่แล้ว

    Nice video I was searching for that

  • @daljeetbhati8353
    @daljeetbhati8353 ปีที่แล้ว

    Love your videos watching stream

  • @smart_bar
    @smart_bar ปีที่แล้ว

    wow, thank you, it's amazing

  • @albuslee4831
    @albuslee4831 ปีที่แล้ว

    this was interesting, didn't thought I would watch the whole thing through

  • @MajorForce0
    @MajorForce0 ปีที่แล้ว

    Great video man. Love the way u pronounce array.

  • @pandatech3245
    @pandatech3245 ปีที่แล้ว

    Exactly the video I needed

  • @Aswin0x
    @Aswin0x ปีที่แล้ว

    This is what i need for past couple of weeks 😂❤️

  • @blaisetelfer8499
    @blaisetelfer8499 ปีที่แล้ว +2

    Good content. Reverse engineering is how I got started; after taking classes on a language or doing YT tuorials of a certain framework, I'd clone a large GitHub repo to my desktop and toy around with it. See what I could add, see what made it break, read the errors after each save. That method was just as valuable, if not more so, than the classes themselves.

  • @CoreDreamStudios
    @CoreDreamStudios ปีที่แล้ว

    Subbed, this was very useful. :)

  • @soaphornseuo8630
    @soaphornseuo8630 ปีที่แล้ว

    Great resource

  • @SmokelessMeme
    @SmokelessMeme ปีที่แล้ว +1

    Much love from the H1Emu team. (Reverse engineering H1Z1)

  • @ananthuskumar1286
    @ananthuskumar1286 ปีที่แล้ว

    Thanks mahn

  • @ZachHixsonTutorials
    @ZachHixsonTutorials ปีที่แล้ว +5

    Literally could not have come at a better time. I've been itching to dive into contributing to Metaforce (reverse engineering of Metroid Prime) and have been scratching my head not knowing how to get started

    • @drygordspellweaver8761
      @drygordspellweaver8761 ปีที่แล้ว

      any forums or discord groups for such projects?

    • @Louganda
      @Louganda ปีที่แล้ว

      @@drygordspellweaver8761 nintendo 😮

  • @eno88
    @eno88 ปีที่แล้ว +6

    Weird. Just what I was looking for and you posted it 🤔

    • @adityagiri353
      @adityagiri353 ปีที่แล้ว +1

      weird. Same case here 🤔

  • @NaNNaN-sh4vz
    @NaNNaN-sh4vz 10 หลายเดือนก่อน

    thank you so muuch

  • @TemurSolief
    @TemurSolief ปีที่แล้ว

    Thanks a lot.

  • @kingofgods2071
    @kingofgods2071 ปีที่แล้ว

    Compiler explorer is actually a really good tool. like if you get cursor to stuff you dont know what it means it will show description of what it is like cmp, rbp and so on. thanks btw didnt knew about this tol.

  • @m.alexbenny4500
    @m.alexbenny4500 ปีที่แล้ว

    Your videos are just amazing. It encourages me to learn more and more.
    And you look a little like Christian Slater from Mr. Robot 😅

  • @WistrelChianti
    @WistrelChianti ปีที่แล้ว

    Thanks!

  • @giteshtripathi9911
    @giteshtripathi9911 ปีที่แล้ว

    Awesome man
    That's what heroes do

  • @lancemarchetti8673
    @lancemarchetti8673 ปีที่แล้ว

    Excellent

  • @zedeleyici.1337
    @zedeleyici.1337 ปีที่แล้ว

    amazing 👀

  • @a1esandra
    @a1esandra ปีที่แล้ว

    stumbled on this vid expecting wires n bits n even tho i hate assembly this is so cool

  • @Snowflake_tv
    @Snowflake_tv ปีที่แล้ว

    Thanks alot

  • @katkatfarkat
    @katkatfarkat ปีที่แล้ว

    the title so dope

  • @ravikiranramachandra1000
    @ravikiranramachandra1000 ปีที่แล้ว

    Crazy channel I came across

  • @ParallaxThe
    @ParallaxThe ปีที่แล้ว

    Godbolt is great for just learning programing in general

  • @Me.n_n
    @Me.n_n ปีที่แล้ว

    Very nice 👍 thanks ^_^

  • @komismo
    @komismo ปีที่แล้ว

    OllyDbg and IDA is waving

  • @bva1092
    @bva1092 ปีที่แล้ว

    Useful

  • @Facebook-sk2iy
    @Facebook-sk2iy ปีที่แล้ว

    i love your videos specially the binary exploitation serie so can you do some videos about int overflow and int overlow to RCE

    • @LiveOverflow
      @LiveOverflow  ปีที่แล้ว

      Checkout the PwnAdventure series. I believe it was the fire and ice challenge

  • @PowerKuy
    @PowerKuy ปีที่แล้ว

    Cool

  • @johndoe-xz2en
    @johndoe-xz2en ปีที่แล้ว +1

    Thank you for your efforts. Your channel is one of the best on TH-cam.

    • @linuxinside6188
      @linuxinside6188 ปีที่แล้ว +1

      Was

    • @johndoe-xz2en
      @johndoe-xz2en ปีที่แล้ว

      @@linuxinside6188 I am new in reverse engineering and for me, this channel gives a lot of information in a very basic way.

  • @mohamedfatheem2872
    @mohamedfatheem2872 ปีที่แล้ว

    1st view 🤞Was waiting for this a long time…

  • @LukeAvedon
    @LukeAvedon ปีที่แล้ว

    Wow I did not know about dogbolt

  • @NiranjanND
    @NiranjanND ปีที่แล้ว +1

    Good

  • @hendriksahertian5525
    @hendriksahertian5525 11 หลายเดือนก่อน

    now my mind is blow up

  • @bobbobson1555
    @bobbobson1555 ปีที่แล้ว

    purchases I made was soft soft. I knew it was my passion but I was just stuck because of trauma I couldn't deal with. Now that I'm at a

  • @cuty5372
    @cuty5372 ปีที่แล้ว +1

    I gotta throw my University-Assighment reference Implementation in there, to compare it to my solution, to prove mine is better xD

  • @markaltmann583
    @markaltmann583 ปีที่แล้ว

    My man looking more and more like Mr. Robot

  • @restcure
    @restcure ปีที่แล้ว

    Must say, the cover of your computer would make a great album cover.

  • @alexobzor
    @alexobzor ปีที่แล้ว +1

    Can you please answer, how to get right tools for reversing. Because, i am newbie in this stuff. I found so many variants of gdb, i found radare2, that is a powerful framework but not without cons, i found ghidra and ida, and both of this gui tools great, and many more tools, including time travel deugging. It's blowing my mind, i can't choose between all of this, and have already spent so many time on googling all this programs. My goals is reverse engineering and binary exploitation, which stack of programs to choose ? Or how do i do it ? Help please..

  • @AndreasWilfer
    @AndreasWilfer ปีที่แล้ว

    I know this is not a very informative comment but... this video is really good and unlike my comment, very informative.

  • @Adowrath
    @Adowrath ปีที่แล้ว +2

    Hey! I know you're generally focusing on Reverse Engineering programming code, but I was wondering if you have any experience and or helpful tools on learning how to reverse engineer a file format? I've been working on somehting in my past-time but my best approach was just trying to write parsers for the files in question in Haskell (using Megaparsec), which doesn't lead to a quick analysis cycle having to rebuild the program, running it and either handling a huge print output or navigating bit by bit into the data structures to figure out what came out.

    • @user-bi7cs2rq1i
      @user-bi7cs2rq1i ปีที่แล้ว +3

      You can reverse the format by reversing part of software that reads/writes said format

  • @suryasubedi2276
    @suryasubedi2276 ปีที่แล้ว +3

    To be honest i am learning reverse engineering currently (self) and worried that i cannot become one. But this single video give me a boost . Lets see what will happen in future

    • @nomms
      @nomms ปีที่แล้ว +2

      Learn to code in C or similar
      then move onto reversing. It's a process

    • @suryasubedi2276
      @suryasubedi2276 ปีที่แล้ว

      @@nomms Thanks buddy
      And do you have any supporting materials that i am unaware off. If so plz reply me I will be waiting for it

    • @fareedfauzi7915
      @fareedfauzi7915 ปีที่แล้ว +2

      The motivation will be on and off. Give yourself time. Fundamentals like C, asm, os architecture are important... RE skills is a self learning subject.. you need to keep on practice, research and repeat.

    • @suryasubedi2276
      @suryasubedi2276 ปีที่แล้ว

      @@fareedfauzi7915 Thanks pal

    • @Westsider26-op3ff
      @Westsider26-op3ff 7 หลายเดือนก่อน

      Can one learn c++ and then learn assembly for reverse engineering without having to learn c? I want to reverse engineer c++ apps

  • @kalakxfif9473
    @kalakxfif9473 ปีที่แล้ว +2

    I was wondering how software cracking works. Could you do a video on the basic idea?

    • @Someone-ve7yn
      @Someone-ve7yn ปีที่แล้ว +2

      It's basically taking the binary itself and finding some opcode bytes to replace in order to make the software work without having a license for example. He has made a video on that topic if you want to see how it works th-cam.com/video/LyNyf3UM9Yc/w-d-xo.html

  • @HA7DN
    @HA7DN ปีที่แล้ว

    Wait, so now we can use the HexRays decomplier without IDA pro?

  • @ziadalaoui2461
    @ziadalaoui2461 ปีที่แล้ว +1

    learning yourself is one of the best tools in the world of hacking

  • @mrapri9328
    @mrapri9328 ปีที่แล้ว

    Can you explain about decompile Ex4 to Mq4 source code please🙏

  • @FromRootsToRadicals
    @FromRootsToRadicals ปีที่แล้ว

    Great tech explain.

  • @cupofjoen
    @cupofjoen ปีที่แล้ว

    Can I reverse engineer SASL DRM with this tutorial? I want to crack some add ons that has DRM built inside the content instead of outside of it..

  • @byteflowr912
    @byteflowr912 ปีที่แล้ว

    minor thing but there are some strikethroughs in the description

  • @Backstabbio
    @Backstabbio ปีที่แล้ว

    Godbolt is cool unless you want to reverse Swift code into ARM64, then you're hooped. Got to do it using the Swift compiler

  • @aziz0x00
    @aziz0x00 ปีที่แล้ว

    Nice fast video my friend hhhh

  • @Kabup2
    @Kabup2 ปีที่แล้ว

    Ahhh memories... I used to just read the numbers, and I did know what was happening... No translation necessary.

  • @tg7943
    @tg7943 ปีที่แล้ว

    Push!

  • @drygordspellweaver8761
    @drygordspellweaver8761 ปีที่แล้ว

    It's the Eckhart Tolle of RE

  • @Jarvx
    @Jarvx 3 หลายเดือนก่อน

    I want to add that Chat GPT can also be an extremely useful resource for learning reverse engineering.

  • @ahmadfaisal6356
    @ahmadfaisal6356 ปีที่แล้ว

    uncle, how to get started into cybersec?

  • @arshia_arez
    @arshia_arez ปีที่แล้ว

    👍👍👍👍👍

  • @user-allah_God
    @user-allah_God 4 หลายเดือนก่อน

    Can you introduce me some resources for learning malware development field?im very happy to seem your chennel

  • @octagear
    @octagear ปีที่แล้ว

    I don't....feel like this helped. I mean maybe i'm getting something wrong here but i thought the goal was to be able to read and identify code and i learned how to read the assembly but i wouldn't understand what it could represent in the high-level code without the source-code anyways. Especially when the programm is more complex with many more functions calling each other... I don't know where to go from here. How do i interpret the stuff i see?

  • @kRySt4LGaMeR
    @kRySt4LGaMeR ปีที่แล้ว

    one of your chapters has a error it says "Enable gdb -O3 Compiler Optimization" i think you meant gcc

  • @schokodrink5409
    @schokodrink5409 7 หลายเดือนก่อน

    I dont understand the functions calls on x86. In your printf it gets assembled to call printf but in mine it gets assembled to call puts. I use the same gcc version to compile so how can that happen?

  • @Pixdoet
    @Pixdoet ปีที่แล้ว

    reverse engineering looks kinda fun :)

  • @clusterfkRust
    @clusterfkRust 11 หลายเดือนก่อน

    I’m moving to Sweden

  • @its_fzx5275
    @its_fzx5275 ปีที่แล้ว +1

    Amazing video liveoverflow!!
    But What if you are a very nooby and you don't even know anything about how computer hardware works like how cpu functions etc... I heard you mentioning some very intersting stuff like stack,heap etc... But really felt lost hearing them
    Can you maybe drop us a video for those how wanna get into the field but are struggling with such stuff and don't know what to learn in the beginning?

    • @its_fzx5275
      @its_fzx5275 ปีที่แล้ว

      @@II_xD_II nope

    • @scottveron
      @scottveron ปีที่แล้ว +1

      Computer Architecture or Operating Systems courses

    • @malbacato91
      @malbacato91 ปีที่แล้ว +1

      ironically the binary exploitation series is the best place to learn those things IMO. it's a bit old by now if you're used to new LiveOverflow production qualities, but the principles changed none at all. even if you don't care about all the exploitation stuff you can just ignore it cause honestly in the process of explaining how to break stuff LO made the best explanation of what said stuff even is, for x86 at least

    • @its_fzx5275
      @its_fzx5275 ปีที่แล้ว

      Thanks to all of you guys for the awesome responses!💜

  • @biehdc
    @biehdc ปีที่แล้ว +5

    Would still recommend Cheat Engine and, since it exists nowadays, Ghidra.

  • @mgtowgaming8070
    @mgtowgaming8070 ปีที่แล้ว +6

    Game hacking is a pretty good way to learn reversing skills. It has well defined goals as well, like esp, aimbot, bhop, etc, which can be used to measure success.

    • @i_youtube_
      @i_youtube_ ปีที่แล้ว

      Could you please provide a tutorial link to understand what you mean by game hacking?

    • @kenzakishiro5110
      @kenzakishiro5110 ปีที่แล้ว +1

      @@i_youtube_ check out guided hacking’s channel, it is all about game hacking and reverse engineering a game

    • @skejeton
      @skejeton ปีที่แล้ว +3

      please don't do multiplayer, maybe multiplayer with you the only player, because otherwise it's not fun

    • @boiiboii7348
      @boiiboii7348 ปีที่แล้ว +1

      @@skejeton i would agree if bypassing anticheat was easy
      if ur mad about cheaters no matter how good they make their client-sided anticheat it will ALWAYS be possible to bypass it and all it takes is one public cheat to let in all the skids
      companies need to start focusing more on server-sided anticheat so even if the hacker(reverse engineer not skid) bypasses the client its still really difficult to cheat
      for example u can make an anti-esp by only giving the player data of players near the enemy (like in csgo), u can use AI to combat aimbot, u can make speed/jump hacks impossible by making the players' characters serversided so that the player sends "intention" packets instead of raw position packets so the server would calculate those

    • @skejeton
      @skejeton ปีที่แล้ว

      @@boiiboii7348 I know. I don't play competitive games but I feel bad for people dealing with cheaters. learning hacking to ruin the fun is an asshole move

  • @hantu4321
    @hantu4321 ปีที่แล้ว

    Better to take classes with knowledge you can reverse engineer just by looking at it. Yes you need to know assembly to reverse engineer in assembly