• yuri@pawb.social
    link
    fedilink
    English
    arrow-up
    2
    ·
    11 hours ago

    ah, fond memories of accidentally forkbombing my middle school computer in the middle of typing class…

  • Lvxferre [he/him]@mander.xyz
    link
    fedilink
    English
    arrow-up
    41
    ·
    edit-2
    1 day ago

    I love telling excited newbies to run this forkbomb. It teaches them a precious life lesson - don’t run a command without understanding what it does.

    • Toes♀@ani.social
      link
      fedilink
      English
      arrow-up
      26
      ·
      1 day ago

      My professor had a Unix cheat sheet he gave out to people.

      But someone made a joke version with malicious commands like this one. Was a riot in class.

    • Delta_V@lemmy.world
      link
      fedilink
      English
      arrow-up
      138
      arrow-down
      1
      ·
      2 days ago

      This is a Bash fork bomb, a malicious function definition that recursively calls itself:

      :() — defines a function named : (yes, just a colon).
      
      { [:|:&] } — the function's body:
      
          :|: — pipes the output of the function into another call of itself, creating two processes each time.
      
          & — runs the call in the background, meaning it doesn’t wait for completion.
      
      ; — ends the function definition.
      
      : — finally, this invokes the function once, starting the bomb.
      
      • celeste@feddit.org
        link
        fedilink
        English
        arrow-up
        12
        ·
        1 day ago

        thx, I think I get it, it’s do it’s as many processes as your computer will run until it crashes

        • Delta_V@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          16 hours ago

          because I didn’t know what it did either, then made a typo in the ChatGPT prompt when asking about it

        • Peruvian_Skies@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          4
          ·
          1 day ago

          There aren’t any square brackets.

          The form “function(){content}” in bash defines a function called “function” that, when called by name, executes “content”. This forkbomb defines a function called : (just a colon) which calls itself twice in a new subprocess (the two colons inside the curly brackets). It thus spawns more and more copies of itself until it overwhelms your processor.

    • tetris11@lemmy.ml
      link
      fedilink
      English
      arrow-up
      61
      arrow-down
      1
      ·
      edit-2
      1 day ago
      function tombombadil() {
         tombombadil | tombombadil & 
      }
      tombombadil()
      

      Each time it calls itself, it forks a background copy too and sends Gandalf deeper into the abyss

        • chaos@beehaw.org
          link
          fedilink
          English
          arrow-up
          9
          ·
          1 day ago

          It’s worse, a single infinite loop will warm up the computer a bit, this program starts two copies of itself, each of which starts two copies of itself… unless you’ve set some limits on things the computer’s going to be locked up within seconds.

    • bdonvrA
      link
      fedilink
      English
      arrow-up
      54
      ·
      2 days ago

      It just takes all your computers CPU and RAM by making endless copies of itself. Best case your PC gets sluggish, worst it crashes. Won’t do any lasting damage. It’s called a “Fork Bomb”

      • superkret@feddit.org
        link
        fedilink
        English
        arrow-up
        7
        ·
        1 day ago

        Any modern Linux system where you didn’t explicitly tell it to do otherwise will limit the amount of running processes to a safe number.
        So this does nothing anymore. Same as rm -rf / which also simply triggers an error message.

  • Farid@startrek.website
    link
    fedilink
    English
    arrow-up
    16
    ·
    1 day ago

    I had a class about fork() on my Operating Systems course yesterday. I was going to look up the fork bomb, that the teacher didn’t even tell us about >:( , but it somehow found me instead.

  • celeste@feddit.org
    link
    fedilink
    English
    arrow-up
    10
    ·
    2 days ago

    Look at those eyes! They yearn foe destruction! Also have you tried this in macOS yet?

    • Aganim@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      ·
      edit-2
      1 day ago

      Breaking MacOS is easy, if the fork bomb doesn’t work just create a function which recursively writes files until the disk is full. Unless they fixed it in the past 5 years, at that point even when the OS is set to delete files directly, it will still fail to delete anything. I couldn’t even remove anything with sudo rm -f, that just triggered a ‘not enough space to remove file’ error message.

      Found that out the hard way when a program borked itself and filled the entire drive with log files until there was not even a single byte left. Fortunately I had a very small file in the bin, clearing that still worked and those few bytes were enough to be able to perform file deletes again. Never bothered to find out why MacOS behaved that way as I was able to ditch that OS entirely not long after, but perhaps somebody else knows.

      • mic_check_one_two@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        4
        ·
        1 day ago

        Yeah, the “disk too full to delete” thing is still a problem on MacOS. Usually you can solve it by booting into safe mode, because that has fewer startup processes. That usually gives you enough wiggle room to clear your trash can and go from there. But yeah, the worst case scenario basically requires a drive reformat.