key50 Posted February 21, 2013 Share Posted February 21, 2013 (edited) Hey I was wondering how I can get the rubber ducky to type into the URL bar of a web browser. Anyone know how I can achieve this? Edited February 21, 2013 by key50 Quote Link to comment Share on other sites More sharing options...
Mr-Protocol Posted February 21, 2013 Share Posted February 21, 2013 If the target machine is Windows you can just type out the http://URL in the run box and it will open with the default browser. Quote Link to comment Share on other sites More sharing options...
ApacheTech Consultancy Posted February 21, 2013 Share Posted February 21, 2013 Also, in Firefox, pressing Ctrl+L takes you to the location bar, with all the current text selected. Quote Link to comment Share on other sites More sharing options...
Mr-Protocol Posted February 21, 2013 Share Posted February 21, 2013 Also, in Firefox, pressing Ctrl+L takes you to the location bar, with all the current text selected. Pretty sure this is standard in all browsers now. Only works if it's the active window though. Not sure what the OP situation is. Quote Link to comment Share on other sites More sharing options...
key50 Posted February 21, 2013 Author Share Posted February 21, 2013 If the target machine is Windows you can just type out the http://URL in the run box and it will open with the default browser. Ah! Thanks protocol! The script I am writing is so that when the ducky is plugged in, it loads up a bunch of browsers and starts playing rick-roll forever in every single one. :) *insert troll face here* Quote Link to comment Share on other sites More sharing options...
Mr-Protocol Posted February 21, 2013 Share Posted February 21, 2013 No problem. Quote Link to comment Share on other sites More sharing options...
ApacheTech Consultancy Posted February 21, 2013 Share Posted February 21, 2013 You could use the wget download script to download a RIckRoll wav and save it as "Windows Logon Sound.wav" in the appropriate folder. :p @Protocol. Ahh, I did not know that. I've uninstalled IE and every other browser. :p Quote Link to comment Share on other sites More sharing options...
overwraith Posted February 21, 2013 Share Posted February 21, 2013 (edited) There's also this payload. Uses a VB script to open a webpage and also supports opening of multiple tabs. Made specifically for IE. REM AUTHOR: overwraith REM MOBILETABS.TXT BEGINS GUI R STRING cmd /Q /D /T:0a /F:OFF /V:OFF /K DELAY 500 ENTER DELAY 750 REM DELETE THE SCRIPT IF IT ALREADY EXISTS STRING DEL /Q MobileTabs.vbs ENTER REM VB SCRIPT FOUND AT: REM http://www.vistaheads.com/forums/microsoft-public-internetexplorer-general/438407-command-line-open-several-websites-multiple-tabs.htmlinternetexplorer REM INPUT FILE MobileTabs.vbs STRING copy con MobileTabs.vbs ENTER STRING on error resume next ENTER STRING navOpenInBackgroundTab = &h1000 ENTER STRING set oIE = CreateObject("InternetExplorer.Application") ENTER STRING Set args = WScript.Arguments ENTER STRING oIE.Navigate2 args.Item(0) ENTER STRING for intx = 1 to args.count ENTER STRING oIE.Navigate2 args.Item(intx), navOpenInBackgroundTab ENTER STRING next ENTER STRING oIE.Visible = true ENTER CONTROL Z ENTER REM RUN THE VB SCRIPT TO LAUNCH INTERNET EXPLORER REM THE DOUBLE QUOTES BECOME MORE IMPORTANT FOR LONGER URLs STRING MobileTabs.vbs "http://www.google.com/" "http://mwomercs.com/" "http://hak5.org/" "http://forums.hak5.org/index.php?/forum/56-usb-rubber-ducky/" ENTER I'm thinking you also might want to take a look at the DNS poisoning payloads. Modifies the Hosts file and makes the web browser go to someplace unintended. Edited February 21, 2013 by overwraith Quote Link to comment Share on other sites More sharing options...
key50 Posted February 21, 2013 Author Share Posted February 21, 2013 I'm thinking you also might want to take a look at the DNS poisoning payloads. Modifies the Hosts file and makes the web browser go to someplace unintended. ooohhhh. That sound very interesting gonna have to check that out, sounds very cool! 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.