Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hak5
GitHub Repository: hak5/usbrubberducky-payloads
Path: blob/master/payloads/library/prank/Alien Message From Computer/payload.txt
2968 views
1
2
REM ####################################################
3
REM # |
4
REM # Title : Alien Message From Computer |
5
REM # Author : Aleff |
6
REM # Version : 1.0 |
7
REM # Category : Prank |
8
REM # Target : Windows 10/11 |
9
REM # |
10
REM ####################################################
11
12
13
REM Plug-And-Play <3
14
15
REM Requirements:
16
REM - Internet Connection
17
REM - ExecutionPolicy Bypass
18
REM - Python
19
20
GUI r
21
DELAY 500
22
STRING powershell
23
ENTER
24
DELAY 1500
25
26
REM Create the file
27
STRING New-Item -Path ".\script.py" -ItemType "file" -Force;
28
29
REM Write the code into the file
30
STRING 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();"
31
ENTER
32
DELAY 1000
33
34
REM Execute the Python script
35
STRING Start-Process python.exe -ArgumentList "script.py" -WindowStyle Hidden
36
ENTER
37
38
REM Close the PowerShell
39
DELAY 1000
40
ALT F4
41
42