Find a file
2019-01-09 04:03:33 -08:00
libpiper add place holder for libpiper 2018-12-29 06:13:14 +00:00
sshpiperd fix build 2019-01-09 04:03:33 -08:00
vendor fix vendor typo 2019-01-09 11:01:06 +00:00
.gitignore fix gitignore missing pkg 2019-01-09 10:14:04 +00:00
.travis.yml fix go ver in travis 2018-12-29 06:13:15 +00:00
cover.sh add cover to travis 2018-12-29 06:13:15 +00:00
Dockerfile use alpine as runtime image 2019-01-07 11:49:05 +00:00
entrypoint.sh use alpine as runtime image 2019-01-07 11:49:05 +00:00
Gopkg.lock fix vendor typo 2019-01-09 11:01:06 +00:00
Gopkg.toml fix gitignore missing pkg 2019-01-09 10:14:04 +00:00
LICENSE init commit 2018-12-29 06:12:51 +00:00
lint.sh add cover to travis 2018-12-29 06:13:15 +00:00
README.md Update README.md 2019-01-07 04:04:56 -08:00
ver bump ver to 0.4 2018-12-29 06:13:15 +00:00

SSH Piper

Build Status Go Report Card GoDoc

sshpiper: Coverage Status

sshpiperd: Coverage Status

SSH Piper works as a proxy-like ware, and route connections by username, src ip , etc.

+---------+                      +------------------+          +-----------------+
|         |                      |                  |          |                 |
|   Bob   +----ssh -l bob----+   |   SSH Piper   +------------->   Bob' machine  |
|         |                  |   |               |  |          |                 |
+---------+                  |   |               |  |          +-----------------+
                             +---> pipe-by-name--+  |                             
+---------+                  |   |               |  |          +-----------------+
|         |                  |   |               |  |          |                 |
|  Alice  +----ssh -l alice--+   |               +------------->  Alice' machine |
|         |                      |                  |          |                 |
+---------+                      +------------------+          +-----------------+


 Downstream                         SSH Piper                       Upstream                     

Install

with Go

go get -u github.com/tg123/sshpiper/sshpiperd

with pam module support

go get -u -tags pam github.com/tg123/sshpiper/sshpiperd

with Docker image

docker run farmer1992/sshpiperd

Run what is WORKING_DIR

docker run -d -p 2222:2222 \
  -v /etc/ssh/ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key \
  -v /YOUR_WORKING_DIR:/var/sshpiper \
  farmer1992/sshpiperd

Run with Additional Challenge

use env SSHPIPERD_CHALLENGER to specify which challenger to use

docker run -d -p 2222:2222 \
  -e SSHPIPERD_CHALLENGER=pam \
  -v /YOUR_PAM_CONFIG:/etc/pam.d/sshpiperd \
  -v /etc/ssh/ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key \
  -v /YOUR_WORKING_DIR:/var/sshpiper \
  farmer1992/sshpiperd

with Snap

Get it from the Snap Store

sudo snap install sshpiperd

configure with snap

sudo snap set sshpiperd 'port=3333'

sudo snap restart sshpiperd

NOTE:

  • Default working dir for snap verion is /var/snap/sshpiperd/common
  • use classic mode if PAM is not working: sudo snap install --classic sshpiperd

Quick start

Just run showme.sh in sshpiperd example directory

go get github.com/tg123/sshpiper/sshpiperd && `go env GOPATH`/src/github.com/tg123/sshpiper/sshpiperd/example/showme.sh

the example script will setup a sshpiper server using

bitbucket -> bitbucket@bitbucket.org:22 # ssh 127.0.0.1 -p 2222 -l bitbucket
github -> github@github.com:22 # ssh 127.0.0.1 -p 2222 -l github
gitlab -> gitlab@gitlab.com:22 # ssh 127.0.0.1 -p 2222 -l gitlab

connect to gitlab

$ ssh 127.0.0.1 -p 2222 -l gitlab
Permission denied (publickey).

connect to github.com

$ ssh 127.0.0.1 -p 2222 -l github
Permission denied (publickey).

Configuration

