🔐 A simple credential manager to store and reuse multiple PSCredential objects.
Go to file
OCram85 d92d963979
Publish preview version (#42)
* adds certificate store location

* add additional certificate store tests

* add cert store tests for New-CredentialStoreItem

* fix test

* add error handling for credential store path

* add Import-CSCertificate helper function

* Import new certificate if param is given

* fix extension filter

* add linux error message

* fix pester test for linux

* update cert helper functions

* export helper functions

* fix cs cert import

* simplify cs cret lookup

* remove obsolete functions

* fix pester test for linux

* fix error type for linux

* fix var name

* fix pester test

* disable travis artifact upload

* update cert lookup for item functions

* debug build error

* use cert instance constructor for linux

* disable debug output

* remove obsolete exports
2019-04-04 17:02:17 +02:00
.vscode PowerShell 6 Core Support (#35) 2019-01-16 12:55:29 +01:00
assets PowerShell 6 Core Support (#35) 2019-01-16 12:55:29 +01:00
bin Publish Pre-release (#1) 2017-09-21 13:32:15 +02:00
docs PowerShell 6 Core Support (#35) 2019-01-16 12:55:29 +01:00
resources PowerShell 6 Core Support (#35) 2019-01-16 12:55:29 +01:00
src Publish preview version (#42) 2019-04-04 17:02:17 +02:00
tests Publish preview version (#42) 2019-04-04 17:02:17 +02:00
tools fix Connect-To bug (#41) 2019-03-15 12:49:43 +01:00
.gitattributes PowerShell 6 Core Support (#35) 2019-01-16 12:55:29 +01:00
.gitignore Publish Pre-release (#1) 2017-09-21 13:32:15 +02:00
.travis.yml Publish preview version (#42) 2019-04-04 17:02:17 +02:00
LICENSE Initial commit 2017-07-27 13:40:00 +02:00
README.md PowerShell 6 Core Support (#35) 2019-01-16 12:55:29 +01:00
appveyor.yml fix Connect-To bug (#41) 2019-03-15 12:49:43 +01:00

README.md

AppVeyor branch AppVeyor tests branch Coveralls github PowerShell Gallery PowerShell Gallery

forthebadge forthebadge

General

The PSCredentialStore is a simple credential manager for PSCredentials. It stores PSCredentials in a simple json file. You can choose between a private and shared credential store. The private one exists in your profile and can ony accessed by your account on the same machine. The shared store enables you to use different credentials for your scripts without exposing them as plain text.

The shared store isn't 100% secure and I don't recommend using it in production!

PSCredentialStore was developed to simplify the delegation of complex powershell scripts. In this case you often need to store credentials for non interactive usage like in scheduled tasks.

For more details read the about_PSCredentialStore page on github or via CLI with Get-Help about_PSCredentialStore.

Upcoming Changes

The will be some breaking changes starting with the 0.5.0.xxx:

  • PSCredentialStore will use PFX certificates to encrypt your credentials.
    • This replaces the the current encryption methods and you need to recreate or upgrade your pre existing stores.
  • The changes allows the PSCredentialStore module to support the PowerShell Core editions.
    • Yes this means, you can use the module on any PowerShell 6 supported linux distribution.
  • It's also possible to create a shared credential store and transfer it onto a another platform like: Windows -- to --> Linux and vice versa.
  • Automatically creates self signed certificate with 2048 bits RSA keys for encryption.

Installation

  • Make sure you use PowerShell 5.1 or higher with $PSVersionTable.
  • Use the builtin PackageManagement and install with: Import-Module PowerShellGet; Install-Module 'PSCredentialStore' -Repository 'PSGallery'
    • Additionally use the -AllowPrerelease switch until we publish the final release!
  • Done. Start exploring the Module with Import-Module PSCredentialStore ; Get-Command -Module PSCredentialStore

Manual Way

  • Take a look at the Latest Release page.
  • Download the PSCredentialStore.zip.
  • Unpack the zip file and put it in your Powershell module path.
    • Don't forget to change the NTFS permission flag in the context menu.
  • Start with Import-Module PSCredentialStore

Quick Start

1. First we need a blank credential store. You can decide between a private or shared store. The private Credential Store can only be accessed with your profile on the machine you created it.

# Private credential store
New-CredentialStore

# Shared credential rtore
New-CredentialStore -Shared

#Shared credential store in custom Location
New-CredentialStore -Shared -Path 'C:\CredentialStore.json'

2. Now you can manage your credential store items:

# This will prompt for credentials and stores it in a private store
New-CredentialStoreItem -RemoteHost 'dc01.myside.local' -Identifier 'AD'

# You can now use it in other scripts like this:
$DCCreds = Get-CredentialStoreItem -RemoteHost 'dc01.myside.local' -Identifier 'AD'
Invoke-Command -ComputerName 'dc01.myside.local' -Credential $DCCreds -ScripBlock {Get-Process}

The credential store contains also a simple function to establish a connection with several systems or protocols. If you have already installed the underlying framework / modules, you can connect these endpoints:

  • CiscoUcs - Establish a connection to a Cisco UCS fabric interconnect.
  • FTP - Establish a connection to a FTP host.
  • NetAppFAS - Establish a connection to a NetApp Clustered ONTAP filer.
  • VMware - Establish a connection to a VMware vCenter or ESXi host.
  • CisServer - Establish a connection to the CisServer Service on vCenter Host.
  • ExchangeHTTP - Establish a remote connection with an Exchange endpoint via http.
    • Requires PowerShell remoting
  • ExchangeHTTPS - Establish a remote connection with an Exchange endpoint via https.
    • Requires PowerShell remoting
  • SCP - Establish a SCP connection.

Here are some basic examples:

Connect-To -RemoteHost "ucs.myside.local" -Type CiscoUcs
Connect-To -RemoteHost "ftp.myside.local" -Type FTP
Connect-To -RemoteHost "fas.myside.local" -Type NetAppFAS
Connect-To -RemoteHost "esx01.myside.local" -Type VMware
Connect-To -RemoteHost "vcr.myside.local" -Type CisServer

Credits

A huge thanks to all the people who helped with their projects and indirect contributions which made this possible!