Jump to content

Seshan

Dedicated Members
  • Posts

    613
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Seshan

  1. Sucks you only have warrantee until September, you probably won't get it back until November. :P
  2. Darren said before that we have pretty much/have already done everything that he had.
  3. Well we are not out of boxes, there was a box for every set of letters, but just not everyone knew what to do with it I guess.
  4. Could it be heart not start?
  5. Okay, So 20 is nothing 19 is probably ERS since there is nothing else it could really be. We still need 8,9,10,11,13,14,15,16, Every one should have their boxes by now, and It doesn't looks like they will be showing up here.
  6. Sounds simular to what they wanted here, I didn't happen, I think we just got another election, Can't remember, we have had too many elections in the past 5 years.
  7. Well, none of my old facebook emails have that.
  8. Yeah... You are better off sticking to online, tech shows don't really last on TV. Plus, the internet is where it's at, why would you want to go to a old outdated platform like TV?
  9. We allready have 4 scroll up. From the looks of the flickr pics, 20 was just put into a big box with 4 and 12. So either Darren messed up, or there is no #20
  10. Okay now we are at. (http:/)/www.hak5.ORG/O.....NTH Seems like it may be a random URL and not a word. We still need 8,9,10,11,13,14,15,16,17,18,19,20 to finish the URL the beginning boxes are useless now.:| I have a feeling we may never get it, everyone should have their boxes by now.
  11. Assuming darren went in order, we just need every box after 7 :P
  12. Well, Assuming you are at the persons computer, it would be hard for them to click somewhere. I like having the LED's giving you feed back, so if something goes wrong, you know where it should of been in the script by the LED's blinking. I'm using d(); because I didn't feel like put delay(100); all the time, this way it saves some space, and having little delays helps prevent it from messing up. *edit*, I also just realized i forgot to change it to terminal.app, since I don't use spotlight I use quicksilver, I have it set for just terminal. Another problem to think of. :|
  13. If you don't go to m.twitter.com you don't need tab, twitter.com will put the cursor in the tweet box. See here. http://www.hak5.org/forums/index.php?showtopic=16453 Oh and if you are going to plain right up copy irongeeks code, you should give him credit.
  14. It's tab 8 times for me. Friends request add's one. Also, the escape search thing doesn't work on Chrome for OS X. Not sure about other browsers. *edit* This doesn't even work, all it's doing for me is bring up the start menu, and I don't feel like figuring out what is wrong right now. :/
  15. Your talking about Apple right? The same company that made people chain down iPad's and have the in a room with no windows, and no cameras where allowed near them? Apple isn't a company to leak stuff. It's actually bad for them, the more hype around a product launch the better, if people already know what it is there will be less hype.
  16. This will automatically post to twitter. User has to be logged in. I'll be adding it to the wiki ( http://www.hak5.org/projects/doku.php?id=usb_rubber_ducky ) Windows Code http://drp.ly/Vca2f // Automatic twitter poster for Windows, User must be logged into twitter for this to work. // Created by Seshan 30/04/10 11:48 PM int ledPin = 11; void setup() { pinMode(ledPin, OUTPUT); // put this before other led commands or the LED will be dim ledstart(); // lights up when connected delay(3000); // delay for computer ledstart(); // lights up when payload starts // opens run Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.send_now(); Keyboard.set_key1(KEY_R); Keyboard.send_now(); d(); // this is a 100ms delay, see below for commands. Keyboard.print("www.twitter.com"); // goes to twitter d(); enter(); delay(6000); // delay for browser to load Keyboard.print("This is a test"); // this is what gets posted to twitter, change this to what ever you want d(); Keyboard.set_key2(KEY_TAB); Keyboard.send_now(); enter(); Keyboard.set_key2(0); ledend(); // delay to stop it running again, 9000!!! milli-sec. delay(9000); } void loop() { } // hits enter void enter(){ Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); } // LED command for end of script. void ledend(){ digitalWrite(ledPin, HIGH); delay (500); digitalWrite(ledPin, LOW); delay (500); digitalWrite(ledPin, HIGH); delay (500); digitalWrite(ledPin, LOW); } // LED command for start of script void ledstart(){ digitalWrite(ledPin, HIGH); delay (1000); digitalWrite(ledPin, LOW); } // delay 100ms void d(){ delay(100); } OS X Code http://drp.ly/Vci76 // Automatic twitter poster for OS X, User must be logged into twitter for this to work. // Created by Seshan 30/04/10 1:34 AM int ledPin = 11; void setup() { pinMode(ledPin, OUTPUT); // put this before other led commands or the LED will be dim ledstart(); // lights up when connected delay(3000); // delay for computer ledstart(); // lights up when payload starts // quits the pop up you get on OS X with new keyboards Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.send_now(); Keyboard.set_key1(KEY_Q); Keyboard.send_now(); enter(); // hits enter, see below for commands d(); // this is a 100ms delay, see below for commands. spotlight(); // opens spotlight, see below for commands Keyboard.print("Terminal.app"); // types terminal enter(); delay(1000); Keyboard.print("open http://www.twitter.com && killall Terminal"); // thanks to Psychosis for the killall terminal command d(); enter(); delay(4500); Keyboard.print("This is a test"); // this is what gets posted to twitter, change this to what ever you want d(); Keyboard.set_key2(KEY_TAB); Keyboard.send_now(); enter(); Keyboard.set_key2(0); ledend(); // delay to stop it running again, 9 sec. delay(9000); } void loop() { } // hits enter void enter(){ Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); } // opens spotlight void spotlight(){ Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.send_now(); Keyboard.set_key1(KEY_SPACE); Keyboard.send_now(); } // LED command for end of script. void ledend(){ digitalWrite(ledPin, HIGH); delay (500); digitalWrite(ledPin, LOW); delay (500); digitalWrite(ledPin, HIGH); delay (500); digitalWrite(ledPin, LOW); } // LED command for start of script void ledstart(){ digitalWrite(ledPin, HIGH); delay (1000); digitalWrite(ledPin, LOW); } // delay 100ms void d(){ delay(100); }
  17. I don't know if you could tell if it failed or not, but you could easily add a green light when it starts, and yellow light when it's working and a red light when it's done, or something.
  18. The law that protects journalists is there to project them from having there equipment being seized to reveal sources, not to protect thieves and criminals, Gizmodo bought a stolen iPhone, Yes it was lost, but the guy that found it had no right to sell it, and did not deal with it properly. It wasn't a "kid" carrying around the iPhone, and I personally believe Gizmodo deserves anything that happens to them. They released the guys name that lost the phone, and pretty much just ruined his career and life. Why should Apple release press kits when this may not even be the final version of the phone, it was a prototype.
  19. Follow this http://www.pjrc.com/teensy/gcc.html assuming you have the teensy loader, teensyduino and arduino software installed already, not the stuff you have to type in terminal, you need to do that.
  20. It's really just Windows VS no one. Mac's also need user passwords if you want to change anything serious from the terminal, or install anything like key loggers.
  21. I think the Devil duckies and Ninja duckies might be too big. Also, I added more to my first post.
  22. Sweet, thanks for the help. :D The code has been changed. :D
×
×
  • Create New...