Skip to main content

SSH password log-in and command automator

Project description

ocsh - SSH password log-in and command automator

ocsh automates SSH password login and command execution through annotations on ssh_config(5) Hosts:

  • password authentication, reading password from pass[1]:
    • config: # ocsh pass <pass-name>
    • command: $ ocsh host
  • post-login command execution:
    • config: # ocsh post <action> "<cmd>"
    • command: $ ocsh host[action]
  • post-login command execution, reading additional password from pass[1]:
    • config: # ocsh postpass <action> "<cmd>" <pass-name>
    • command: $ ocsh host[action]
  • use different ssh command or prefix by other command:
    • config: # ocsh cmd "<ssh-command>"
    • config: # ocsh pre "<pre-command>"
    • command: $ ocsh host

[1] https://www.passwordstore.org/

Compatibility with OpenSSH is kept as much as possible:

  • support usual SSH aliases, keys and command-line options
  • compatible with rsync, scp and other tools using SSH for transport, see example commands
  • autocompletion can be set-up with --ocsh-install-autocompletion

Usage

usage: ocsh.py [-h] [--ocsh-verbose] [--ocsh-pretend] [--ocsh-examples]
               [--ocsh-install-autocompletion]
               [destination] ...

ocsh - SSH password log-in and command automator

positional arguments:
  destination           host[action]
  args                  any OpenSSH options or remote command

options:
  -h, --help            show this help message and exit
  --ocsh-verbose        enable debug messages
  --ocsh-pretend        do not actually perform the connection
  --ocsh-examples       show example ocsh configuration and commands
  --ocsh-install-autocompletion
                        install bash autocompletion for the current user

Installation

pip install ocsh

Examples of usage

# connect to SSH alias 'host1' with automated password login
# ssh_config(5)
Host host1
   Hostname 10.0.0.1
   User minou
   # ocsh pass pass-location                 # location in password-store
# command
ocsh host1
# equivalent ssh command
sshpass -p "$(pass pass-location)" ssh host1

# connect to SSH alias 'host2' with automated password login, going through the above 'host1', and become root
# ssh_config(5)
Host host2
    Host 10.9.0.1
    User root
    # ocsh pass pass-location2               # location in password-store
    # ocsh postpass su "su -l" pass-location3
    # ocsh post nsep "ip netns exec nsep"    # post-login command to enter a network namespace
# command
ocsh host2[root]
# equivalent ssh command
sshpass -p "$(pass pass-location2)" ssh -oProxyCommand="sshpass -p "$(pass pass-location1)" ssh host1" host2 su -l
<now enter root password (from pass-location3) manually>

# run ssh connection from a different namespace
# ssh_config(5)
Host host1
   Hostname 10.0.0.1
   User minou
   # ocsh pre "ip netns exec toto"
# command
ocsh host1
# equivalent command
ip netns exec ssh host1

# run rsync through ocsh from host1 with automated password login
rsync -e "ocsh" -avP host1:/etc/hosts /tmp/

# run scp through ocsh from host1 with automated password login
scp -S "ocsh" host1:/etc/hosts /tmp/

See also

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ocsh-20230908.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

ocsh-20230908-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file ocsh-20230908.tar.gz.

File metadata

  • Download URL: ocsh-20230908.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for ocsh-20230908.tar.gz
Algorithm Hash digest
SHA256 03ecaaee8a866696a67d24a1eb6611e2cf4f37b149503aaf4a8b7bd33cd246b5
MD5 944779a5b3d3b1f1f220ea1d04af7212
BLAKE2b-256 b5bf58707219928efca1c2a8f4e45d4929c70615bfe0c4fa168f0c64a732472d

See more details on using hashes here.

File details

Details for the file ocsh-20230908-py3-none-any.whl.

File metadata

  • Download URL: ocsh-20230908-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for ocsh-20230908-py3-none-any.whl
Algorithm Hash digest
SHA256 4ec8122eb2bee5792778bdbf4283e2bf6ef946bfa40cf41a7375e551f4b91fbb
MD5 df1e609a0a99c6b81a9865a31f6e2425
BLAKE2b-256 d248a57e3bffb2dded07a6434580c678c7ee373c1c3d395ec913ef861fcbd358

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page