omg-payloads/payloads/library/prank/Continuos_Print_In_Terminal/script.py

14 lines
282 B
Python
Raw Permalink Normal View History

2023-06-12 09:37:41 +00:00
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)