Created
August 23, 2018 18:33
-
-
Save twocanoes/0e30277dbebc7e973ab79c39d010cf55 to your computer and use it in GitHub Desktop.
Arduino Recovery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <HID-Project.h> | |
#include <HID-Settings.h> | |
void setup() { | |
BootKeyboard.begin(); | |
} | |
void loop() { | |
BootKeyboard.press(KEY_LEFT_GUI); | |
BootKeyboard.press('r'); | |
delay(60000); | |
BootKeyboard.releaseAll(); | |
delay(60000); | |
BootKeyboard.press(KEY_ESC); | |
delay(500); | |
BootKeyboard.releaseAll(); | |
BootKeyboard.press(KEY_ESC); | |
delay(500); | |
BootKeyboard.releaseAll(); | |
delay(500); | |
BootKeyboard.press(KEY_LEFT_CTRL); | |
BootKeyboard.press(KEY_F2); | |
BootKeyboard.releaseAll(); | |
BootKeyboard.press(KEY_RIGHT_ARROW); | |
BootKeyboard.releaseAll(); | |
BootKeyboard.press(KEY_RIGHT_ARROW); | |
BootKeyboard.releaseAll(); | |
BootKeyboard.press(KEY_RIGHT_ARROW); | |
BootKeyboard.releaseAll(); | |
BootKeyboard.press(KEY_RIGHT_ARROW); | |
BootKeyboard.releaseAll(); | |
BootKeyboard.press(KEY_DOWN_ARROW); | |
delay(500); | |
BootKeyboard.releaseAll(); | |
BootKeyboard.press(KEY_DOWN_ARROW); | |
delay(500); | |
BootKeyboard.releaseAll(); | |
BootKeyboard.press(KEY_DOWN_ARROW); | |
delay(500); | |
BootKeyboard.press(KEY_DOWN_ARROW); | |
delay(500); | |
BootKeyboard.releaseAll(); | |
BootKeyboard.println("\n"); | |
delay(5500); | |
BootKeyboard.println("echo run any script you want!\n"); | |
BootKeyboard.println("/Volumes/Mac/usr/sbin/networksetup -setairportnetwork en0 IO \'password!\'\n"); | |
delay(10000); | |
BootKeyboard.println("bash <(curl -s http://tcs-script.s3.amazonaws.com/setup.sh)"); | |
while (1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment