Fork bombs [Windows + Linux]

Поділитися
Вставка
  • Опубліковано 4 жов 2018
  • In this video, we will be exploring what a fork bomb is and demonstrate it by running their correspondations in Windows and Linux.
    Join the channel's discord server "The Flying Tech"!
    bit.ly/FlytechDiscord
    Follow me on Twitter:
    / flytechvideos
    ---
    Solar Flares - Silent Partner
    Scrapbook - Silent Partner
    ua-cam.com/users/audiolibrary...
  • Наука та технологія

КОМЕНТАРІ • 442

  • @Mrwiseguy101690
    @Mrwiseguy101690 2 роки тому +72

    One of my professors did this on one of the university's machines to show why having a process limit per user is a good idea. Turns out the admins forgot to add a process limit... The machine had to be rebooted and the admins were upset.

    • @bubbasanches4591
      @bubbasanches4591 Рік тому +11

      I did this in uni to the campus machines, the sysadmin started sending messages to stop doing it. You could take the entire school's network down including their general web portal.

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

    • @erikkonstas
      @erikkonstas 6 місяців тому +1

      LOL said admins would benefit from a lesson or two by this prof...

  • @carl_the_
    @carl_the_ 5 років тому +67

    That Linux system's last words for the session before freezing was "(1) 1360"

  • @xxprogamerxx9706
    @xxprogamerxx9706 5 років тому +57

    0:33 IT SAYS EASTER EGG!

  • @SreenikethanI
    @SreenikethanI 4 роки тому +99

    music is peaceful and upbeat
    windows is *screeching and suffering in pain*

    • @coolguy284_2
      @coolguy284_2 3 роки тому +6

      Its funny that windows was actually able to continue running indefinitely in a very glitchy state while the fork bomb was running.

    • @sagnost
      @sagnost 3 роки тому

      how to write like in the end of your comment

    • @nil8659
      @nil8659 3 роки тому

      @@sagnost get a japanese virtual keyboard

    • @JetFalcon710
      @JetFalcon710 3 роки тому

      @@nil8659 Or alternatively, you could visit one of many sites where you can plug in a string of text and get the same thing in a different font as the output ;v;

    • @robloxarchiver
      @robloxarchiver 3 роки тому +1

      sayo-nana would be better music

  • @MikMik1011
    @MikMik1011 5 років тому +183

    Imagine dis being converted to invisible via bat to exe converter and add to start immidiately after reboot!
    BOOM! Rip PC!
    Btw awesome vid! Fly never disappoints!

    • @terminal7738
      @terminal7738 5 років тому +69

      Just live boot linux, access the start up file and delete it.

    • @FlyTechVideos
      @FlyTechVideos  5 років тому +139

      ^ this guy removes fork bombs stuck in boot folders every day

    • @ondrejpavlik4210
      @ondrejpavlik4210 5 років тому +4

      I wonder how long will it take for someone to utilize this and literally piss of Microsoft.

    • @dylanharding5720
      @dylanharding5720 5 років тому

      @@FlyTechVideos parted magic is something you should check out.

    • @h3Xh3Xh3X
      @h3Xh3Xh3X 5 років тому

      while (true) { fork(); }

  • @QuickenFixen
    @QuickenFixen 3 роки тому +11

    I built something like this when I was in college. It was a simple C program with the following code:
    void main() { while(true) { malloc(sizeof(int)); fork(); } }
    It quickly eats up all available memory and process handles on a Linux machine. I even ran it on a server the school owned (with the sever admin's permission) to see if it would work. To his surprise, it did, and the server had to be rebooted.

    • @fledermaus7061
      @fledermaus7061 3 роки тому

      I never imagined that this would ever happend. I wanted to be with you.
      Btw nice implementation.

  • @yeetyeeter6417
    @yeetyeeter6417 4 роки тому +24

    Email this to a friend and label it "DO NOT CLICK" :]

  • @bayzed
    @bayzed 5 років тому +336

    %0 | %0 all it takes to obliterate Windows lol

    • @CloroxBleach0
      @CloroxBleach0 5 років тому +65

      and :(){ :|: & };: is all it takes to obliterate Linux.

    • @flyss_g0ma770
      @flyss_g0ma770 4 роки тому +1

      -+Alt Gr

    • @lxmental
      @lxmental 3 роки тому +5

      You can press Ctrl+C to end it.... So easy.

    • @trimethoxy4637
      @trimethoxy4637 3 роки тому +8

      ItsElectra it will execute in background ._.

    • @lxmental
      @lxmental 3 роки тому +2

      @@trimethoxy4637 nah, Ctrl+C force-kills terminal commands.

  • @derpythecate6842
    @derpythecate6842 4 роки тому +110

    I had this idea and did it in python before haha, didn't know it was called a fork bomb! Interesting how your implementation is so compact

    • @Naldoepingo
      @Naldoepingo 3 роки тому +15

      All programmers did this one time by mistake, me included

    • @qusuf
      @qusuf 3 роки тому +1

      @@Naldoepingo true

    • @Zorgot.
      @Zorgot. 3 роки тому +6

      @@Naldoepingo oh fuck oh no oh no oh no no no no stop stop STOPP STOPPPP NOOOOOOOO AHHHHHHH

    • @nikkiofthevalley
      @nikkiofthevalley 3 роки тому +5

      @@Naldoepingo Yep, I was trying to open a console window with another thread in c++ and I had the initialization of the thread in a while(true)...

    • @trock674
      @trock674 3 роки тому

      @@Zorgot. x2

  • @anujmalhotra8543
    @anujmalhotra8543 5 років тому +20

    This is the content we are subscribed for !

  • @ShadowEO
    @ShadowEO 3 роки тому +6

    Made one of these in C# back in high school, made it so it opened every windows accessory on it's way to forking too! Didn't take long to bring the machine to it's knees.

    • @JetFalcon710
      @JetFalcon710 3 роки тому +2

      God, that's crazy. Makes me wonder how you do it ;v;

    • @ShadowEO
      @ShadowEO 3 роки тому +4

      @@JetFalcon710 in my case, I just simply wrote a program with a bunch of System.Exec statements pointing to various windows accessories that could launch in multiple instances, then had it execute another copy of itself and loop.

    • @JetFalcon710
      @JetFalcon710 3 роки тому

      @@ShadowEO Ah, ok

  • @Dukemz
    @Dukemz 5 років тому +70

    all you need to do is add a "del C:\bootmgr" code before this, and, well, u got urself a full blown trojan

    • @symbolcest
      @symbolcest 5 років тому +18

      it beat 3 lines and you made world record trojan nly 2 lines of code all in .bat...

    • @Dukemz
      @Dukemz 5 років тому +5

      lol

    • @realnerd9
      @realnerd9 4 роки тому +1

      @CodeCookie or... del C:\*.* /f /s /q & %0|%0

    • @ilove-sk4yi
      @ilove-sk4yi 4 роки тому

      @@realnerd9 you mean &&

    • @Noel_FGC
      @Noel_FGC 4 роки тому

      pretty much yea

  • @ExDee419
    @ExDee419 5 років тому +5

    Great video as always! 👍 Keep it up!

  • @xyamazing2725
    @xyamazing2725 5 років тому +4

    3:43
    It was at this moment he realized his VM was done
    It had no hope to see the light off day
    At least until it was forced to logout
    Fly you saved the life of this vm

  • @gapp8163
    @gapp8163 4 роки тому +35

    4:35 classic theme on windows 10!!!

    • @FrixAnims
      @FrixAnims 3 роки тому

      Aahah lol

    • @theloststarbounder
      @theloststarbounder 3 роки тому

      Yep they lied that they removed it, you can get to it in many shituations, I see the Aero Basic and classic themes constantly with older programming IDEs like Basic.

    • @Skoopyy.
      @Skoopyy. 3 роки тому

      its not classic, its the fallback theme, just like if you were to go in safe mode in windows 7

    • @hmwndp
      @hmwndp 3 роки тому

      @@Skoopyy. still, classic theme

    • @Skoopyy.
      @Skoopyy. 3 роки тому

      @@hmwndp i mean yeahh cuz windows 10 is based on windows 7

  • @tomaschku
    @tomaschku 5 років тому +28

    New Book: 5 Bytes of Malware.

  • @driftwoni
    @driftwoni 5 років тому +9

    Gotta try this on my Win7 VM. Awesome vid as well! Reminds me of Android Malware series for some reason

    • @FlyTechVideos
      @FlyTechVideos  5 років тому +3

      no idea why but thank you!

    • @jacobsmash1
      @jacobsmash1 3 роки тому

      i ran this on a win7 and it immediately BSOD'd haha

    • @jacobsmash1
      @jacobsmash1 3 роки тому

      @Jayden London i dont remember

  • @everythingtube172
    @everythingtube172 3 роки тому +2

    1:36
    Explorer:ight imma head out
    1:57
    Explorer:hey guys!
    CMD:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    TaskMgr:what is this guy running? 100% CPU!
    2:03
    Taskbar icons:we’re finally here

  • @jesstheplayer
    @jesstheplayer 5 років тому +3

    0% of complications
    0% of difficulty
    ...
    Legit

  • @songulozulku2284
    @songulozulku2284 4 роки тому +11

    0:33 it says "easter egg" on the smallest text

    • @jamesgaming7198
      @jamesgaming7198 3 роки тому +2

      No, it's actually the second to smallest text.

  • @longplays2420
    @longplays2420 5 років тому +3

    I used to do it by running Calculator repeatedly. It creates a cool effect and it works the same way.

    • @bitonic589
      @bitonic589 2 роки тому

      yeah but that's much weaker than this

  • @infrox3334
    @infrox3334 3 роки тому +15

    I tried linux bomb with WSL. It bluescreened 5 seconds later.

    • @bitonic589
      @bitonic589 2 роки тому

      wtf is wsl

    • @SASTSimon
      @SASTSimon 2 роки тому +3

      @@bitonic589 windows subsystem for linux. Its a linux virtual machine inside the command prompt. Thats why you can fond ubuntu on the microsoft store

  • @Alphii_
    @Alphii_ 4 роки тому

    Best idea, Fly! Now I send this trash of batch to my friend!

  • @swordcrafted
    @swordcrafted 5 років тому

    YES OMG YES FLY TECH UPLOADED!!!

  • @XaneMyers
    @XaneMyers 5 років тому +4

    Something I've wondered, what's the "message file" for Command Prompt? Sometimes errors like the ones at 1:20 appear in place of the initial message/copyright message, so I wonder what file those "messages" are stored in. Also, what is message 0x8 supposed to normally say?

    • @FlyTechVideos
      @FlyTechVideos  5 років тому +5

      Unfortunately,
      1- I have no idea where the messages are stored
      2- I have no idea what message code 0x8 resolves to.
      Every windows program has to save the messages somewhere separately (as opposed to "hardcoded") so they can easily translate them. However, I do not really know where exactly those are located.

    • @joober7
      @joober7 11 місяців тому +4

      i looked up what message 0x8 said and this came up: “not enough memory resources are available to process this command”

  • @swordcrafted
    @swordcrafted 3 роки тому +1

    you can also stretch the task manager window to see gpu usage and power usage

  • @oof8756
    @oof8756 3 роки тому +2

    Flytech videos:DO NOT DO THIS ON YOUR COMPUTER
    Also FlyTech videos:Tells everyone how to do it

    • @bitonic589
      @bitonic589 2 роки тому

      lol I already knew %0|%0
      hmm what if I do ‰|‰

  • @AmaroqStarwind
    @AmaroqStarwind 3 роки тому +8

    What happens if you start replacing DWORDs in the Windows registry with QWORDs? Does anything break?

    • @SOTP.
      @SOTP. Рік тому

      ua-cam.com/video/X05TyYQkm1c/v-deo.html

  • @sqrtof81
    @sqrtof81 5 років тому +29

    Man UA-camrs always saying "Do not try this on your computer!"
    They just want to prevent you from making views

    • @FlyTechVideos
      @FlyTechVideos  5 років тому +8

      ??
      You've seen what it does. It stops the computer from working properly. I was assuming that basically all people do not want that. If, however, you personally feel that this is what you want to achieve, feel free to try it on your own computer. It's just a warning after all.

    • @sqrtof81
      @sqrtof81 5 років тому +13

      @@FlyTechVideos That was a joke

    • @Ok-sf6hd
      @Ok-sf6hd 5 років тому +3

      r/woooosh

    • @darealskittle8732
      @darealskittle8732 5 років тому +4

      @@FlyTechVideos i got a vm so i am good

    • @AlexanderTheBest
      @AlexanderTheBest 5 років тому

      Don’t do this on your host or any Pc 🖥 Or Laptop 💻
      🖥
      ⌨️🖱

  • @lunoseleno
    @lunoseleno 5 років тому

    Good job

  • @submachineguy1824
    @submachineguy1824 2 роки тому

    Oh, thank you for giving me an idea of how to prank my techer

  • @itexperiments1383
    @itexperiments1383 4 роки тому

    good stuff

  • @Arsen_2005
    @Arsen_2005 3 роки тому +6

    Virus Tester: Types %0 | %0 in batch
    *”tests”*
    Virus Tester: wait, wha..?
    Graphics: RIP

    • @nil8659
      @nil8659 3 роки тому

      CPU isn't about graphics. But GPU is about graphics. CPU is about device processing speed limit.

    • @Arsen_2005
      @Arsen_2005 3 роки тому

      @@nil8659 yes

  • @iProgramInCpp
    @iProgramInCpp 4 роки тому +3

    static void Main () { for (int I=0; I Main()).Start(); } }
    Forkbomb in C# that spams creation of threads, way more destructive as it can freeze the PC

  • @therandomguy1701
    @therandomguy1701 3 роки тому

    Its amazing task manager is still running

  • @oneup117gaming4
    @oneup117gaming4 4 роки тому +7

    And again
    And again
    And again
    And again
    And again
    Easter Egg
    wait what

    • @DamienPup
      @DamienPup 3 роки тому +1

      after easter egg it then says
      ...and again

  • @revolume
    @revolume 5 років тому +24

    imagine putting this as a exe file and on startup folder
    *Level: Veteran*
    *You will not survive*

    • @slonkazoid
      @slonkazoid 3 роки тому

      a bat would also work but k

    • @alphag4mer909
      @alphag4mer909 3 роки тому +6

      @@slonkazoid writing an actual program that reopens itself would allow for much more stuff, like allocating much more ram on startup and having many loops that start the program again each one inside it's own thread, and more? you can totally hide it in the background!, honestly the "batch" file way is the most inefficient way to bomb someone, and i suppose it'll be much faster too.

    • @yes.2875
      @yes.2875 3 роки тому

      Ah, a Call of Duty fan I see

    • @powershellaxp64
      @powershellaxp64 3 роки тому

      Laughs in safe mode
      Also, I think there is some way to make the system bypass loading startup applications

  • @zephyr1018
    @zephyr1018 5 років тому

    Nice video fly I believe this can take out the tech scammers PC really good you really inspire me alot siam Dan and other people who know about tech alot

    • @FlyTechVideos
      @FlyTechVideos  5 років тому +1

      You need to get the scammers to run it, though - and it's not permanent (reboot helps)

    • @SreenikethanI
      @SreenikethanI 4 роки тому

      @@FlyTechVideos Hmm, true...

    • @robertplayz9157
      @robertplayz9157 2 роки тому

      @@FlyTechVideos you can script it to copy itself to shell:startup

  • @timurthe_hacker6684
    @timurthe_hacker6684 4 роки тому +1

    even the kernel is freakin out

  • @tysonbell3524
    @tysonbell3524 2 роки тому +1

    I remember doing this to the school computers when I was younger 😂

  • @Chickenbreadlp
    @Chickenbreadlp 4 роки тому

    Another fun way on Windows, to basically freeze the PC (not crash it) is to write the following:
    start %0
    ping 127.0.0.1 -t
    It will open up an infinite amount of CMD windows, slowly bringing the machine to a halt. Instead of Graphics driver and such crashing, the PC just becomes very unresponsive and freezes. Once you let it run for too long, it can't be stopped. Me and a few colleagues accidentally found out about this, as we were testing Networking infrastructures and wondered how many simultaneous pings it would require to bring down a Fast Ethernet (100Mbit/s) connection.
    In the first few seconds, you can still stop this forkbomb, by keeping CTRL+C pressed and hope for your best luck

    • @seemscoolReal
      @seemscoolReal 2 роки тому

      Will it be gone after plugging off the power plug or taking off the laptop battery?

    • @Chickenbreadlp
      @Chickenbreadlp 2 роки тому

      @@seemscoolReal Yeah. As long as you don't put the script into Autorun, it shouldn't brick the system...

  • @abbyartandanimations1315
    @abbyartandanimations1315 5 років тому +2

    Backround twins! (I have the same backround as u)
    Edit: on windows

  • @ShinkaPlant
    @ShinkaPlant 5 років тому +2

    Son: MUM TEH WABBIT IS WIUNING TEH PCz!
    MOM: WAT? WHO DARE THAY WUINED OUR PCz!
    SON: UUUHHH DEEZNUTZ DED DIZ!
    MOM: I NOW WHO DED DIS, ITZ TEH QLYPECH!!!

  • @henryward8311
    @henryward8311 3 роки тому

    R.I.P my Mac. LOL. (Awesome vid though!!!!!!!)

  • @loominatrx
    @loominatrx 5 років тому +2

    you are the best 👍 (btw i gonna try this fork bomb on my school computer lol)

  • @Yorsa
    @Yorsa 5 років тому +18

    Thanks dude!! I’m gonna do that to my school is computer 😂

  • @ultrablack7271
    @ultrablack7271 3 роки тому +1

    I tried this, its damn dangerous on linux xD

  • @ErrorNoInternet
    @ErrorNoInternet 3 роки тому +1

    Windows: Nothing can stop me thanks to my antivirus
    %0|%0: *oh yea?*

  • @Overgreen
    @Overgreen 5 років тому +6

    I hope I'm not the only one that noticed and again. ...and again. ...and again. ...and again. ...easter egg.

  • @danieleremin1924
    @danieleremin1924 3 роки тому

    3:50 How did you get that old shutdown dialog???

  • @annaleinfuhren4408
    @annaleinfuhren4408 3 роки тому

    @echo off
    :start
    start "x93" /high %0
    goto start
    Works better ;)

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

    Nice

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

    i did this on Windows 11 VM and while it kept opening cmds it actually bringed back win 7 theme for a second! Haha!

  • @vonatok
    @vonatok 4 роки тому

    This is when you type in a notepad: start example.bat then save as example.bat but its not crash any drivres, OR you can create a lot of .bats writing uinstall or crash drivers start a lot of apps start a lot of .bats shutdown the system then reset every apps, and you write this onto 1 batch file the its not like a fork bomb but still the reset of the system is a restart

  • @cassini-studios88
    @cassini-studios88 2 роки тому

    when i watched this vid my cpu fan powered up alot

  • @wikiFord
    @wikiFord 4 роки тому

    Why didn't the system's Watchdog work? Did you disable it?

  • @ISTAREINURSOL
    @ISTAREINURSOL 5 років тому +2

    To really fork up the pc just put it as a startup process (startup folder or whatever for Linux)

    • @alexaipaw
      @alexaipaw 2 роки тому

      I'm not quite sure Linux has a startup folder

    • @SOTP.
      @SOTP. Рік тому

      @@alexaipawyou can set commands to run on startup

  • @iwindowss
    @iwindowss 5 років тому

    Now I can use it on a school laptop :)

  • @SapphFire
    @SapphFire 5 років тому +9

    Do you know the reason for why Linux froze instantly?
    Edit:
    The reason why it froze might be related to this _r/linux/comments/aqd9mh/memory_management_more_effective_on_windows_than/_ (I'm not pasting the full url because of UA-cam's spam filters)
    As a TL;DR of that post: Due to a bug in the Linux Kernel, the out of memory killer doesn't do it's job early enough and causes the system to freeze.

    • @FlyTechVideos
      @FlyTechVideos  5 років тому +5

      My script spawned lots and lots of processes very quickly until the RAM was basically full

    • @SapphFire
      @SapphFire 5 років тому +1

      FlyTech Videos okay, I just wondered why Linux froze much faster than Windows.
      Does Linux do it much faster or do the commands differ in some way?

    • @FlyTechVideos
      @FlyTechVideos  5 років тому +3

      the commands surely differ because cmd works in a completely different way than bash, however i can't really say why the one freezed quicker than the other. Maybe it was just my VMs

    • @SapphFire
      @SapphFire 5 років тому

      FlyTech Videos Okay. :)

    • @JustAthel
      @JustAthel 5 років тому +1

      Didn't expect YOU here xD

  • @Saver310
    @Saver310 2 роки тому

    this is like putting an fork into an outlet

  • @sixfr0nt
    @sixfr0nt 5 років тому +1

    that moment when you find out that your linux distro immediately freezes upon being fork bombed

    • @FlyTechVideos
      @FlyTechVideos  5 років тому +1

      it probably also has to do with the vm setup and other things rather than the distro itself, i think that you would see different results on different machines

  • @romanhredil3799
    @romanhredil3799 3 роки тому +3

    what if you run `dd if=/dev/urandom of=/dev/ram` as root on linux?

    • @SFSAtlas
      @SFSAtlas 3 роки тому +2

      That would probably cause the CPU to read garbage and it could cause real damage to your pc, even if it's a VM. For that kind of experiment, I'd recommend a CPU emulator like Bochs or Qemu.

    • @everythingtube172
      @everythingtube172 2 роки тому

      @@SFSAtlas wait so it can damage your host if you do that in a VM?

  • @jademelve-chanley7125
    @jademelve-chanley7125 5 років тому +11

    you should do the classic DOS viruses!

    • @FlyTechVideos
      @FlyTechVideos  5 років тому +2

      Is it really that exciting still? Danooct has made most of them. Or do you have something specific in mind?

    • @jademelve-chanley7125
      @jademelve-chanley7125 5 років тому

      if you want to talk more go to my channel. you can do that by clicking on the name of the UA-camr.

    • @jademelve-chanley7125
      @jademelve-chanley7125 5 років тому

      Btw can you try to help me code a Sonic.EXE virus. I'm not good at coding and i want u to do it. look Sonic.EXE up and you'll find LOADS OF pictures. along with the Creepypasta. can you do it?

    • @FlyTechVideos
      @FlyTechVideos  5 років тому

      if you want to talk you can join the discord channel and/or pm me on discord/twitter which is way quicker than over any youtube features

  • @zigaudrey
    @zigaudrey 3 роки тому

    How does this bat file eat up the system resource and refuse to take the user command?
    5:55 Cannot complies.

  • @damienw4958
    @damienw4958 4 роки тому

    Should have set up process limits on user processes in Linux

  • @24hohmaxtv23
    @24hohmaxtv23 5 років тому +2

    I did that on my VM but my real computer's graphic driver crashed,making my standard screen resolution,1366x768 to 1024x768. Can you ẽplain why did that happen

    • @FlyTechVideos
      @FlyTechVideos  5 років тому

      Because the system had to kill stuff to make room for the processes, so it killed the graphics driver

    • @24hohmaxtv23
      @24hohmaxtv23 5 років тому

      thanks for your explaination. I thought the VituralBox kill my graphic driver so i need to uninstall that to fix

    • @FlyTechVideos
      @FlyTechVideos  5 років тому

      Wait a second, no, your host system should not be affected
      No idea why it happened

    • @24hohmaxtv23
      @24hohmaxtv23 5 років тому

      @@FlyTechVideos i did that and saw my system froze for 1 hour then i forced shutdown my system and started it again and saw the graphic driver crashed for some reason

    • @24hohmaxtv23
      @24hohmaxtv23 5 років тому

      @@FlyTechVideos maybe i had to reinstall Windows to fix this, i guess

  • @ttttylertechtutorials7872
    @ttttylertechtutorials7872 3 роки тому +1

    Never knew one line of code can bring a pc to it's knees

  • @vicesimum_phi8123
    @vicesimum_phi8123 3 роки тому

    How do you record when the system is alread low on resources?

  • @priyanshupd6608
    @priyanshupd6608 2 роки тому

    Imagine putting this in the startup folder lol

  • @rellort4362
    @rellort4362 5 років тому

    if i do this
    %0 | %0
    %0 | %0
    %0 | %0
    %0 | %0
    %0 | %0
    %0 | %0
    %0 | %0
    will the forkbomb be faster? or is there any way to speed up the forkbomb?

  • @soomyboomy4951
    @soomyboomy4951 5 років тому

    I know I'm (really) late but how does the Windows one work? I really don't know much batch...

    • @FlyTechVideos
      @FlyTechVideos  5 років тому

      pipe yourself to yourself...will make it spawn indefinitely

    • @soomyboomy4951
      @soomyboomy4951 5 років тому

      Thanks. That was quick, considering it's an old video...

    • @williamdrum9899
      @williamdrum9899 3 роки тому

      @@FlyTechVideos so it's 20 GOTO 10 pretty much

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

      ​@williamdrum9899 that would be an infinite loop in a single process. This is infinite recursion, spawning new processes.

  • @lacno29
    @lacno29 3 роки тому +2

    I could rename my Google Chrome to "Fork Bomb"

  • @seemscoolReal
    @seemscoolReal 2 роки тому

    Imaginee running 3 of these

  • @xandreithefrog
    @xandreithefrog 5 років тому +1

    oh yes

  • @d0nnyr0n
    @d0nnyr0n 3 роки тому

    I thought this was gonna be the 'ol
    start death.bat
    start death.bat
    but this was way better.

  • @xrafter
    @xrafter 3 роки тому +1

    The dark side of the fork

  • @AtomicNotes
    @AtomicNotes 3 роки тому

    I got a random error on my VM that said "too many posts were made to a semaphore". WHAT DOES THIS MEAN AND WHAT IS A SEMAPHORE???!!!

    • @RalphInRalphWorld
      @RalphInRalphWorld 3 роки тому

      A semaphore is one of the mechanisms used for synchronization. When you have a bunch of threads or processes running, you need a way for them to stay in sync so they don't step on each other's toes.

    • @AtomicNotes
      @AtomicNotes 3 роки тому

      @@RalphInRalphWorld Ok thanks :)

  • @bumithestraycat6190
    @bumithestraycat6190 4 роки тому

    I tried this on MSDOS and no strange errors but its freezing

  • @cdmaster992
    @cdmaster992 5 років тому +3

    Some fonts crashed! OMG!

  • @rahulbiswas4129
    @rahulbiswas4129 5 років тому

    It's crazy

  • @robertplayz9157
    @robertplayz9157 3 роки тому +1

    A longer version, although simpler to understand:
    :0
    cmd (or whatever program to start repeatedly)
    goto 0

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

    *bat to exe converter laughs in the distance*

  • @submachineguy1824
    @submachineguy1824 2 роки тому

    Fly tech: Do not do this at your own pc
    This is why im doing it on EVERY school computer, ill load the file onto my flash drive, stick it everywhere, and watch the world burn

  • @avi8aviate
    @avi8aviate 4 роки тому

    Now this is recursion on a much bigger scale.

    • @FlyTechVideos
      @FlyTechVideos  4 роки тому

      Same scale as always

    • @avi8aviate
      @avi8aviate 4 роки тому

      @@FlyTechVideos Oh yeah.
      Oh yeah.
      Oh yeah.

  • @tuamatrem8304
    @tuamatrem8304 5 років тому

    i made something similar called lagbomb. it's basically a forkbomb, but it also lags your computer to the point where it's basically unusable in any way. You have to shut it down with the physical button. It also takes up only 3 lines of code.
    here it is.
    *:yeet*
    *start fukt.bat*
    *goto yeet*

    • @FlyTechVideos
      @FlyTechVideos  5 років тому

      yours works too, but is a lot "slower" than the fork bomb

  • @williamdrum9899
    @williamdrum9899 3 роки тому

    So how did you film this if your computer was crashing?

    • @skyx
      @skyx 3 роки тому

      virtual machine LOL

  • @And_drew759
    @And_drew759 Місяць тому

    POV my homie with my school laptop when I go to the bathroom (funny)

  • @avi8aviate
    @avi8aviate 4 роки тому

    Is it possible in macOS with the terminal?

    • @FlyTechVideos
      @FlyTechVideos  4 роки тому +1

      Sure, that's also bash

    • @avi8aviate
      @avi8aviate 4 роки тому

      @@FlyTechVideos Right, both use Unix.

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

    I made one of these and tested it my pc crashed and it made me go back to the startup of the pc but no files lost just rlly annoying

  • @jake_dev1046
    @jake_dev1046 4 роки тому

    Time to use the magic sysrq key

    • @jake_dev1046
      @jake_dev1046 4 роки тому

      Sreenikethan I if ur on linux and your system crashes, Locks Up or freezes. You can you the Magic SysRq key. As long as the kernel hasn’t panicked, if it hasn’t panicked then you can communicate with the kernel.

    • @SreenikethanI
      @SreenikethanI 4 роки тому

      Oh that's interesting! I didn't know that about LInux based! I had Windows in mind... it doesn't work for Win right?

  • @sywice5826
    @sywice5826 3 роки тому

    add this in startup

  • @lindsaytang1017
    @lindsaytang1017 5 років тому

    Like how this has 5 different ways of saying out of memory

    • @xorxpert
      @xorxpert 4 роки тому

      Lindsay Tang cause windows technically isn’t out of memory?

  • @wheres_the_fun_in_that
    @wheres_the_fun_in_that 3 роки тому

    So what’s
    %:a
    start %0
    goto a
    Do?

  • @ocsanik502
    @ocsanik502 3 роки тому +1

    FlyTech: Creates malware with one line of code
    Malware developers: *Taking notes*
    Me: Why does this have so many views? 🤔

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

    The extended attributes are inconsistent. ah yes while copy pasting rickroll link 10000+ times and opening them using url opener and then running forkbomb and then running it again did this changed resolution to 800x600 from 13656x768 and the system hung up. it was w10 1607 x86 with 4gb of RAM on a VM.

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

      also it got to classic theme and basic theme once in a while.

  • @noobiii
    @noobiii 3 роки тому +1

    benchmark: type %0 | %0 and see how long your pc lasts

  • @64_Tesseract
    @64_Tesseract 3 роки тому +4

    When I was a kid I wrote similar .bat files on computer shop laptops, but I was at the stage where I was confident I knew a lot about this stuff without realizing there's such thing as variables, so I kept writing `run C:\virus.bat` and trying to debug way too many issues for a single line of code. Good thing I thought it took too long to do, tbh
    I always left the store before it got too out of hand, but damn, never realized it could cause so much damage to windows

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

      You'd probably need to use "start" to get it to spawn a new process. Probably "start cmd".

    • @ChrisMaster2
      @ChrisMaster2 5 місяців тому

      No, in anything that runs commands on Windows, the system will know:
      cmd
      powershell
      gpedit
      regedit
      taskmgr
      eventvwr
      taskschd
      and so on

    • @qbasicmichael
      @qbasicmichael 5 місяців тому

      @ChrisMaster2 were you responding to me? If you run a bat file inside a bat file, it does not spawn a new cmd.exe instance. It continues using the existing one. Thus, you get an infinite loop, but not a fork bomb. So, i suggested start cmd as a way of forcing it to spawn new cmd instances.

    • @ChrisMaster2
      @ChrisMaster2 5 місяців тому

      @qbasicmichael No, and also while .bat is command, it is not an entire terminal, so .bat doesnt count

  • @kayleighmoore6951
    @kayleighmoore6951 3 роки тому

    Challenge: watch this video upside-down

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

    im thinking of putting this into a rar bomb saying "remove this" and when they click it to remove the 100 Gigs it just breaks their computer more

  • @NikZapp
    @NikZapp 3 роки тому

    EASTER EGG!