diff --git a/payloads/library/prank/Continuos_Print_In_Terminal/README.md b/payloads/library/prank/Continuos_Print_In_Terminal/README.md new file mode 100644 index 0000000..8402eef --- /dev/null +++ b/payloads/library/prank/Continuos_Print_In_Terminal/README.md @@ -0,0 +1,25 @@ +# Continuos Print In Terminal + +Plug And Play + +A script used to prank your friends with a terminal print. + +**Category**: Prank + +## Description + +A script used to prank your friends with a terminal print. + +Open a PowerShell, download the Python script and execute it. The Python script will print in output (everytime with a different color) the phrase "Your computer is infected!". + +## Getting Started + +### Dependencies + +* Internet Connection +* ExecutionPolicy Bypass +* Python + +### Executing program + +* Plug in your device diff --git a/payloads/library/prank/Continuos_Print_In_Terminal/payload.txt b/payloads/library/prank/Continuos_Print_In_Terminal/payload.txt new file mode 100644 index 0000000..fd37be3 --- /dev/null +++ b/payloads/library/prank/Continuos_Print_In_Terminal/payload.txt @@ -0,0 +1,36 @@ +REM #################################################### +REM # | +REM # Title : Continuos Print In Terminal | +REM # Author : Aleff | +REM # Version : 1.0 | +REM # Category : Prank | +REM # Target : Windows 10/11 | +REM # | +REM #################################################### + + +REM Plug And Play <3 + +REM Requirements: +REM - Internet Connection +REM - ExecutionPolicy Bypass +REM - Python + + +DELAY 1000 +GUI r +DELAY 500 +STRING powershell +ENTER +DELAY 2000 + +STRINGLN (New-Object -ComObject WScript.Shell).SendKeys("{F11}") +DELAY 500 + +STRINGLN New-Item -Path ".\script.py" -ItemType "file" -Force +DELAY 500 + +STRINGLN Set-Content -Path ".\script.py" -Value "import os`nos.system('pip install colorama')`nimport colorama`nimport random`nfrom time import sleep`ncolorama.init()`nwhile True:`n`tcolor = random.choice([colorama.Fore.RED, colorama.Fore.GREEN, colorama.Fore.YELLOW])`n`tprint(color + 'Your computer is infected!')`n`tsleep(0.1)" +DELAY 500 + +STRINGLN clear; python .\script.py; diff --git a/payloads/library/prank/Continuos_Print_In_Terminal/script.py b/payloads/library/prank/Continuos_Print_In_Terminal/script.py new file mode 100644 index 0000000..590c7c4 --- /dev/null +++ b/payloads/library/prank/Continuos_Print_In_Terminal/script.py @@ -0,0 +1,13 @@ +import os +os.system("pip install colorama") +import colorama +import random +from time import sleep + + +colorama.init() + +while True: + color = random.choice([colorama.Fore.RED, colorama.Fore.GREEN, colorama.Fore.YELLOW]) + print(color + "Your computer is infected!") + sleep(0.1)