./sshpiperd daemon -h

    sshpiperd:
      -l, --listen=                               Listening Address (default: 0.0.0.0) [$SSHPIPERD_LISTENADDR]
      -p, --port=                                 Listening Port (default: 2222) [$SSHPIPERD_PORT]
      -i, --server-key=                           Server key file for SSH Piper (default: /etc/ssh/ssh_host_rsa_key) [$SSHPIPERD_SERVER_KEY]
      -u, --upstream-driver=                      Upstream provider driver (default: workingdir) [$SSHPIPERD_UPSTREAM_DRIVER]
      -c, --challenger-driver=                    Additional challenger name, e.g. pam, empty for no additional challenge [$SSHPIPERD_CHALLENGER]
          --auditor-driver=                       Auditor for ssh connections piped by SSH Piper  [$SSHPIPERD_AUDITOR]
          --log=                                  LogFile path. Leave empty or any error occurs will fall back to stdout [$SSHPIPERD_LOG_PATH]
          --log-flags=                            Flags for logger see https://godoc.org/log, default LstdFlags (default: 3) [$SSHPIPERD_LOG_FLAGS]

    upstream.mysql:
          --upstream-mysql-host=                  mysql host for driver (default: 127.0.0.1) [$SSHPIPERD_UPSTREAM_MYSQL_HOST]
          --upstream-mysql-user=                  mysql user for driver (default: root) [$SSHPIPERD_UPSTREAM_MYSQL_USER]
          --upstream-mysql-password=              mysql password for driver [$SSHPIPERD_UPSTREAM_MYSQL_PASSWORD]
          --upstream-mysql-port=                  mysql port for driver (default: 3306) [$SSHPIPERD_UPSTREAM_MYSQL_PORT]
          --upstream-mysql-dbname=                mysql dbname for driver (default: sshpiper) [$SSHPIPERD_UPSTREAM_MYSQL_DBNAME]

    upstream.postgres:
          --upstream-postgres-host=               postgres host for driver (default: 127.0.0.1) [$SSHPIPERD_UPSTREAM_POSTGRES_HOST]
          --upstream-postgres-user=               postgres user for driver (default: postgres) [$SSHPIPERD_UPSTREAM_POSTGRES_USER]
          --upstream-postgres-password=           postgres password for driver [$SSHPIPERD_UPSTREAM_POSTGRES_PASSWORD]
          --upstream-postgres-port=               postgres port for driver (default: 5432) [$SSHPIPERD_UPSTREAM_POSTGRES_PORT]
          --upstream-postgres-dbname=             postgres dbname for driver (default: sshpiper) [$SSHPIPERD_UPSTREAM_POSTGRES_DBNAME]
          --upstream-postgres-sslmode=            postgres sslmode for driver (default: require) [$SSHPIPERD_UPSTREAM_POSTGRES_SSLMODE]
          --upstream-postgres-sslcert=            postgres sslcert for driver [$SSHPIPERD_UPSTREAM_POSTGRES_SSLCERT]
          --upstream-postgres-sslkey=             postgres sslkey for driver [$SSHPIPERD_UPSTREAM_POSTGRES_SSLKEY]
          --upstream-postgres-sslrootcert=        postgres sslrootcert for driver [$SSHPIPERD_UPSTREAM_POSTGRES_SSLROOTCERT]

    upstream.sqlite:
          --upstream-sqlite-dbfile=               databasefile for sqlite (default: file:sshpiper.sqlite) [$SSHPIPERD_UPSTREAM_SQLITE_FILE]

    upstream.workingdir:
          --upstream-workingdir=                  Path to workingdir (default: /var/sshpiper) [$SSHPIPERD_UPSTREAM_WORKINGDIR]
          --upstream-workingdir-allowbadusername  Disable username check while search the working dir [$SSHPIPERD_UPSTREAM_WORKINGDIR_ALLOWBADUSERNAME]
          --upstream-workingdir-nocheckperm       Disable 0400 checking when using files in the working dir [$SSHPIPERD_UPSTREAM_WORKINGDIR_NOCHECKPERM]
          --upstream-workingdir-fallbackusername= Fallback to a user when user does not exists in directory [$SSHPIPERD_UPSTREAM_WORKINGDIR_FALLBACKUSERNAME]
          --upstream-workingdir-stricthostkey     upstream host public key must in known_hosts file, otherwise drop the connection [$SSHPIPERD_UPSTREAM_WORKINGDIR_STRICTHOSTKEY]

    challenger.welcometext:
          --challenger-welcometext=               Show a welcome text when connect to sshpiper server [$SSHPIPERD_CHALLENGER_WELCOMETEXT]

    auditor.typescript-logger:
          --auditor-typescriptlogger-outputdir=   Place where logged typescript files were saved (default: /var/sshpiper) [$SSHPIPERD_AUDITOR_TYPESCRIPTLOGGER_OUTPUTDIR]

