how do hackers exploit buffers that are too small?

  Рет қаралды 184,216

Low Level Learning

Low Level Learning

Жыл бұрын

Keep on learning with Brilliant at brilliant.org/LowLevelLearning. Get started for free, and hurry - the first 200 people get 20% off an annual premium subscription with my URL! Thanks again Brilliant for sponsoring this video!
The best to write code that is safe is to first break code that is not safe. Today, we'll be taking the code that I wrote for my strings cybersecurity video, and breaking it. By breaking this code, I hope you all get a better understand of how dangerous string functions can lead to a hacker taking over your code and getting control of your system.
HACK MY CODE: github.com/lowlevellearning/s...
Written Tutorial: / your-first-buffer-over...
🏫 COURSES 🏫
www.udemy.com/course/c-progra...
🔥🔥🔥 SOCIALS 🔥🔥🔥
Low Level Merch!: www.linktr.ee/lowlevellearning
Follow me on Twitter: / lowleveltweets
Follow me on Twitch: / lowlevellearning
Join me on Discord!: / discord

Пікірлер: 271
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Go check out my Medium post on the same topic: medium.com/@lowlevellearning/your-first-buffer-overflow-b44e5ba5598a
@nathanwoodruff9422
@nathanwoodruff9422 Жыл бұрын
This is cool and all but won't allow you to hack any websites that you don't have physical access to.
@MatkatMusic
@MatkatMusic Жыл бұрын
In the article, you said this: "0x41414141 is the hex representation of the string “AAAA”, which mean’s that our string of As overflowed into the return address and the CPU tried to execute it." What rule or mechanism causes the return address to be placed in memory immediately after the 64 bytes of storage that were allocated for the password?
@nathanwoodruff9422
@nathanwoodruff9422 Жыл бұрын
@@MatkatMusic _"What rule or mechanism causes the return address to be placed in memory immediately after the 64 bytes of storage that were allocated for the password?"_ It is called a stack, and it isn't after a return address, it is immediately before the string "AAAA". And it isn't the password it is the return address of the subroutine where the password is displayed on the screen.
@williamdrum9899
@williamdrum9899 Жыл бұрын
@@MatkatMusic That's just how the CPU works (in this case x86). It's done to allow functions to be nested arbitrarily (otherwise, assigning a variable to the return value of a function wouldn't be seamless like it is). Whenever you CALL a function the return address is placed on the stack automatically. Returning will take the value on the top of the stack and return to it- whether or not that value is in fact the place it SHOULD return to.
@void_274
@void_274 Жыл бұрын
the Waffle House has found its new host.
@jamestiotio
@jamestiotio Жыл бұрын
A few additional notes for those who are interested: - At 3:13, we use `objdump` to find the address of the `debug()` function. Note that this only works for program binaries that are compiled with no ASLR (hence, the `-no-pie` GCC flag). Enabling ASLR will randomize the base address of the executable. However, note that even when ASLR is enabled, it does not mean that the program is invulnerable. Some techniques would allow attackers to leak the base address of the executable and thus, they would still be able to find the address of the `debug()` function by using relative offsets. - At 4:14, we determine our initial guess for the payload size by looking into the source code for the length of the `password` buffer, which is 64 bytes. This does not mean that compiled programs with no source code available to us are not vulnerable to this attack, assuming that they also use `gets()`. First off, we can reverse engineer and statically analyze the compiled code to find that `64` constant. A much easier method would be to dynamically run the program using `gdb` and inspect its memory during runtime to figure out the length of the payload needed to overwrite the return address. Alternatively, there is also a great library called `pwntools` that can also allow us to figure out the payload length by inputting a de Bruijn sequence. - This attack can only be performed if there are no stack canaries (hence, the `-fno-stack-protector` GCC flag). However, even with stack canaries enabled, this (again!) does not mean that programs are invulnerable. Some techniques would allow attackers to leak the value of the stack canary, which would render it useless since now, attackers can simply include the stack canary in their payload. - What if there are no functions like `debug()` in the first place? After all, a real production-grade application would surely have no such tantalizing target functions that allow attackers to drop a shell and execute arbitrary code? Well, even without the `debug()` function being present, as long as attackers are still able to overwrite the stack, they can still perform a technique called return-oriented programming or a return-to-libc attack. The basic idea would be to "return" to and jump around between snippets of code in other functions of the binary or even in library functions (such as in `libc`). These code snippets are called "gadgets". With a sufficiently large library such as `libc` (which is definitely used by many applications worldwide), return-oriented programming is Turing-complete. Hence, attackers can eventually do whatever they want, including dropping a shell and executing arbitrary code. The lesson to learn here is that mitigations can be bypassed and they should not be considered silver bullets in production-grade applications. Buffer overflow is also generally considered the simplest class of vulnerabilities (there are more involved ones such as double-free attacks, race condition attacks, and side-channel attacks). Try to avoid having buffer overflow vulnerabilities in the first place at all costs by reviewing your code and by using tools that could analyze your code and detect such vulnerabilities (either statically or dynamically). That is the only way to make your code truly more secure!
@FRANKONATOR123
@FRANKONATOR123 Жыл бұрын
Thanks for the great comment!!
@spyyo932
@spyyo932 Жыл бұрын
Grateful cause you took the time to share you knoledge!
@williamdrum9899
@williamdrum9899 Жыл бұрын
Isn't this exploit also hardware specific? I think this wouldn't work on ARM unless the functions involved pushed LR.
@williamdrum9899
@williamdrum9899 Жыл бұрын
Trick is to never take user input at all 😉
@dtikvxcdgjbv7975
@dtikvxcdgjbv7975 Жыл бұрын
I hope that YT is going to introduce the feature "save this great comment". 👍
@anisoptera42
@anisoptera42 Жыл бұрын
the biggest vuln in your server is that your service says the words "welcome to" in its announcement banner, and nothing about unauthorized access being prohibited, thus ensuring that anyone who breaks in cannot be prosecuted under the precedented legal defense "It literally welcomed me in, therefore my access was not prohibited"
@oliver24x
@oliver24x Жыл бұрын
Does that really work in the US?
@JohnSmith-ox3gy
@JohnSmith-ox3gy Жыл бұрын
@@oliver24x You can't just invite someone to your house only to shoot them for intruding your house.
@schlopping
@schlopping Жыл бұрын
I'd argue this is wrong. If you use a fake ID to enter an office, and a receptionist welcomes you, does that suddenly give you the clear?
@anisoptera42
@anisoptera42 Жыл бұрын
@@schlopping you can argue whether it's wrong or not all you want. this is established case law.
@JeffCaplan313
@JeffCaplan313 Жыл бұрын
Viruses apparently are just like vampires....
@ash__borne
@ash__borne Жыл бұрын
In the end it's not necessarily about being a genius, it is about understanding how it works..
@JM-Games
@JM-Games Жыл бұрын
I think it should be a joint effort between coders to try and get rid of the illusion of you need to be a genius to code, its simply not true.
@monad_tcp
@monad_tcp Жыл бұрын
@@JM-Games why thou, it makes so we earn more
@monad_tcp
@monad_tcp Жыл бұрын
but on the other hand it takes years to become good, you don't need to be genius , you only need to study.
@JM-Games
@JM-Games Жыл бұрын
@@monad_tcp It does yeah but I feel like it puts a lot of people off, I have been interested in coding since I was very young but never thought I was smart enough until I decided to give it a go regardless.
@monad_tcp
@monad_tcp Жыл бұрын
@@JM-Games what's the problem with putting people off? I doesn't put me off, but there are a lot of thinks that do like accounting, sales, management, medical doctor. Not everything is for everyone. People only say or care about that because the barrier of entry for computing is very low, then they get disillusioned because the learning curve gets steep very fast. It is hard, I had enough with pretending it isn't. Even thou I earn a lot of money with consulting because of incompetent begginers doing shit.
@pr0xythegodofhax
@pr0xythegodofhax Жыл бұрын
keep uploading more exploit dev / binary exp videos bro, great job
@LowLevelLearning
@LowLevelLearning Жыл бұрын
thanks!
@victorbjorklund
@victorbjorklund Жыл бұрын
Wow :) very good desc of how a buffer exploit works. I knew the theory but great to see how it actually works in practice.
@GingerBeker
@GingerBeker Жыл бұрын
echo "Perfect video; Amazing Content; No Waste Time; Sponsor at the end, that i see entirely for respect and becouse doesn't ruin nothing; = Great Job; More More More!!!"
@LowLevelLearning
@LowLevelLearning Жыл бұрын
I appreciate that!
@joltedjon
@joltedjon Жыл бұрын
I like how you release this video after I had a project in my computer security class on performing buffer overflow attacks
@metal571
@metal571 Жыл бұрын
Great demonstration! In fact, there is yet another vuln in this code introduced purely by using the system() function at all. You can read why system() is discouraged in programs that run as any privileged user on the manpage for that Linux C function under the Notes section.
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Thanks for the info!
@metal571
@metal571 Жыл бұрын
@@LowLevelLearning Gives an easy opportunity to introduce how to use fork(), the exec() family of functions, and wait() as a future video idea. Keep up the good work
@mitaka_78
@mitaka_78 Жыл бұрын
Plese make more videos like this! As someone who didn't understand this kinda stuff well I was able to (kind of) understand how a buffer overflow works! I plan to to take cybersecurity as like a hobby in the future so your videos are really nice
@LowLevelLearning
@LowLevelLearning Жыл бұрын
You got it
@vladislavkaras491
@vladislavkaras491 5 ай бұрын
Thanks for practical demonstration! Thank you!
@nmb86
@nmb86 Жыл бұрын
Absolutely love this channel :) keep up the good work!
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Glad you enjoy it!
@psychicpenguin2850
@psychicpenguin2850 Жыл бұрын
This is my favourite channel about programming. Thanks a lot mate!
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Happy to hear that!
@therats2270
@therats2270 Жыл бұрын
Not into C at all but very educational and well explained. Thank you
@darthvader4899
@darthvader4899 Жыл бұрын
this is a GOLDEN content. Please keep it up. I love your channel it's unique.
@bazoo513
@bazoo513 Жыл бұрын
OK, this was, obviously, way oversimplified, with much more info available to us than would be to a typical attacker, but still it illustrates the principle of buffer overrun exploit, the most common of them all, very nicely.
@cristober
@cristober Жыл бұрын
though i knew most of what was said in the video, it was still really well made and i enjoyed it regardless, good job :D
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Glad you enjoyed it!
@houssem009
@houssem009 Жыл бұрын
i didnt understand whet he did at 6:35
@jordanreavis8163
@jordanreavis8163 Жыл бұрын
@@houssem009 If I'm understanding it correctly, he was gaining access to the shell (hence why it said entering debug mode) but since the program was crashing the shell would close before a would-be hacker could do anything. Adding the parenthesis and semicolon bypasses that. I'm not too familiar with Python/linux, but it reminds me of how the system("pause"); comand in C++ keeps the terminal window open and wait for user input
@tuxhome3686
@tuxhome3686 Жыл бұрын
This was really interesting! Loved it, keep em coming!
@LowLevelLearning
@LowLevelLearning Жыл бұрын
More to come!
@Tinetikon
@Tinetikon Жыл бұрын
Where have you been all my life? I needed this content ❤
@michaelhoefler5118
@michaelhoefler5118 Жыл бұрын
Exploit dev is so cool! Keep doing these!
@yapdog
@yapdog Жыл бұрын
Great info! *SUBSCRIBED*
@angelomarano8458
@angelomarano8458 11 ай бұрын
I think this is a perfect start
@yusinwu
@yusinwu Жыл бұрын
Glad that your channel got a sponsor! Thanks for the content
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Any time!
@sikkavilla3996
@sikkavilla3996 Жыл бұрын
I would recommend cyclic the command to find the location of where to put in the instruction pointer
@mochou-p
@mochou-p Жыл бұрын
"2" instead of "too" in the password would have been even cooler
@LowLevelLearning
@LowLevelLearning Жыл бұрын
damn it missed opportunity
@osamaaj
@osamaaj Жыл бұрын
Found this channel by pure chance and I'm glad I did!
@TheRealChiults
@TheRealChiults Ай бұрын
Or was it by pure well working algorithm? For me it was. Great channel!
@linonator
@linonator Жыл бұрын
Well, this video just made me turn all notifications from this channel to on. Great vid
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Welcome aboard!
@vamosrojo56
@vamosrojo56 Жыл бұрын
amazing content man! thank you
@grande1900
@grande1900 Жыл бұрын
Very nice video; though how would you find the debug() address on windows?
@tompol5433
@tompol5433 Жыл бұрын
amazing man !!! thank you very much !!
@RobertoAxt
@RobertoAxt Жыл бұрын
LOVE this video!!!!! Awesome!!!
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Yay! Thank you!
@vahidvaisi4392
@vahidvaisi4392 5 ай бұрын
Brilliantly, my friend(:
@xniyana9956
@xniyana9956 11 ай бұрын
Wow that's pretty cool.
@Masterix.
@Masterix. Жыл бұрын
Please keep uploading!
@MrChester114
@MrChester114 Жыл бұрын
Great video but what I don't get is how the buffer overflows. Why does it keep loading your input into the memory if there is not enough space for it in the buffer you've declared? Is it strictly because of how the gets() function works?
@ThatGenericName
@ThatGenericName Жыл бұрын
Lets say you're given some data. You load all that data into an array, and you use the gets() function to read a string from it. At a basic level, C is a very simple language. It only knows exactly what you have told it and so when you give it an array and tell it to pull out a string from it, it doesn't know where the end of the string is yet. What gets() does is that it keeps reading bytes until it reaches a special character that indicates that it has reached the end of the string. If it never reaches this character, it will keep reading bytes, and because you didn't tell the function (nor is there a way to) how big the buffer you want to put the final string into is, it will keep on reading forever if it never encounters this character. This is why gets() is considered unsecure/unsafe, and why as he mentioned that it will give you compiler warnings to not use that function. The recommended alternative is the function fgets(), which has an input that is "read at most this many characters". You would set this to the size of your buffer so that if it never encounters the character indicating the end of the string, it would stop before writing data past the buffer.
@williamdrum9899
@williamdrum9899 Жыл бұрын
The 64 in "char password[64]" is only there for C to know how many bytes to subtract from the hardware stack pointer. Once compiled, your program has no idea how big your array actually is. In fact, the only information the CPU has about your array is where it begins. The data type is only "known" in the sense that any index into the array is auto-multiplied by the size of each entry at compile time, without you having to write it as such. Now, as for gets(), it takes the beginning of your array as an argument, takes the user input, and copies it verbatim to your array. At no point is there any bounds check because as I said, that info is lost.
@clonkex
@clonkex Жыл бұрын
C is a very low-level language. A 64-byte array is simply a place in memory where 64 bytes are reserved. There's no checks to ensure you don't write outside that reserved area. You're expected to do the checks yourself in whatever way is most appropriate for your program. If you write past the end of those 64 reserved bytes in memory, you start overwriting stuff you weren't meant to overwrite. It could overwrite other code that would have otherwise executed (and now whatever you wrote to memory might get executed as code), or it might get lucky (or unlucky, depending on your perspective) and not overwrite anything important so nothing bad happens and no one ever finds the issue.
@phobosmoon4643
@phobosmoon4643 Жыл бұрын
dude this was fantastic! Thanks!
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Anytime
@moonshadowrev
@moonshadowrev Жыл бұрын
so great explanation and great demonstration keep it up bro if you can share more in medium community it would be great
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Thank you, I will
@stackbulls
@stackbulls Жыл бұрын
You are doing Very great job 👍
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Many many thanks
@guilherme5094
@guilherme5094 Жыл бұрын
Really nice👍👍
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Thanks a lot 😊
@somnathroy102
@somnathroy102 Жыл бұрын
This is so freaking cool. Edit: i click on 1 video and watch all 3 related to it. Man this is so awesome.
@shaharyarahmed5777
@shaharyarahmed5777 Жыл бұрын
Hey I had a question, at 5:48 you said that we had to reverse the order of the hex sequence since intel was 'little endian' , so why wasn't the hex sequence reversed in the compiled binary at 3:28
@marek9911_
@marek9911_ Жыл бұрын
The hex number 0x8049296 is stored as 96 92 04 08 in computer memory. But when we need to display it as hex computer will convert it to big-endian because that's how we read it. It's a bit hard to explain.
@scoreunder
@scoreunder Жыл бұрын
In 3:28, a tool is being used to display the binary, and it prints addresses in "human readable" form -- i.e. not just hex bytes, but the actual whole hex number in a way that makes sense to humans (like, so that 1000 is bigger than 0010).
@williamdrum9899
@williamdrum9899 Жыл бұрын
Because debug screens show it in the way we read numbers, not the way the computer does.
@dynodyno6970
@dynodyno6970 Жыл бұрын
Hi I really enjoy your vids. Thank you for uploading them.
@LowLevelLearning
@LowLevelLearning Жыл бұрын
My pleasure!
@adryelgainza1686
@adryelgainza1686 Жыл бұрын
Hey! I am loving the recent content but have to ask a question, arent operating systems increasingly protective over buffer overflows? Like modern windows versions make it near impossible from what I have heard.
@charlesnathansmith
@charlesnathansmith Жыл бұрын
It's much rarer to see one quite this simple show up anymore but the basic principle still applies. Anytime data can be affected that shouldn't be, it's a potential inroad to a working exploit
@charlesnathansmith
@charlesnathansmith Жыл бұрын
I gave an example in a response below, but anytime you have user supplied data stored before something they shouldn't be able to influence, bounds checking becomes important. They could overwrite other information your process uses that the OS or hardware don't know you care about: bool is_root_user = some_check(); char user_supplied[8]; gets(user_supplied); Supplying "AAAAAAAA\x01" could be a problem on little endian hardware, or even 'AAAAAAAA'+(anything non-null), depending on how the bool is evaluated later in the machine code You can still smash all sorts of things it's not specifically trying to prevent
@adryelgainza1686
@adryelgainza1686 Жыл бұрын
@@charlesnathansmith thanks for the replies really helps me understand!
@lucass8119
@lucass8119 6 ай бұрын
To an extent yes. For example, one common protection is making the data segment non-executable. This makes buffer overflows where malicious code is injected into the buffer impossible. Generally those work by filling the buffer with instructions and NOP's, and then over running it and jumping back into the buffer, then executing arbitrary code. Those, you can't do. But, these shown in the video are still possible. No malicious code is executed - we're jumping to a function that already exists! We can somewhat prevent these types of exploits by shuffling memory around run to run. But, while the memory may be offset, it will never be rearranged. The structure is set at compile time. So, we can still trial and error our way into an exploit.
@torphedo6286
@torphedo6286 Жыл бұрын
Thought you were John Hammond for a little bit and I was like "wow, he looks so different cleanshaven!"
@abdullah29498
@abdullah29498 Жыл бұрын
THANKS@!
@diligencehumility6971
@diligencehumility6971 Жыл бұрын
Wow. Does C# have same weaknesses? (Perfect video, 8 min long, easy to follow and understand, well explained, not too long)
@computer1889
@computer1889 Жыл бұрын
I hope not... I have high hopes that it was made as perfect as possible by Microsoft, making sure that the mistakes by the past programming languages will not get repeated 😌
@williamdrum9899
@williamdrum9899 Жыл бұрын
No.
@clonkex
@clonkex Жыл бұрын
No. It (presumably) has other weaknesses but it's much MUCH harder to screw yourself over with memory issues. Being a managed language means it incorporates checks and safeties into the memory access code, so you can't just write past the end of an allocated buffer. C expects you to create your own checks and safeties, which is impossible to do reliably and is why we have higher-level languages like C#.
@clonkex
@clonkex Жыл бұрын
@@harissalam1421 It's not drivel at all. 70% of both Microsoft's and Google's security bugs have been memory-related. That tells me that no matter how hard you try, it's impossible to be absolutely certain you haven't introduced memory bugs. Probably the really good programmers have very low incidence of memory issues, but the evidence suggests that no matter how good you are, you'll screw up eventually.
@wrnlb666
@wrnlb666 Жыл бұрын
what function instead of read() should we use to avoid buffer overflow from this situation. On windows, we have scanf_s, do we just use scanf with %[num]s or there exist some other "safer" function on unix?
@v01d_r34l1ty
@v01d_r34l1ty Жыл бұрын
You could use "fgets". The following should work, but not tested: char myString[30]; fgets(myString, 30, stdin); Edit: However... usually for C programs I've been in the habit of recommending Rust since C doesn't have as many safeguards as C++ nowadays.
@wrnlb666
@wrnlb666 Жыл бұрын
@@v01d_r34l1ty rust is a good language, but it is indeed harder than c and cpp. The memory management of rust is just so different.
@v01d_r34l1ty
@v01d_r34l1ty Жыл бұрын
@@wrnlb666 Personally the things keeping me from Rust are the insane levels of abstraction used, the insane overhead (i.e. overuse of macros), and the long compile times. The memory management I found quite easy since a lot of tutorials are available on KZfaq, but regardless wouldn't recommend if you already know safe modern C++. Lot easier and more straightforward to impl. this feat. in C++ with std::cin, std::string, and getline.
@williamdrum9899
@williamdrum9899 Жыл бұрын
The reason gets() is unsafe is because it neither knows nor cares how big your array is. It'll blindly write user input to memory until the user is done. fgets takes the count parameter and won't write past that
@wolfram77
@wolfram77 Жыл бұрын
Isnt the address of debug() function going to change when it is loaded into memory? I remember something like relocateable executable, but not sure.
@williamdrum9899
@williamdrum9899 Жыл бұрын
Yes, but it's still going to be relative to main. Now, you still need its absolute address to perform this hack, since RET takes the top of the stack verbatim as the destination.
@wolfram77
@wolfram77 Жыл бұрын
Thanks. For DOS I think it was easier if you used a near call.
@riotfist9747
@riotfist9747 Жыл бұрын
is it bad that i dont space my brackets? I have them attached to their control struct or function.
@viktoreidrien7110
@viktoreidrien7110 Жыл бұрын
thanks man, more please
@LowLevelLearning
@LowLevelLearning Жыл бұрын
More to come!
@Marco-rv7ec
@Marco-rv7ec Жыл бұрын
can u please tell me the distro ure using in this video
@MannyXVIII
@MannyXVIII Жыл бұрын
I am note even remotely a coder, but I did write a horribly if then nested piece of code in LUA in Minecraft with the ComputerCraft mod and have been wanting to make a mostly secure password Programm from scratch for me there, too. I wonder if I can break that like this too ...
@elllieeeeeeeeeeeeeeeeeeeeeeeee
@elllieeeeeeeeeeeeeeeeeeeeeeeee Жыл бұрын
Lua is not going to act at all in the same way as C
@MaxwellDoesStuff
@MaxwellDoesStuff Жыл бұрын
Assuming your program was some remote server, how would you get the address from it? Is that just based on hoping the program is the public build artifact?
@emperorpalpatine6080
@emperorpalpatine6080 Жыл бұрын
well , that's actually where the difficulty of exploiting a remote software comes from. Usually what you would try to do , is to play with it , and fuzz it until you leak a program's name , a version , an OS version and so on. if you know what program is running and what version , you can just download it , and test at your side while emulating the same environment as your target. you could decompile it , and check what interesting functions are in what memory offset.
@cj.wijtmans
@cj.wijtmans Жыл бұрын
by tunneling the file contents? i dont see how remote changes the exploit.
@kylek3822
@kylek3822 4 ай бұрын
Modern (post 90s) c compilers have compiler flags that protect function return addresses (shadow stack). In fact trying this on gcc version 13.2.1 gives with NO compiler flags gives: *** stack smashing detected ***: terminated rather than a segfault (perhaps my cpu just has better CFI?).
@mohamedhabibjaouadi6591
@mohamedhabibjaouadi6591 Жыл бұрын
What protections did you disable for this demo?
@LowLevelLearning
@LowLevelLearning Жыл бұрын
Literally all of them lmao
@mohamedhabibjaouadi6591
@mohamedhabibjaouadi6591 Жыл бұрын
@@LowLevelLearning can you put a readme with a quick guide on disabling protections? (I think it would be an interesting topic for a video) Anyway ty for the good content ^^
@dylanlahman5967
@dylanlahman5967 Жыл бұрын
I just discovered a whole new interest watching this video
@alexrossouw7702
@alexrossouw7702 Жыл бұрын
Can you make one of these videos with the arduino environment: methods such as Serial.read() etc ??
@mnonom_yt381
@mnonom_yt381 Жыл бұрын
c: a language python: a snake language for hackers
@LowLevelLearning
@LowLevelLearning Жыл бұрын
accurate
@Test-iv4pm
@Test-iv4pm Жыл бұрын
How do we know (as hypothetical hackers) that we want to look for the debug() function?
@charlesnathansmith
@charlesnathansmith Жыл бұрын
Because in this simple example you have the source and access to the binary you're trying to exploit compiled with symbol information and branching there is what you want it to do More often with something like this example you'd end up digging through the assembly for somewhere useful to return to, or if you find a way to predict the buffer address and there's no data exec protection you could supply your own code
@clonkex
@clonkex Жыл бұрын
Real hacking is a lot of hoping and guessing. With experience you can recognise common patterns and know where to guess first, but it often just comes down to persistence and chance.
@Ma_X64
@Ma_X64 Жыл бұрын
Is it possible to use the buffer overflow on an MCU considering that MCU is running its program from the flash and the buffer, obviously, is in RAM?
@clonkex
@clonkex Жыл бұрын
Yep. Buffer overflow vulnerabilities can occur in almost any hardware. They're one of the most basic forms of vulnerability and have existed since the beginning of computers. Even if the code is stored in separate memory from the main RAM, there's still the potential to trigger different behaviour by changing the state of the main RAM.
@Ma_X64
@Ma_X64 Жыл бұрын
@@clonkex Thanks for your answer.
@wiiznokes2237
@wiiznokes2237 Жыл бұрын
Why there is the full name of fonction in thé executable, that take place for nothing right?
@zofe
@zofe Жыл бұрын
In better processors (ARM, Aurix) the return-address (of the instruction pointer) is stored in a register i.e. separated from the stack.
@xanri7673
@xanri7673 Жыл бұрын
The caller's caller and so on are still on the stack, at least in ARM.
@zofe
@zofe Жыл бұрын
@@xanri7673The caller's what?
@ImNetheN
@ImNetheN Жыл бұрын
@@zofe the caller's caller
@meneldal
@meneldal Жыл бұрын
If you call function B from function A and C from function B, you have to store the return to function A during your call to C.
@williamdrum9899
@williamdrum9899 Жыл бұрын
Don't forget that main was called by your OS. And since main calls another function, main has to store its link register value somewhere so that when "bl gets" is run, the link register isn't clobbered. And where does LR get stored? On the stack.
@loganiushere
@loganiushere Жыл бұрын
I have a question: In c++, is the string standard library safe or is it vulnerable to similar attacks to what’s seen here?
@filipoda123
@filipoda123 Жыл бұрын
string isn't a lib 💀
@loganiushere
@loganiushere Жыл бұрын
@@filipoda123 it’s part of the standard library
@filipoda123
@filipoda123 Жыл бұрын
@@loganiushere well yea, but if the standard lib would be that vulnerable then that language should be already updated long ago
@williamdrum9899
@williamdrum9899 Жыл бұрын
I don't think that c++ uses gets() but arrays still forget their element count when you pass a pointer to them as a function argument. I think so, anyway
@cj.wijtmans
@cj.wijtmans Жыл бұрын
You dont use null terminated strings in C++. you dont pass raw pointers in C++ either. std::string_view holds the pointer and the length of the string. So in C++ you never iterate over the buffer unless the buffer length variable is corrupted, which in any language is unavoidable. Also i think a huge mistake in programs is storing raw password in memory or in files. Also C++ is fully backwards compatible with C. So you CAN use null terminated strings, raw pointers or even use gets() but that is just the programmer not correctly utilising C++ but lets you write your own containers easily. Also in C++ you would not use char buffer[64]. You would use std::array and i am pretty sure std::cin with std::array would not produce a buffer overflow.
@peterwan7945
@peterwan7945 Жыл бұрын
Why would hacker have the execution file? And does this trick works on interpreted languages?
@alexe3332
@alexe3332 Жыл бұрын
1. Finds address of debug function 2. Accesses debug function with the overflowing byte string where the overflow is the debug functions address. (Piping from exploit.py to hacked.c) - happens at gets(password). 3. Use file descriptor command to gain access to the system function which gives access to the shell. (Where the password is) 4. Cat password Where in the gets function is the debug function executed? In a catch block while printing?
@williamdrum9899
@williamdrum9899 Жыл бұрын
It's not. It's using the CPU's return instruction, which is a computed GOTO to whatever is on top of the stack. gets() is what allows us to change the value of the top of the stack which we couldn't really do normally
@alexe3332
@alexe3332 Жыл бұрын
@@williamdrum9899 thanks
@alexe3332
@alexe3332 Жыл бұрын
@@williamdrum9899 thanks
@gaiuszeno1331
@gaiuszeno1331 Жыл бұрын
Why wouldn't your code be compiled as a PIE with ASLR and SSP? Buffer overflows while still a major problem deferring address resolution until runtime with a cannery to pick up accidental overruns would lessen the number of people that could feasible attack the process.
@charlesnathansmith
@charlesnathansmith Жыл бұрын
Because this is an illustrative example of the basic concepts. There has been tons of research put into predicting canaries, DEP bypasses, and you can always overrun things like heap buffers or buffers that are in memory before other important variables. If your memory looks like: bool has_root; char user_input[8]; And don't do proper bounds checking you could still have a very bad day You can't rely on the compiler and hardware and ignore fundamental security concepts
@Play_Now
@Play_Now Жыл бұрын
Cybersecurity noob here; I have a question. You only knew the address of debug() because you had access to the compiled executable. How would someone hack in over the net not knowing the address of the function?
@seubmarine5347
@seubmarine5347 Жыл бұрын
If they have access to the executable then they can look at the assembly all they want and there's a lot of different way to try to break a program
@unperrier5998
@unperrier5998 Жыл бұрын
At 2:00 I appreciate the craft of running just the right amount of comands to reach pid 4567
@LowLevelLearning
@LowLevelLearning Жыл бұрын
C A L C U L A T E D
@Ryan-xq3kl
@Ryan-xq3kl Жыл бұрын
I appreciate this video, however can you do an example that might be more subtle? Just something that doesn't involve gets or another already known red-flag function.
@williamdrum9899
@williamdrum9899 Жыл бұрын
This can also be done with printf() if you allow the user to type their own format string (something you should never allow)
@pwf2k
@pwf2k Жыл бұрын
Right when you pressed enter at 2:21 KZfaq crashed because it was updating lmao
@djemi3etelminigeekandhacke343
@djemi3etelminigeekandhacke343 6 ай бұрын
If your vulnerable program had the +s as premision, it could be used to privilage escalation, pleas make this remark in your next video, since it is important.
@davidgomez79
@davidgomez79 Жыл бұрын
you forgot bonus points if you use alphanumeric shellcode.
@LowLevelLearning
@LowLevelLearning Жыл бұрын
ASCII SHELLCODE EZ
@_inetuser
@_inetuser Жыл бұрын
rly cool
@theondono
@theondono Жыл бұрын
Hack The Box speedrun incoming?
@LowLevelLearning
@LowLevelLearning Жыл бұрын
🤫
@TimothyChapman
@TimothyChapman Жыл бұрын
Why would the executable file contain any information about the names of the functions?
@JacksonBockus
@JacksonBockus Ай бұрын
Makes debugging easier.
@jimmiejohnsson2272
@jimmiejohnsson2272 Жыл бұрын
Security on computers is just like security anywhere else, its all about how much security you need. For a lot of software, this exploit (except for the fact that it casuses a crash when the user inputs a password that is to long) is not something you need to worry about. For the same reason a pad lock is fine to use on your bike. Its hard enough to discourage people from even bothering because the benefit of breaking in is not worth the hassle of figuring out how. In my experience, buffer overflow attacks are (for any meaningful gains) usually way to hard to be a worth while endevaor (asides from possibly causing software to crash and using that to cause a service to be down).
@williamdrum9899
@williamdrum9899 Жыл бұрын
They're hard because the hardware was built to make them harder. I imagine in the days of MS-DOS they were piss easy (no ASLR, no protected regions, no segfaults) you could just JMP anywhere you wanted
@prog966
@prog966 Жыл бұрын
great tutorial, but what if you don't have access to the source code?
@djmaster1110
@djmaster1110 4 ай бұрын
For a school exercice i am trying to catch a flag by reading a non public file inside a db. The requesthandler is profided and the password use a bf of size 72. whenever i try a bucrash i get this error ERROR InvalidStackCanary ERROR SubProcessCrashed
@R0Tc1ph3r
@R0Tc1ph3r Жыл бұрын
I love you man
@jakusbarnabas
@jakusbarnabas Жыл бұрын
In no way did he start of the video by breaking bad.
@coderoyalty
@coderoyalty Жыл бұрын
Hmmm,,, Reminds me of the book by jon erickson. Hacking Art of Exploitation.
@ToughMrBones
@ToughMrBones Жыл бұрын
I like your funny words magic man
@Pence128
@Pence128 Жыл бұрын
The title implies the solution is to just make the buffer longer. It should be called "what happens when you don't use fgets()"
@Basement_crusader
@Basement_crusader 4 ай бұрын
If buffer overflows are such an obvious exploit, why do we permit core dumps?
@navjotsinghsidhu3590
@navjotsinghsidhu3590 2 ай бұрын
Please tell me how i can be able to leaen a new language without forgetting C
@thisisnotok2100
@thisisnotok2100 Жыл бұрын
this guy is p cool. low level gang 4 lyfe
@LowLevelLearning
@LowLevelLearning Жыл бұрын
#LLG
@ChristopherBradfield
@ChristopherBradfield Жыл бұрын
Interesting for debugging your local code, but a "how to fix this hole" closing would be better for teaching.
@redcrafterlppa303
@redcrafterlppa303 Жыл бұрын
I think we should just leave memory unsafe languages in the past. Having possible buffer overruns, bad pointers, etc. is just to dangerous in today's world. And they easily avoidable by using a memory safe language.
@williamdrum9899
@williamdrum9899 Жыл бұрын
For internet apps, definitely. For electronics that don't take strings as input, not a big deal
@redcrafterlppa303
@redcrafterlppa303 Жыл бұрын
@@williamdrum9899 bad pointers and memory bugs often come from string inputs. But not all. Many come from offset miscalculations, bad array indexes, use after free, double free, the list goes on. These are all bugs resulting from manual management of pointers. Especially electronics like robots in factories these kinds of bugs can be catastrophic. So no there is no argument to continue to create new commercial products in c/c++ besides things like missing tools/ game engines.
@williamdrum9899
@williamdrum9899 Жыл бұрын
@@redcrafterlppa303 Sometimes you gotta go fast
@redcrafterlppa303
@redcrafterlppa303 Жыл бұрын
@@williamdrum9899 rust is as fast as c and c++. Which is the reason it is so appreciated by the community. It produces memory safe easy to read high level feeling blazingly fast code.
@williamdrum9899
@williamdrum9899 Жыл бұрын
@@redcrafterlppa303 That's fair. I guess C is like the QWERTY Keyboard of programming languages: its purpose is no longer needed but we keep using it anyway despite that, because so many people know it and it usually gets the job done
@espero_dev
@espero_dev Жыл бұрын
i never seen some one use tail linux for coding or exploit finding or hacking
@ic6406
@ic6406 Жыл бұрын
But why buffer overflow causes instruction pointer to be overwritten?
@scoreunder
@scoreunder Жыл бұрын
In order to let the function return to the correct place in the code when it finishes, a function's return address is pushed onto the stack when it is called. The stack is the same place that local variables go, so in a way the return address is like the "0th" local variable that a function has. Add that to the fact that new items go on the stack at lower addresses (the bottom of the stack is at its highest address), and that means that the local variables of a function will come somewhere in memory before -- and close to -- their return address. Thus, when buf is overflowed, it at some point overwrites the return address and once that is read by the CPU it just blindly follows it to somewhere it's not meant to go.
@williamdrum9899
@williamdrum9899 Жыл бұрын
In order for the CPU to know where to return after a function call, a pointer to the line of code after the call is stored, either in a special register or in this case on the stack. The CPU doesn't know or care if this return address is correct. The CPU's return instruction sets the instruction pointer equal to this return address (effectively a goto that ignores scope), even if the address was altered during the function. C is smart enough not to store local variables over the return address, but arrays... not so much.
@cherubin7th
@cherubin7th Жыл бұрын
using c or c++ is basically begging for getting hacked
@yuytbe
@yuytbe Жыл бұрын
When i try this in my WSL2 ubuntu installation, I successfully build the program using the build.sh file and cause the segfault with a big input, but it doesn't say "core dumped" and the dmesg command doesn't say anything about a segfault. Is there some other stuff I need to do?
@xiaochris7467
@xiaochris7467 Жыл бұрын
gets() is a dangerous deprecated C function...
@williamdrum9899
@williamdrum9899 Жыл бұрын
void gets(char* array) { while(1) { array[0] = userinput; array++; if (userinput == ENTER_KEY){goto done;} } done: }
@Haaaaaaaaarper
@Haaaaaaaaarper Жыл бұрын
smart
@CallousCoder
@CallousCoder Жыл бұрын
A manager 😂😂😂
@LowLevelLearning
@LowLevelLearning Жыл бұрын
XD
@BobChess
@BobChess 4 ай бұрын
Just make the string store infinite of characters. Easy Solution!
@Bytesfarming
@Bytesfarming Ай бұрын
Hi i would like to know something from you will you tell me ?
@OmegaMusicYT
@OmegaMusicYT Жыл бұрын
If you have access to the compiled binary cant you just edit it and write a call to the debug function at the start of the program? I cant see why you would need to write a python exploit and overflow the buffer.
@gingeral253
@gingeral253 Жыл бұрын
Hacking ideas.
@joshingaboutwithjosh
@joshingaboutwithjosh Жыл бұрын
Would be good if you could add timestamps outlining the steps
@jasonsachinger3276
@jasonsachinger3276 Жыл бұрын
You want timestamps for an 8 minute video? What a world we live in where people cannot even be bothered to take less than 10 minutes to focus on a topic and instead want a shortcut for everything.
@31redorange08
@31redorange08 Жыл бұрын
@@jasonsachinger3276 tl;dr
how can memory safe code STOP HACKERS?
7:43
Low Level Learning
Рет қаралды 108 М.
Glow Stick Secret 😱 #shorts
00:37
Mr DegrEE
Рет қаралды 137 МЛН
Последний Закат Кота Макса...
00:21
Глеб Рандалайнен
Рет қаралды 7 МЛН
NO NO NO YES! (50 MLN SUBSCRIBERS CHALLENGE!) #shorts
00:26
PANDA BOI
Рет қаралды 97 МЛН
How to debug PHP in Visual Studio Code (Simple steps)
5:59
coderJeet
Рет қаралды 41 М.
Running a Buffer Overflow Attack - Computerphile
17:30
Computerphile
Рет қаралды 2 МЛН
GPUs You can buy for $100 and under in 2024
11:25
Dragon Systems
Рет қаралды 2
researchers find unfixable bug in apple computers
8:32
Low Level Learning
Рет қаралды 690 М.
every good programmer should know how to code this data structure (its easy)
21:08
everything is open source if you can reverse engineer (try it RIGHT NOW!)
13:56
Low Level Learning
Рет қаралды 1,2 МЛН
what ever happened to buffer overflows?
7:09
Low Level Learning
Рет қаралды 73 М.
How principled coders outperform the competition
11:11
Coderized
Рет қаралды 1,5 МЛН
rust runs on EVERYTHING (no operating system, just Rust)
18:10
Low Level Learning
Рет қаралды 342 М.
Naming Things in Code
7:25
CodeAesthetic
Рет қаралды 1,9 МЛН
XL-Power Best For Audio Call 📞 Mobile 📱
0:42
Tech Official
Рет қаралды 768 М.
⌨️ Сколько всего у меня клавиатур? #обзор
0:41
Гранатка — про VR и девайсы
Рет қаралды 575 М.
😱НОУТБУК СОСЕДКИ😱
0:30
OMG DEN
Рет қаралды 2 МЛН
How much charging is in your phone right now? 📱➡️ 🔋VS 🪫
0:11