thatsmychin Posted November 4, 2016 Share Posted November 4, 2016 Noob ducky user here...as in, just received it in the mail a few hours ago. I've been working on a prank payload for hours now that seems to work great on Windows 7. Windows 10...not so much. DEFAULT_DELAY 100 DELAY 1000 GUI r DELAY 200 STRING iexplore ENTER DELAY 1000 CONTROL T DELAY 200 STRING http://geektyper.com/plain/ ENTER DELAY 200 STRING 6 F11 Windows 10 keeps the focus on the url field and "6" is input before http://... Any thoughts on how to make this work on both? I can't find a solution that moves the focus to the page. Bonus: If you can help me 'click' the "Automate" button on that page I'll give you 5 gold stars. Quote Link to comment Share on other sites More sharing options...
Enzym3 Posted November 8, 2016 Share Posted November 8, 2016 Why are you opening a 'RUN' dialog, then opening Internet Explorer, opening a new tab and then typing in the web address? Why not just open 'RUN' and type the web address. It will then open your default browser to that website in a single step. Quote Link to comment Share on other sites More sharing options...
Decoy Posted November 8, 2016 Share Posted November 8, 2016 (edited) As an example, GUI r STRING chrome https://www.somesite.com/ ENTER Also, have you played around with the TAB key at all? Count how many TABs it takes to get the focus where you want it. Assuming it's always in the same place, that would work too. A little cumbersome, but it would work. Edited November 8, 2016 by Decoy Quote Link to comment Share on other sites More sharing options...
Enzym3 Posted November 8, 2016 Share Posted November 8, 2016 Use this instead: DELAY 2000 GUI r DELAY 200 STRING http://geektyper.com/plain/ ENTER DELAY 3000 F11 DELAY 500 STRING 6 Quote Link to comment Share on other sites More sharing options...
Enzym3 Posted November 8, 2016 Share Posted November 8, 2016 Your issue was pressing '6' before going into fullscreen. By default, the focus is set to the URL field, but going into fullscreen mode switches the focus to the window itself (at least in few tests I just did before posting that code change). Worked fine for me. I tried both IE and Chrome. Quote Link to comment Share on other sites More sharing options...
thatsmychin Posted November 11, 2016 Author Share Posted November 11, 2016 Ugh! Such simple solutions! Works like a charm. Thanks for the help all. Quote Link to comment Share on other sites More sharing options...
Enzym3 Posted November 11, 2016 Share Posted November 11, 2016 32 minutes ago, thatsmychin said: Ugh! Such simple solutions! Works like a charm. Thanks for the help all. For whatever reason, it stopped allowing me to post replies on the forum the other day. You can make the script even shorter: DELAY 2000 GUI r DELAY 200 STRING iexplore -k http://geektyper.com/plain/ ENTER DELAY 5000 STRING 6 The -k option automatically opens the website in fullscreen mode. 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.