Files inside Working Dir

Working Dir is a /home-like directory. SSHPiperd read files from workingdir/[username]/ to know upstream's configuration.

e.g.

workingdir tree

.
├── github
│   └── sshpiper_upstream
└── linode
    └── sshpiper_upstream

when ssh sshpiper_host -l github, sshpiper reads workingdir/github/sshpiper_upstream and the connect to the upstream.

User files

These file MUST NOT be accessible to group or other. (chmod og-rwx filename)

  • sshpiper_upstream

    • line starts with # are treated as comment
    • only the first not comment line will be parsed
    • if no port was given, 22 will be used as default
    • if user@ was defined, username to upstream will be the mapped one
# comment
[user@]upstream[:22]
e.g. 

git@github.com

google.com:12345

  • authorized_keys

    OpenSSH format authorized_keys (see ~/.ssh/authorized_keys). Used for publickey sign again(see below).

  • id_rsa

    RSA key for publickey sign again(see below).

  • known_hosts

    when upstream-workingdir-stricthostkey is set, upstream server's public key must present in known_hosts

Publickey sign again

During SSH publickey auth, RFC 4252 Section 7, ssh client sign session_id and some other data using private key into a signature sig. This is for server to verify that the connection is from the client not the man in the middle.

However, sshpiper actually holds two ssh connection, and it is doing what the man in the middle does. the two ssh connections' session_id will never be the same, because they are hash of the shared secret. RFC 4253 Section 7.2.

To support publickey auth, sshpiper will modify the sig using a private key (id_rsa) in the workingdir/[username]/.

How this work

+------------+        +------------------------+                       
|            |        |                        |                       
|   client   |        |   SSH Piper            |                       
|   PK_X     +-------->      |                 |                       
|            |        |      v                 |                       
|            |        |   Check PK_X           |                       
+------------+        |   in authorized_keys   |                       
                      |      |                 |                       
                      |      |                 |     +----------------+
                      |      v                 |     |                |
                      |   sign agian           |     |   server       |
                      |   using PK_Y  +-------------->   check PK_Y   |
                      |                        |     |                |
                      |                        |     |                |
                      +------------------------+     +----------------+

e.g.

on client

ssh-copy-id -i PK_X test@sshpiper

on ssh piper server

ln -s ~test/.ssh/authorized_keys workingdir/test/authorized_keys
ssh-keygen -N '' -f workingdir/test/id_rsa  # this is PK_Y
ssh-copy-id -i workingdir/test/id_rsa test@server

now ssh test@sshpiper -i -i PK_X, sshpiper will send PK_Y to server instead of PK_X.

Additional Challenge (--challenger-driver=)

ssh piper allows you run your own challenge before dialing to the upstream. if a client failed in this challenge, connection will be closed. however, the client has to pass the upstream server's auth in order to establish the whole connection. Additional Challenge is required, but not enough.

This is useful when you want use publickey and something like google-authenticator together. OpenSSH do not support use publickey and other auth together.

Available Challengers

  • pam

    Linux-PAM challenger

    this module use the pam service called sshpiperd

    you can configure the rule at /etc/pam.d/sshpiperd

  • welcometext

    Do nothing, but print a welcome text

SSH Session logging (--auditor-driver=typescript-logger)

When record_typescript is allowed, each piped connection would be recorded into typescript in working_dir.

The file format is compatible with scriptreplay(1)

Example:

$ ./sshpiperd  --auditor-driver=typescript-logger

ssh user_name@127.0.0.1 -p 2222
... do some commands
exit


$ cd workingdir/user_name
$ ls *.timing *.typescript
1472847798.timing 1472847798.typescript

$ scriptreplay -t 1472847798.timing 1472847798.typescript # will replay the ssh session

TODO List

  • live upgrade
  • hostbased auth support
  • ssh-copy-id support or tools
  • challenger: menu challenger
  • sshpiperd: user@subhost@host support