camroncook79 Posted April 29, 2014 Share Posted April 29, 2014 First of all I would like to apologize for being a complete noob to this. I have a specific need, to create a VERY simple payload which will refresh a screen overnight in order to not log out of a program. What I need is a 10 second delay when the duck is plugged in, followed by the F5 key, followed by a 10 second delay, followed by the F5 key etc, etc, ... This sequence would need to be repeated for 12 continuous hours until I was able to return to the terminal. Can anyone please help me to generate a payload (my first) to run such a program? is it possible? Keep in mind that I am a humble sales guy with basic computer skills. Thank you for any help you could provide. Examples welcome. Quote Link to comment Share on other sites More sharing options...
Guest spazi Posted April 29, 2014 Share Posted April 29, 2014 I believe the script is like this:DELAY 10000 F5 REPEAT 43200 I can't test it to see if I'm 100% percent correct since I'm at work right now. Will test later :) basically it waits 10000 milliseconds (10 sec) and presses F5, then repeats 43200 times, with the 10 second pauses it's actually 12 hours. I can recommend a program called Auto-ITA friend of mine uses it a lot to automate work stuff for him, and sometimes programmed macros to auto-fill forms for him hehe :) Quote Link to comment Share on other sites More sharing options...
camroncook79 Posted April 29, 2014 Author Share Posted April 29, 2014 (edited) Thank you spazi. My only concern was that it would only repeat F5 without the delay. If that is not the case my problem was uber simple and I will try and run this tomorrow. Thank you for your time and attention to my noobie question. Edited April 29, 2014 by camroncook79 Quote Link to comment Share on other sites More sharing options...
Guest spazi Posted April 29, 2014 Share Posted April 29, 2014 No problem buddie :) If you get stuck, post back here with your problem! Quote Link to comment Share on other sites More sharing options...
camroncook79 Posted April 30, 2014 Author Share Posted April 30, 2014 I think I have missed a major step. I transferred the file that came with the micro sd to my laptop leaving it blank, then created the simple payload discussed earlier, downloaded the .bin file, and transferred it to the micro sd. After inserting it into the duck I plugged the duck into the usb and got a red light saying that it could not read the file. I also tried this with the original file on the sd which produced the manufacturers preloaded introductory sentence thus confirming that it is my error. As new as this is to me I need to know what needs to be done to the file so that it can be recognized and run as written. Thank you for your patience. Quote Link to comment Share on other sites More sharing options...
parkour86 Posted April 30, 2014 Share Posted April 30, 2014 I'm pretty sure the REPEAT command only repeats the last command issued. It looks like that script will only repeat the F5 key and not the delay. Maybe this will work but I could be wrong. The DEFAULTDELAY command will delay 10 seconds between every command that's issued. Not sure if it applies to the REPEAT command. You can give this a shot. DEFAULTDELAY 10000 F5 REPEAT 43200 Quote Link to comment Share on other sites More sharing options...
overwraith Posted April 30, 2014 Share Posted April 30, 2014 (edited) One thing that might be possible in this case would be developing custom firmware expressly for this purpose. Also, the repeat command only repeats the last command issued. I wish we could repeat more commands, but we can't yet. I think that any payload that you write for this purpose would eventually end after merely a few hours. The spammer firmware has a perpetual repetitive action built into it. In this case your payload would look simply like this: DELAY 10000 F5 You may have to tweak the spammer delay in the firmware. It is coded in C, not that hard to understand. Edited April 30, 2014 by overwraith Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.