-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFake-Update-win10.js
41 lines (37 loc) · 941 Bytes
/
Fake-Update-win10.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// =============================================================================
// Title: Fake Update for Windows
// Author: @beigeworm | https://github.com/beigeworm
// Description: Start a fake Update for Windows through a browser.
// Target: Windows 10
// =============================================================================
// *USB SETTING*
// startup
// =============================================================================
// Script Setup
layout('us');
// typingSpeed(1,1);
// Main Payload
delay(500);
press("GUI r");
delay(1500);
type("cmd");
delay(200)
press("CTRL SHIFT ENTER");
delay(2000);
press("ALT y");
delay(4000);
type("taskkill /F /IM msedge.exe /T > nul")
delay(100);
press("ENTER");
delay(500);
type("exit")
delay(100);
press("ENTER");
delay(2000);
press("GUI r");
delay(1500);
type("msedge.exe --new-window -kiosk https://fakeupdate.net/win8");
delay(200)
press("ENTER");
delay(1500);
press("F11");