Merge pull request #300 from aleff-github/patch-34

Continuos Print In Terminal
pull/361/merge
Darren Kitchen 2023-06-09 19:08:35 -05:00 committed by GitHub
commit b132ddd889
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 74 additions and 0 deletions

View File

@ -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

View File

@ -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;

View File

@ -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)