Jump to content

Dаrren Kitchen

Active Members
  • Posts

    107
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://irongeek.com
  • ICQ
    0

Recent Profile Visitors

2,040 profile views

Dаrren Kitchen's Achievements

Newbie

Newbie (1/14)

  1. Just wanted to test some stuff. ?ͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬͤͩͬͧͫͬ
  2. It's worked well for me, the only problem I ever had was when I told the compiler I had an SD adapter hooked to it, but I did not. That caused Windows to blue screen when I used some of the switched I had hooked to those pins. :)
  3. It seemed to go over pretty well, thanks. :) I added quite a bit of stuff post Outerz0ne.
  4. Damn, Monta Elkins' URFUKED talk at Defcon seems similar to mine. He does RF, I do some other things. His talk precedes mine, this depresses me since it sort of steals my thunder. Also, the similar name is interesting.
  5. I made a quick video that will show you the basics of setting up the Teensyduino environment in Windows so you can make PHUKD devices: http://www.irongeek.com/i.php?page=videos/...syduino-arduino
  6. Hi all, I've be doing some work on locking down Windows Vista/7 against malicious USB devices: http://www.irongeek.com/i.php?page=securit...ous-usb-devices Anyone have guidance on doing the same in Linux? I imagine there are udev rules that can be set? Adrian
  7. I'd imagine it would effect all operating systems since it seems to be an issue with CPU time on the Teensy. Also, the SD will only be at 1.1 speeds. If you plan to copy files to storage, use a hub and a USB 2.0 device, like I did in my Trojaned mouse.
  8. Paul explained it to me, seems using the SD takes a lot of CPU time on the Teensy, and causes the clock to have issues.
  9. Ok, more info on the problem. It only happens when I use the SD card, and USB type "Disk(SD Card)+Keyboard". Just "Keyboard+Mouse" does not have the time drift.
  10. I've encountered a problem with millis() function in Teensyduino.It seems that after my program runs for awhile, the clock on the Teensy seems to slow down and not give accurate results. It seems to be a side effect of me using my "CommandAtRunBarMSWIN" function, but the only time related function I use in it is delay() and when I tested with just that it the loop did not seem to skew the clock. I'm using the latest alpha to my knowledge. Ideas? Adrian void CommandAtRunBarMSWIN(char *SomeCommand){ //digitalWrite(ledPin, HIGH); // set the LED on Keyboard.set_modifier(MODIFIERKEY_RIGHT_GUI); //Windows key Keyboard.set_key1(KEY_R); // use r key Keyboard.send_now(); // send strokes Keyboard.set_modifier(0); //prep release of control keys Keyboard.set_key1(0); //have to do this to keep it from hitting key multiple times. Keyboard.send_now(); //Send the key changes delay(1500); Keyboard.print(SomeCommand); Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); }
  11. I've updated the PHUKD Library to 0.2. The main changes are that I've added two functions for the Gnome desktop under Linux: ShrinkCurWinGnome() CommandAtRunBarGnome(char *SomeCommand) you may also see something about OS X, but it does not work. Can anyone tell me a run bar equivalent that works in OS X? I've also changed the library so that it goes in the normal libraries folder, and not the same folder as your sketch.
  12. Posted it here: http://www.irongeek.com/i.php?page=securit...y_PHUKD_library I've also added some functions to make it easy to set traps with the CAPS/NUM/Scroll Lock keys. :)
  13. I've not done much work with the SD yet, best ask Paul. My understanding is you will need the experimental version of Teensyduino http://www.pjrc.com/teensy/experimental.html
×
×
  • Create New...