-
Content Count
48 -
Joined
-
Last visited
About benownzu93
-
Rank
Hak5 Fan +
- Birthday 03/22/1993
Contact Methods
-
Website URL
http://Benwilcock.co.nr
-
ICQ
0
Profile Information
-
Gender
Male
Recent Profile Visitors
2,232 profile views
-
The first one I would include is just running a command or opening command prompt. void setup(){ run("cmd"); } void loop(){ digitalWrite(PIN_D6, LOW); delay(1000); digitalWrite(PIN_D6, HIGH); delay(1000); } void run(char *command){ delay(100); Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.set_key1(KEY_R); Keyboard.send_now(); Keyboard.set_modifier(0); Keyboard.set_key1(0); Keyboard.send_now(); delay(400); Keyboard.print(command); delay(200); enter(); } void enter(){ Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0
-
Just looked on the pjrc website at the sd card page (couldn't find it last night) and the regulator and buffer are fitted to the sd card adapter so you don't have to fit one.
-
I would think that if it is working fine you don't need it. But looking at this the Operating Voltage of a SD card is 2.7V-3.6V. So if you want to protect your card then put it on.
-
[Version 1] Covering The Teensy's Tracks
benownzu93 replied to Chaemelion's topic in USB Rubber Ducky
You could try this, it takes a screen shot then make it full screen using paint :P void setup(){ delay(8000); prtsc(); delay(50); run("%windir%/system32/mspaint.exe"); delay(700); ctrlv(); delay(200); esc(); delay(200); feleven(); } void loop(){ digitalWrite(PIN_D6, LOW); delay(random(1000)); digitalWrite(PIN_D6, HIGH); delay(random(1000)); } void prtsc(){ Keyboard.set_key1(KEY_PRINTSCREEN); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); } void enter(){ Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); -
Beat the "How fast can you type A-Z" Facebook Game
benownzu93 replied to sablefoxx's topic in Hacks & Mods
I did that with the ducky :P i got 682 with it. -
Yeah , I tend to have a load of documents all over the place tbh don't use my documents too much. so a search is likely to work better. Nope the Teensy can not read a terminal output If you used Iorngeeks phukd library you can use the code "int ledkeys(void)" if you don't wan to use his library best thing to do would be ask him or download his library and have a look inside to see how it works.
-
Hi Im not to good with osx, but could you do a search of the whole hard disk for say .doc .xls .ppt .html .txt and so on then make a copy of those files. you might need to do it using the GUI You can set the Teensy to read the caps lock num lock and scroll lock keys, best to look on iorngeeks website for an example this.
-
You may a problem making it find the drive, cos drive letters change depending on the computer. I guess Your working on linux?
-
I just figged that kinda what you can use kon boot for. but I guess this works if they have a bios password, and you don't fancy going inside there computer.
-
If you have plenty of time behind a pc when it's locked, logged off or shut down. But only A few seconds when it logged in, this code will allow you to change the users password or run any command at the login screen. This works by replacing an ease of access tool with command prompt I used the on screen keyboard (osk.exe) in this code but you can also use Magnify.exe or Utilman.exe When you have run this while the computer is logged in, you will be able to open the ease of access menu on the login screen and select the tool you have replaced with cmd. if you have replaced Utilman then cmd
-
[Version 1] Usb Rubber Ducky On A Normal Usb
benownzu93 replied to danielbrthwt's topic in USB Rubber Ducky
You Want to be looking at the usb switch blade \ Usb Hack saw, that kind of stuff -
You could Just use the "ver" command.
-
Some Good Ideas. I Really Like this one :P --Edit-- I just had to do it void setup(){ delay(3000); run("http://www.youtube.com/watch?v=EK2tWVj6lXw"); delay(500); run("notepad.exe"); delay(700); } void loop(){ Mouse.move(-127, -127); echo("YOU HAVE BEEN RICK ROLLED"); enter(); } void enter(){ Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); } void run(char *command){ delay(100); Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.set_key1(KEY_R); Keyboard.send_now(); Keyboard.set_modifier(0); Keyboar
-
[Version 1] [code][windows] Create New Admin Account In Windows.
benownzu93 replied to Elementix's topic in USB Rubber Ducky
The best way to do it is to find cmd in the start menu then use ctrl+shift and enter to run as admin, you also need to send left and enter to accept the UAC, I did something like this here Very good point. You are smart, but dumb users aren't that smart. so it will still work for most common users. -
[Version 1] [code][windows] Create New Admin Account In Windows.
benownzu93 replied to Elementix's topic in USB Rubber Ducky
This should work for XP, but on 7 it won't you need to run cmd as admin for these commands to work. not too sure about vista but i have a feeling it is the same as 7 with this.