Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hak5
GitHub Repository: hak5/usbrubberducky-payloads
Path: blob/master/payloads/library/prank/Continuos Print In Terminal/payload.txt
2968 views
1
REM ####################################################
2
REM # |
3
REM # Title : Continuos Print In Terminal |
4
REM # Author : Aleff |
5
REM # Version : 1.0 |
6
REM # Category : Prank |
7
REM # Target : Windows 10/11 |
8
REM # |
9
REM ####################################################
10
11
12
REM Plug And Play <3
13
14
REM Requirements:
15
REM - Internet Connection
16
REM - ExecutionPolicy Bypass
17
REM - Python
18
19
20
DELAY 1000
21
GUI r
22
DELAY 500
23
STRING powershell
24
ENTER
25
DELAY 2000
26
27
STRINGLN (New-Object -ComObject WScript.Shell).SendKeys("{F11}")
28
DELAY 500
29
30
STRINGLN New-Item -Path ".\script.py" -ItemType "file" -Force
31
DELAY 500
32
33
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)"
34
DELAY 500
35
36
STRINGLN clear; python .\script.py;
37
38