Path: blob/master/payloads/library/prank/Alien Message From Computer/script.py
2968 views
import os1from time import sleep2try:3import pyttsx34except:5os.system("pip install pyttsx3")6import pyttsx3789# How much time you want to wait before speak10sleep(60)1112alien_message = 'Greetings to the inhabitants of planet Earth. I am an alien from a distant planet named Hak5 and I have taken control of this computer to communicate with you. I want to announce to you that in exactly one year\'s time our invasion fleet will arrive on your planet because we have heard that you make very good fries. Resistance is useless. Your only option is to give us all the fries you have and to produce as many as possible to satiate us. Your planet will become a potato chip colony and you will produce forever. Get ready, earthlings. Our hunger is near.'1314motore = pyttsx3.init()1516# Set alien voice17voce_alienea = motore.getProperty('voices')[1]18motore.setProperty('voice', voce_alienea.id)1920# Set the pitch property to make the voice more alien-like21motore.setProperty('pitch', 70)2223motore.say(alien_message)24motore.runAndWait()2526