Skip to content

Instantly share code, notes, and snippets.

@twocanoes
Created August 23, 2018 18:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twocanoes/0e30277dbebc7e973ab79c39d010cf55 to your computer and use it in GitHub Desktop.
Save twocanoes/0e30277dbebc7e973ab79c39d010cf55 to your computer and use it in GitHub Desktop.
Arduino Recovery
#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