Path: blob/master/payloads/library/prank/Alien Message From Computer/payload.txt
2968 views
1REM ####################################################2REM # |3REM # Title : Alien Message From Computer |4REM # Author : Aleff |5REM # Version : 1.0 |6REM # Category : Prank |7REM # Target : Windows 10/11 |8REM # |9REM ####################################################101112REM Plug-And-Play <31314REM Requirements:15REM - Internet Connection16REM - ExecutionPolicy Bypass17REM - Python1819GUI r20DELAY 50021STRING powershell22ENTER23DELAY 15002425REM Create the file26STRING New-Item -Path ".\script.py" -ItemType "file" -Force;2728REM Write the code into the file29STRING Set-Content -Path ".\script.py" -Value "import os; from time import sleep; os.system('pip install pyttsx3'); import pyttsx3; sleep(60); alien_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.'; motore = pyttsx3.init(); voce_alienea = motore.getProperty('voices')[1]; motore.setProperty('voice', voce_alienea.id); motore.setProperty('pitch', 70); motore.say(alien_message); motore.runAndWait();"30ENTER31DELAY 10003233REM Execute the Python script34STRING Start-Process python.exe -ArgumentList "script.py" -WindowStyle Hidden35ENTER3637REM Close the PowerShell38DELAY 100039ALT F4404142