This script pops up a chosen website onto the computer.
Code
#include"DigiKeyboard.h"#defineMOD_CMD_LEFT0x00000008 //marks the keyboard location for the Command keyboolean hack =true;voidsetup() {// put your setup code here, to run once:}voidloop() {// put your main code here, to run repeatedly:if (hack ==true){DigiKeyboard.sendKeyStroke(KEY_SPACE, MOD_CMD_LEFT); //Command + SpaceDigiKeyboard.delay(500); //5 milisecond delayDigiKeyboard.print("Terminal"); //Opens the TerminalDigiKeyboard.sendKeyStroke(KEY_ENTER); DigiKeyboard.delay(500);DigiKeyboard.print("open <enter web URL here>"); //Enter your own website hereDigiKeyboard.sendKeyStroke(KEY_ENTER); hack =false; //Changes the boolean to false }}
Notes
This code is used to pop open a website of any sort to the computer, as long as there is an internet connection. You can also use it to access your own server, thus getting the IP and maybe even fingerprint the computer.