Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TimothyYe/skm
A simple and powerful SSH keys manager
https://github.com/TimothyYe/skm
ssh-key ssh-manager ssh-manager-cli
Last synced: about 1 month ago
JSON representation
A simple and powerful SSH keys manager
- Host: GitHub
- URL: https://github.com/TimothyYe/skm
- Owner: TimothyYe
- License: mit
- Created: 2017-10-11T06:52:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-05-12T09:02:49.000Z (over 1 year ago)
- Last Synced: 2024-08-02T02:14:40.408Z (4 months ago)
- Topics: ssh-key, ssh-manager, ssh-manager-cli
- Language: Go
- Homepage: https://timothyye.github.io/skm
- Size: 1.78 MB
- Stars: 946
- Watchers: 21
- Forks: 54
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-go - skm - A simple and powerful SSH keys manager - ★ 461 (Software Packages)
- awesome-go-extra - skm - 10-11T06:52:55Z|2022-06-28T14:25:31Z| (Go Tools / DevOps Tools)
- awesome-discoveries - skm - a simple and powerful SSH keys manager _(`Go`)_ (DevOps Utilities)
- starred-awesome - skm - A simple and powerful SSH keys manager (Go)
README
![](https://raw.githubusercontent.com/TimothyYe/skm/master/assets/snapshots/skm.png)
[![MIT licensed][5]][6] [![LICENSE](https://img.shields.io/badge/license-NPL%20(The%20996%20Prohibited%20License)-blue.svg)](https://github.com/996icu/996.ICU/blob/master/LICENSE) [![Build Status][1]][2] [![Go Report Card][7]][8] [![GoCover.io][11]][12] [![GoDoc][9]][10]
[1]: https://travis-ci.org/TimothyYe/skm.svg?branch=master
[2]: https://travis-ci.org/TimothyYe/skm
[5]: https://img.shields.io/dub/l/vibe-d.svg
[6]: LICENSE
[7]: https://goreportcard.com/badge/github.com/timothyye/skm
[8]: https://goreportcard.com/report/github.com/timothyye/skm
[9]: https://godoc.org/github.com/TimothyYe/skm?status.svg
[10]: https://godoc.org/github.com/TimothyYe/skm
[11]: https://img.shields.io/badge/gocover.io-81.8%25-green.svg
[12]: https://gocover.io/github.com/timothyye/skmSKM is a simple and powerful SSH Keys Manager. It helps you to manage your multiple SSH keys easily!
![](https://github.com/TimothyYe/skm/blob/master/assets/snapshots/demo.gif?raw=true)
## Features
* Create, List, Delete your SSH key(s)
* Manage all your SSH keys by alias names
* Choose and set a default SSH key
* Display public key via alias name
* Copy default SSH key to a remote host
* Rename SSH key alias name
* Backup and restore all your SSH keys
* Prompt UI for SSH key selection
* Customized SSH key store path## Installation
#### Homebrew
```bash
brew tap timothyye/tap
brew install timothyye/tap/skm
```#### Using Go
```bash
go get github.com/TimothyYe/skm/cmd/skm
```#### Manual Installation
Download it from [releases](https://github.com/TimothyYe/skm/releases) and extact it to /usr/bin or your PATH directory.
## Usage
```bash
% skmSKM V0.8.5
https://github.com/TimothyYe/skmNAME:
SKM - Manage your multiple SSH keys easilyUSAGE:
skm [global options] command [command options] [arguments...]VERSION:
0.8.5COMMANDS:
init, i Initialize SSH keys store for the first time usage.
create, c Create a new SSH key.
ls, l List all the available SSH keys.
use, u Set specific SSH key as default by its alias name.
delete, d Delete specific SSH key by alias name.
rename, rn Rename SSH key alias name to a new one.
copy, cp Copy current SSH public key to a remote host.
display, dp Display the current SSH public key or specific SSH public key by alias name.
backup, b Backup all SSH keys to an archive file.
restore, r Restore SSH keys from an existing archive file.
cache Add your SSH to SSH agent cache via alias name.
help, h Shows a list of commands or help for one command.GLOBAL OPTIONS:
--store-path value Path where SKM should store its profiles (default: "/Users/timothy/.skm")
--ssh-path value Path to a .ssh folder (default: "/Users/timothy/.ssh")
--restic-path value Path to the restic binary
--help, -h show help
--version, -v print the version
```### For the first time use
You should initialize the SSH key store for the first time use:
```bash
% skm init✔ SSH key store initialized!
```So, where are my SSH keys?
SKM will create SSH key store at ```$HOME/.skm``` and put all the SSH keys in it.__NOTE:__ If you already have id_rsa & id_rsa.pub key pairs in ```$HOME/.ssh```, SKM will move them to ```$HOME/.skm/default```
### Create a new SSH key
__NOTE:__ Currently __ONLY__ RSA and ED25519 keys are supported!```bash
skm create prod -C "[email protected]" -t ed25519Generating public/private rsa key pair.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /Users/timothy/.skm/prod/id_rsa.
Your public key has been saved in /Users/timothy/.skm/prod/id_rsa.pub.
...
✔ SSH key [prod] created!
```### List SSH keys
```bash
% skm ls✔ Found 3 SSH key(s)!
-> default
dev
prod
```
### Set default SSH key
```bash
% skm use dev
Now using SSH key: dev
```### Prompt UI for key selection
You can just type ```skm use```, then a prompt UI will help you to choose the right SSH key:
![](https://github.com/TimothyYe/skm/blob/master/assets/snapshots/prompt.gif?raw=true)
### Display public key
```bash
% skm display
```Or display specific SSH public key by alias name:
```bash
% skm display prod
```### Delete a SSH key
```bash
% skm delete prodPlease confirm to delete SSH key [prod] [y/n]: y
✔ SSH key [prod] deleted!
```
### Copy SSH public key to a remote host```bash
% skm cp [email protected]/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/Users/timothy/.skm/default/id_rsa.pub"
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
[email protected]'s password:Number of key(s) added: 1
Now try logging into the machine, with: "ssh '[email protected]'"
and check to make sure that only the key(s) you wanted were added.✔ Current SSH key already copied to remote host
```### Rename a SSH key with a new alias name
```bash
% skm rn test tmp
✔ SSH key [test] renamed to [tmp]
```### Backup SSH keys
Backup all your SSH keys to $HOME directory by default.
```bash
% skm backupa .
a ./test
a ./default
a ./dev
a ./dev/id_rsa
a ./dev/id_rsa.pub
a ./default/id_rsa
a ./default/id_rsa.pub
a ./test/id_rsa
a ./test/id_rsa.pub✔ All SSH keys backup to: /Users/timothy/skm-20171016170707.tar
```If you have [restic](https://restic.net/) installed then you can also use that
to create backups of your SKM store:```bash
# First, you need a password for your repository
% if [[ ! -f ~/.skm-backups.passwd ]]; then
% openssl rand -hex 64 > ~/.skm-backups.passwd
% fi% skm backup --restic
repository ... opened successfully, password is correctFiles: 0 new, 1 changed, 4 unmodified
Dirs: 0 new, 0 changed, 0 unmodified
Added to the repo: 1.179 KiBprocessed 5 files, 2.593 KiB in 0:00
snapshot $SNAPSHOT saved
✔ Backup to /Users/$USER/.skm-backups complete
```### Restore SSH keys
```bash
% skm restore ~/skm-20171016172828.tar.gz
x ./
x ./test/
x ./default/
x ./dev/
x ./dev/id_rsa
x ./dev/id_rsa.pub
x ./default/._id_rsa
x ./default/id_rsa
x ./default/._id_rsa.pub
x ./default/id_rsa.pub
x ./test/id_rsa
x ./test/id_rsa.pub✔ All SSH keys restored to /Users/timothy/.skm
```Again, SKM also supports [restic](https://restic.net/) to create and restore
backups:```bash
% skm restore --restic --restic-snapshot $SNAPSHOT
repository $REPO opened successfully, password is correct
restoring to /Users/$USER/.skm
✔ Backup restored to /Users/$USER/.skm
```### Integrate with SSH agent
You can use `cache` command to cache your SSH key into SSH agent's cache via SSH alias name.
__Cache your SSH key__
```bash
λ tim [~/]
→ skm cache --add my
Enter passphrase for /Users/timothy/.skm/my/id_rsa:
Identity added: /Users/timothy/.skm/my/id_rsa (/Users/timothy/.skm/my/id_rsa)
✔ SSH key [my] already added into cache
```__Remove your SSH key from cache__
```bash
λ tim [~/]
→ ./skm cache --del my
Identity removed: /Users/timothy/.skm/my/id_rsa (MyKEY)
✔ SSH key [my] removed from cache
```__List your cached SSH keys from SSH agent__
```bash
λ tim [~/]
→ ./skm cache --list
2048 SHA256:qAVcwc0tdUOCjH3sTskwxAmfMQiL2sKtfPBXFnUoZHQ /Users/timothy/.skm/my/id_rsa (RSA)
```### Customized SSH key store path
By default, SKM uses `$HOME/.skm` as the default path of SSH key store.
You can define your customized key store path in your `~/.bashrc` or `~/.zshrc` by adding:```bash
SKM_STORE_PATH=/usr/local/.skm
```### Hook mechanism
Edit and place a executable file named ```hook``` at the specified key directory, for example:
```bash
~/.skm/prod/hook
```This hook file can be both an executable binary file or an executable script file.
SKM will call this hook file after switching default SSH key to it, you can do some stuff in this hook file.
For example, if you want to use different git username & email after you switch to use a different SSH key, you can create one hook file, and put shell commands in it:
```bash
#!/bin/bash
git config --global user.name "YourNewName"
git config --global user.email "[email protected]"
```Then make this hook file executable:
```bash
chmod +x hook
```SKM will call this hook file and change git global settings for you!
## Licence
[MIT License](https://github.com/TimothyYe/skm/blob/master/LICENSE)
[996ICU License](https://github.com/lxlxw/996.TSC/blob/master/LICENSE)