Documentation

Usage Summary

  1. Unzip installation
  2. Generate new security library by running GenerateNewSecurityLibrary.bat or executing the following command .\SecureMe.exe -generate. Once this is complete you will have a new file named DynGen.dll this is your security file and is responsible for encryption of the user credentials
  3. Create Credential Key File by running the following command .\SecureMe.exe -u <username> -d <domain> -p <password>. A file named Credential.key will be created in the same folder as SecureMe.exe and you will be referencing this file for all commands that you wish to run with these credentials.
  4. Execute a command by running RunAsThisUser.exe -f <Full Path File> -a <arguments> -c <Full path to credential key>

SecureMe.exe Usage

Note: If creating a Credential Key file a username, domain, and password must be given

RunAsThisUser.exe Usage

Examples

Create Credential Key

.\SecureMe.exe -u Administrator - d . -p Admin!
Creates credential key against the Local Administrator account with password Admin!

Execute Command

.\RunAsThisUser.exe -f C:\Windows\System32\Notepad.exe -a Test.txt -c Credential.key
Executes Notepad.exe with encrypted credentials from Credential.key

Notes