Тёмный

Understanding Fork Bombs in 5 Minutes or Less 

Engineer Man
Подписаться 537 тыс.
Просмотров 167 тыс.
50% 1

You've probably seen a fork bomb before, but do you understand how it works? In this video you'll find out.
Hope you enjoyed the video!
Check out some code on my GitHub:
github.com/realtux
github.com/engineer-man/youtube
Other Social:
/ engineerman
/ _engineerman
/ discord

Наука

Опубликовано:

 

6 дек 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 130   
@EngineerMan
@EngineerMan 6 месяцев назад
Warning: Don't run this on your own system. If you want to test it, create a VM like I did.
@VRixxo123
@VRixxo123 6 месяцев назад
Why not. Does it not go away ?
@acu01136
@acu01136 6 месяцев назад
Surely hard rebooting the system stops the issue though? With all the normal problems with hard reboots ofcourse.
@benargee
@benargee 6 месяцев назад
He probably means that it's the easiest environment to test in and as a general disclaimer to not mess up a system critical machine. At the end of the day you can do whatever you want with your own hardware, just that he's not endorsing it.
@daidaloscz
@daidaloscz 6 месяцев назад
Nobody can stop me from running this on our production cluster. (I have sudo)
@iuhere
@iuhere 6 месяцев назад
Someone (YKIYK) said - Why are the warnings at the end of the book 😉
@lillii9119
@lillii9119 6 месяцев назад
Short version: it creates a function called : that calls itself infinitely Also it calls 2 functions for each function which run at the same time so each step the number of functions is doubled
@glukogen5674
@glukogen5674 6 месяцев назад
*Force Multiplication*
@demipy
@demipy 6 месяцев назад
I know this classic for over a decade now, but this was such a great video explaining it in detail! Thats the content i love this channel for. No BS straight to the point. ❤
@flipperiflop
@flipperiflop 6 месяцев назад
Great explanation! The expanded version really made it go from black magic to "oh it's that simple"
@tc2241
@tc2241 6 месяцев назад
I love videos like these. Straight to the point, clearly explained with concise examples and demonstrations
@alicefraser5799
@alicefraser5799 6 месяцев назад
That's why I love your content EM. Learning so much from you. Keep them coming :)
@paulm3702
@paulm3702 6 месяцев назад
Wow that's interesting! Love the breakdown of how that code actually worked
@comosaycomosah
@comosaycomosah 6 месяцев назад
dude idk how i havent came across your content yet but i dig it.
@alexanderaphonin7850
@alexanderaphonin7850 6 месяцев назад
Great video, great explanation! Thank you for putting in the effort each time!
@EngineerMan
@EngineerMan 6 месяцев назад
Thanks for the kind words.
@n8style
@n8style 6 месяцев назад
Fantastic explanation, quality video
@YammoYammamoto
@YammoYammamoto 5 месяцев назад
The colon being a valid function name was what blew my mind. :D
@yousefm.b4260
@yousefm.b4260 6 месяцев назад
Wow!! this guy actually explained it very well.. I like it
@HadToChangeMyName_YoutubeSucks
@HadToChangeMyName_YoutubeSucks 6 месяцев назад
I've seen it a number of times recently. Used to be kind of common, then it seemed to get old and I didn't see it so much, now it seems to be common again.
@loverboykimi
@loverboykimi 6 месяцев назад
Great education. Appreciated.
@h3dzer
@h3dzer 6 месяцев назад
I love this new series
@revx144
@revx144 4 месяца назад
I actually did this in my phone, good thing I did some buttons and it restarted. I was so scared but I was relieved when it restarted successfully.
@penguinpatroller
@penguinpatroller 6 месяцев назад
great video. concise and informative
@warchild3948
@warchild3948 6 месяцев назад
" this is the initial call to fork me" How did you say that with a straight face.. Cuz I am rolling 😂 😂
@rogo7330
@rogo7330 6 месяцев назад
Pipe is not the real issue here that causes program to explode. When you running a function, shell executes whatever command you gave it (and forks itself to execute external programs), but ampersand makes shell not to wait for a job to complete and then return but instead put that job in a background and let user to cleanup it with a wait command manualy. What is a job? Job is basically a group of processes with the same Process group ID (read manpage 7 credentials to learn more). Shell, when you launch several command with a pipe between them, first calls fork, then in a child assigns the same PGID as it's PID to itself, then it calls more forks which will inherit the same PGID (despite having new PIDs) with their stdins and stdouts connected one to another, and then each of that child executes whatever command you gave it to execute. Why PGID needed? To call kill command on the whole group of processes with the same PGID instead of calling kill to each one of them, or even lose control when initial child died and replaced itself with a new process with new PID. Since PGID is inherited by the child, and if child does not changes it explicitly by calling setpgid, you can just `kill -- -${child_pid}` (notice the minus before the process id and double-minus to make kill take that negative pid not as another option but as a pid value). This is how shell kills the whole pipe sequence at once. And yes, if child changes its PGID, its becoming immune to group kill (the game was rigged from the start), which does makes sence, but its hard to work around this if you really want to end all child and grandchildren processes, if at all possible. Try to write cron yourself, you will spend on it at least a hour or two of experimenting with what works and what not if you start from scratch knowing nothing about jobs, PGID, SID, what kill and wait calls allow you to do and what permissions you have to play with for changing processes credentials.
@chawrx3
@chawrx3 6 месяцев назад
keep it up brother, have a nice day everyone
@jackflowt
@jackflowt 6 месяцев назад
Great explanation!
@prinnydadnope5768
@prinnydadnope5768 6 месяцев назад
Very clear, thank you again
@Evercreeper
@Evercreeper 6 месяцев назад
Excellent video
@headlights-go-up
@headlights-go-up 6 месяцев назад
great explanation!
@lancemarchetti8673
@lancemarchetti8673 5 месяцев назад
Cool! I've created a jpeg bomb of 530 bytes that renders 4 billion pixels to the screen when opened. It freezes my laptop.. lol. I achieved this neat trick in Notepad ++ by accident when editing the Hex values in the dimensions sector of the code....
@BradenJohnYoung
@BradenJohnYoung 6 месяцев назад
Great explanation
@iskuben88
@iskuben88 6 месяцев назад
great video! Brings back memories of crashing uni sun-ray clients ;)
@ABaumstumpf
@ABaumstumpf 6 месяцев назад
You can do the same on Windows, but normally the system does not outright crash and you can recover from that (with taskmanager).
@takuya.yagami.
@takuya.yagami. 6 месяцев назад
Great video
@SomeGuyInSandy
@SomeGuyInSandy 6 месяцев назад
You have to love it!
@okunamayanad
@okunamayanad 6 месяцев назад
i understood the fork bomb at 1:00 great title
@VivekYadav-ds8oz
@VivekYadav-ds8oz 6 месяцев назад
Cant you do the same thing without the pipe? It feels like f(){f&}; f should do the same job. If you want to increase the forks exponentially, just have each function run two other ones like so: f(){f&; f&}; f
@ktheveg
@ktheveg 6 месяцев назад
Might be written with a pipe to make things neater or smaller
@prontomatias3081
@prontomatias3081 6 месяцев назад
look at @rogo7330 comments
@Apersonl0l
@Apersonl0l 6 месяцев назад
so it's basically how all my recursion functions go? :))))
@willmckeand
@willmckeand 6 месяцев назад
Pipe bomb would've been a great name for this
@mrdzha9519
@mrdzha9519 5 месяцев назад
thanks, it was interesting!
@nnutipa
@nnutipa 6 месяцев назад
Thanks. But the most interesting part with pipe and fork itself were not covered:( You said pipe is what actually creates a fork bomb, but why?
@patocarrasco6266
@patocarrasco6266 6 месяцев назад
yeah, I also missed that. In my head, the second argument is waiting for the given input by the first one, so it should remain inactive. The only thing that I know is that the prior is wrong xD
@prontomatias3081
@prontomatias3081 6 месяцев назад
look at @rogo7330 comments
@DerMigi
@DerMigi 6 месяцев назад
@@patocarrasco6266this is the exact same question I have. Does anyone have an answer?
@Turalcar
@Turalcar 5 месяцев назад
Piped processes are launched by bash in parallel
@iangraham6730
@iangraham6730 6 месяцев назад
Noice 👌 Thanks for sharing 👍
@matejhurta5626
@matejhurta5626 6 месяцев назад
I kinda accidentally let it loose on the uni network and it crashed the network for a few days and I got failed :(
@SoreBrain
@SoreBrain 6 месяцев назад
It's tempting
@davidserrano2091
@davidserrano2091 6 месяцев назад
Time to run it on my system
@repairstudio4940
@repairstudio4940 6 месяцев назад
Awesomeness 🎉
@joey3070
@joey3070 5 месяцев назад
Delightful
@macethorns1168
@macethorns1168 6 месяцев назад
The only reason I was confused when I first saw this was that I didn't know you could use a colon as a function name. It makes much more sense as f(){f|f&};f It seems many modern 'nux systems default to limiting the number of forks a process can start now.
@theoreticalaxolotl2804
@theoreticalaxolotl2804 20 дней назад
My roommate will love this prank
@cepi24
@cepi24 6 месяцев назад
How did you replace semicolons with text?
@garrysingh4484
@garrysingh4484 6 месяцев назад
Awesome 👍
@L-Coder
@L-Coder 6 месяцев назад
type the command 'gnome-terminal' (or any other command that opens a bash shell) in the end of the .bashrc file and save it and then see the magic when you open a terminal.😂 You might to do it in the .zshrc file depending on the type of shell you are using (bash or zsh = Bourne Again Shell or Z shell).
@tobiashelbing1233
@tobiashelbing1233 6 месяцев назад
Great!
@Baltr
@Baltr 6 месяцев назад
are you able to pipe it multiple times inside the same command to make it crash the system faster?
@alexholker1309
@alexholker1309 6 месяцев назад
I don't think it would make a meaningful difference. You'd crash the system in fewer generations, but it would take longer to resolve each instance of the process.
@bashisobsolete.pythonismyn6321
@bashisobsolete.pythonismyn6321 6 месяцев назад
when you use fish shell for several good reasons and the "expert professionals" roll their eyes at you.
@richarduton
@richarduton 6 месяцев назад
This isn't a fork bomb it's a picture of a cat.
@EnglishRain
@EnglishRain 6 месяцев назад
Nice didn't know you could limit number of processes for a user
@GeorgeAlexanderTrebek
@GeorgeAlexanderTrebek 6 месяцев назад
Spoon Nuke next plz
@connorallen162
@connorallen162 6 месяцев назад
Oh THAT's why you don't want everything to be run by the root user
@DUMBDUDEGAMER
@DUMBDUDEGAMER 6 месяцев назад
I wonder how this does on WSL
@Alex-cb5go
@Alex-cb5go Месяц назад
do you need the &?
@mynameismynameis666
@mynameismynameis666 6 месяцев назад
forbidden emojis are teh most powahful
@saptamdutta
@saptamdutta Месяц назад
hey guys i want to know what other pranks have u done like this?
@m3sm4r2010
@m3sm4r2010 6 месяцев назад
fyi: i have tested this code on my android phone and it works 😂
@Drogobo
@Drogobo 6 месяцев назад
what do you mean by "friends on linux"?
@hkkis7836
@hkkis7836 6 месяцев назад
Could you please show your hotkeys for the editor?
@sam_ldm
@sam_ldm 6 месяцев назад
what if i write this in my bashrc ?
@adrianbool4568
@adrianbool4568 6 месяцев назад
Fork me, that was a good video! ;-)
@shahfaisal3923
@shahfaisal3923 6 месяцев назад
you won a subscriber
@victorsubbiah6077
@victorsubbiah6077 5 месяцев назад
shouldn't proliferating dummy processes just hang the system forever? why would it crash the system anyway?
@devviz
@devviz 6 месяцев назад
if you set the video playing speed fast enough you can almost hear "fork me" to another very similar term
@RlainTheFirst
@RlainTheFirst 6 месяцев назад
What about :(){:&;:&);: Also exponential or linear?
@patfre
@patfre 6 месяцев назад
It will do the same as at 4:25
@KangJangkrik
@KangJangkrik 6 месяцев назад
Ran this on production server for fun, bos didn't seem really enjoy it
@mikerope5785
@mikerope5785 6 месяцев назад
i was sad when browsers started detecting and halting infinite javascript recursions
@louisdrouard9211
@louisdrouard9211 6 месяцев назад
Does not :(){:&;:&} do the same thing (without pipe) ?
@K_Forss
@K_Forss 6 месяцев назад
I remember my first attempt at a fork bomb, it was perhaps 15 years ago in high school and I wrote it in C, it didn't really work too well, I probably had some more advanced scheduler than I thought and while it slowed down my computer I was able to still kill the process. But I added a small malloc (about 4k if I remember correctly) in the loop ant it totally freezed my computer in seconds. Fun times Edit: If I had known more when I was young I'd probably done a mix of forking and daemonizing to try to hit it harder
@rebel478
@rebel478 6 месяцев назад
Oh no I'm wrong, your right eyebrow is still always higher than the other one
@docker31c
@docker31c 6 месяцев назад
So i got trolled in a stackoverflow question...
@Cassandra_Johnson
@Cassandra_Johnson 6 месяцев назад
ah yes, for(;;){fork();} good times...
@cmoor8616
@cmoor8616 6 месяцев назад
Reminds me of the prankster batch files for cmd.exe I used to make during my windows years. The simplest I managed to create (DO NOT RUN THIS) %0 >> %0 %0 With an empty line after,
@kiyasuihito
@kiyasuihito 6 месяцев назад
Hilarious 🎉
@HiddenTreasure-xj7yt
@HiddenTreasure-xj7yt 6 месяцев назад
I made a batch bomb in the 90s.
@The_Pariah
@The_Pariah 6 месяцев назад
So you watched Dave's Garage and made your own fork bomb video. K.
@chromosome24
@chromosome24 5 месяцев назад
I prefer the spoon bomb
@danielbaker1248
@danielbaker1248 3 месяца назад
Fork me, this is interesting!(:
@cni_povkit
@cni_povkit 6 месяцев назад
"Fork me". That's what she said.
@philipzhu5194
@philipzhu5194 6 месяцев назад
What happens if instead of piping, you start 2 background processes each time? like :(){:&:&};:
@iuhere
@iuhere 6 месяцев назад
stress testing without a stop 🛑 button 😅
@clockblower6414
@clockblower6414 6 месяцев назад
You can fix a lot of problems in Linux by running sudo dd if=/dev/null of=/dev/sda
@Angelinajolieshorts
@Angelinajolieshorts 4 месяца назад
Can you please tecah us these skills. Please 🙏🙏🙏
@ai-spacedestructor
@ai-spacedestructor 6 месяцев назад
the VM setup is questional, you said you had to restart your system and the VM. sounds like you gave it too much pc resources or using some vm i never heard about before which doesnt asign a limited number of resources in order to run it.
@EngineerMan
@EngineerMan 6 месяцев назад
I only had to restart the VM, not my whole system.
@ai-spacedestructor
@ai-spacedestructor 6 месяцев назад
@@EngineerMan you did say in the video something about your vm and the whole system after it crashed. might have misunderstood but to me it did sound like you said you had to restart the whole system.
@n0tjak
@n0tjak 6 месяцев назад
hi :)
@Alex-eq1cs
@Alex-eq1cs 2 месяца назад
Systemd solution this.... Límite del 30% de procesos máximos del sistema.
@florianmattausch8563
@florianmattausch8563 6 месяцев назад
It is Not exponential. it is just times 2.
@patfre
@patfre 6 месяцев назад
Exponential is repeated multiplication. So it is exponential because it is multiplying by 2 over and over
@colonthree
@colonthree 6 месяцев назад
Cat :3
@enty-3035
@enty-3035 4 месяца назад
%0|%0 is the windows version it is fun
@googleuser4720
@googleuser4720 6 месяцев назад
Is your name a Daniel?
@rebel478
@rebel478 6 месяцев назад
How is your eyebrow straight again
@cruz1ale
@cruz1ale 6 месяцев назад
fork bombs are for dorks
@MrGeekGamer
@MrGeekGamer 6 месяцев назад
"There is ways" There are.
@mikebresnahan8682
@mikebresnahan8682 6 месяцев назад
Being an old fart, I have to point out that the fork bomb existed prior to linux, albeit with the same shell syntax you describe. en.wikipedia.org/wiki/Fork_bomb
@darienverdugo290
@darienverdugo290 6 месяцев назад
What if i run it on an instance 🥸
Далее
Configuring Passwordless Server Login Using SSH
8:02
how NASA writes space-proof code
6:03
Просмотров 2,1 млн
🎤Пою РЕТРО Песни ✧˖°
3:04:48
Просмотров 1,6 млн
Are headphones destroying our hearing?
6:49
Просмотров 390 тыс.
Why You Shouldn't Nest Your Code
8:30
Просмотров 2,6 млн
5 Useful Python Decorators (ft. Carberra)
14:34
Просмотров 89 тыс.
THIS is Why List Comprehension is SO Efficient!
5:25
Просмотров 170 тыс.
ZIP BOMBS vs. Windows
10:36
Просмотров 1,5 млн
Become a shell wizard in ~12 mins
12:25
Просмотров 222 тыс.