Command line SSH menu and helper utility with cluster support (OO rewrite).
Project description
sshmenuc
Overview
sshmenuc is a complete rewrite of the original sshmenu tool, implemented as an objectโoriented Python application. The project has been redesigned around classes and clear separation of concerns to make the codebase easier to extend, maintain and test.
Documentation
๐ Complete documentation is available at: https://disoardi.github.io/sshmenuc/
Description
sshmenuc provides an interactive terminal menu to browse, filter and launch SSH (and cloud CLI) connections. It supports nested groups of hosts, perโhost metadata (user, connection type, identity file / certkey) and launching different connection commands (e.g., ssh, gcloud ssh inside Docker).
Key Features
- ๐ Interactive configuration editor - Add, edit, delete, and rename targets and connections directly from the menu
- ๐ Nested host groups - Organize connections hierarchically
- ๐ฅ๏ธ Multiple connection support - Launch up to 6 connections in tmux split panes
- ๐จ Colorized terminal UI - Clear visual feedback and navigation
- ๐ SSH key support - Per-host identity file configuration
- ๐ณ Docker/Cloud CLI - Support for gcloud ssh and other connection types
- โ Comprehensive testing - 212 tests ensuring reliability
- โ๏ธ Remote config sync - Sync encrypted config via a private Git repo (AES-256-GCM)
- ๐๏ธ Multi-context profiles - Manage multiple independent SSH config sets (home, work, ISPโฆ)
- ๐ก๏ธ Zero-plaintext-on-disk - When sync is active,
config.jsonis never written to disk
Security Note: sshmenuc intentionally does NOT store or persist plainโtext passwords. If a password is required, either remember it at runtime or use a secure password manager / SSH keys. Password history or inโapp password storage is not supported by design for security reasons.
Requirements
- Python 3.9+
- Dependencies: readchar, clint, docker, cryptography
- These are declared in pyproject.toml for packaging
Remote Config Sync
Sync your SSH config across multiple machines using a private Git repository. The config is encrypted with AES-256-GCM + Scrypt before being stored in the repo.
Setup
- Create a private Git repository (GitHub, GitLab, Gitea, self-hosted)
- Copy
sync.json.exampleto~/.config/sshmenuc/sync.jsonand edit it:
{
"version": 1,
"remote_url": "git@github.com:your-user/your-sshmenuc-config.git",
"branch": "main",
"sync_repo_path": "~/.config/sshmenuc/sync_repo",
"auto_pull": true,
"auto_push": true
}
- On first launch, you will be asked for a passphrase. Use the same passphrase on all machines.
Behavior
| Condition | Result |
|---|---|
| Remote reachable | Pull on startup, push after every save |
| Remote unreachable, local backup exists | SYNC:OFFLINE warning, uses backup |
| Remote unreachable, no backup | SYNC:NO-BACKUP warning, normal operation |
No sync.json |
Normal operation, no sync |
Export Config (Plaintext)
To decrypt and export the config in plaintext:
sshmenuc --export /path/to/output.json # Export to file
sshmenuc --export - # Print to stdout
Menu Integration
[s]key: Show sync status panel and trigger manual sync- Header label: Sync state shown at the end of the instruction bar (
SYNC:OK,SYNC:OFFLINE, etc.)
Security Notes
- The plaintext
config.jsonis never stored in the remote repo โ only the encryptedconfig.json.encis pushed - Zero-plaintext-on-disk: when sync is configured, the local
config.jsonis also never written to disk; the config lives in RAM only (decrypted from.encat startup) - Any stale plaintext
config.jsonis automatically removed on first run after.encis available - A local encrypted backup (
~/.config/sshmenuc/config.json.enc) is maintained for offline use - The passphrase is kept in memory only during the session (never written to disk)
- Two simultaneous instances each decrypt independently โ no shared plaintext between processes
Multi-Context Profiles
Manage multiple independent SSH config sets โ for example home, work, and isp โ each with its own remote repo and passphrase.
Create a Context
sshmenuc --add-context home
The wizard will ask for the remote repo URL, branch, and passphrase, then encrypt and push your current config.
Switch Context at Runtime
Press [x] inside the menu to see all available contexts and switch interactively. The selected context is loaded immediately from its remote (or local .enc backup if offline).
Context Registry
All contexts are stored in ~/.config/sshmenuc/contexts.json. Each entry contains:
{
"contexts": {
"home": {
"remote_url": "git@github.com:user/sshmenuc-home.git",
"branch": "main",
"sync_repo_path": "~/.config/sshmenuc/contexts/home/sync_repo",
"remote_file": "config.enc"
},
"work": { "..." }
},
"active": "home"
}
Migration from Single-File Mode
If you have an existing config.json at ~/.config/sshmenuc/config.json and no contexts configured yet, sshmenuc will offer to convert it to a named context on first launch.
New Modular Structure
sshmenuc/
โโโ __init__.py
โโโ __main__.py # Module entry point
โโโ main.py # Application entry point
โโโ core/ # Core business logic
โ โโโ __init__.py
โ โโโ base.py # Common base class BaseSSHMenuC (encrypted I/O hooks)
โ โโโ config.py # ConnectionManager (CRUD operations)
โ โโโ config_editor.py # ConfigEditor (interactive editing)
โ โโโ navigation.py # ConnectionNavigator (menu, keyboard, sync wiring)
โ โโโ launcher.py # SSHLauncher (tmux & SSH)
โโโ sync/ # Remote sync & encryption
โ โโโ __init__.py
โ โโโ crypto.py # AES-256-GCM + Scrypt (encrypt/decrypt)
โ โโโ git_remote.py # Git pull/push helpers
โ โโโ passphrase_cache.py # In-memory passphrase store
โ โโโ sync_manager.py # Sync state machine + zero-plaintext in-memory config
โโโ contexts/ # Multi-context profile management
โ โโโ __init__.py
โ โโโ context_manager.py # contexts.json registry CRUD
โโโ ui/ # User interface
โ โโโ __init__.py
โ โโโ colors.py # Color management (Colors)
โ โโโ display.py # Menu rendering (MenuDisplay)
โโโ utils/ # Common utilities
โโโ __init__.py
โโโ helpers.py # Argument parser, logging, get_current_user()
Common Base Class
BaseSSHMenuC (core/base.py)
Abstract class providing common functionality to all other classes:
- Configuration management: Loading, saving, validation
- Logging setup: Base logging system configuration
- Utility methods: Directory creation, data structure validation
- Template Method pattern: Abstract
validate_config()method to implement
Shared Functionality:
load_config(): JSON configuration loading and normalizationsave_config(): Configuration savingget_config()/set_config(): Configuration getter/setterhas_global_hosts(): Check for hosts presence in configuration_create_config_directory(): Configuration directory creation
Derived Classes
1. ConnectionManager (core/config.py)
Extends BaseSSHMenuC for configuration management:
- CRUD operations on targets and connections
- Specific validation for configuration structures
- Methods to create, modify, delete targets and connections
2. ConfigEditor (core/config_editor.py)
Interactive configuration editor (uses ConnectionManager):
- Form-based target and connection editing
- Add, edit, delete, rename operations
- User-friendly prompts and confirmations
- Integrated keyboard shortcuts (a/e/d/r keys)
3. ConnectionNavigator (core/navigation.py)
Extends BaseSSHMenuC for menu navigation:
- Main navigation loop
- User input handling (arrows, space, enter)
- Multiple selection with markers
- Integration with
MenuDisplayfor rendering - Integrated
ConfigEditorfor inline editing
4. SSHLauncher (core/launcher.py)
Standalone class for connection launching:
- tmux session management (single and multiple)
- SSH command construction with parameters
- Session name sanitization
- Multiple connection launching with split panes
UI Components
Colors (ui/colors.py)
- ANSI color constants definitions
- Text coloring helper methods
- Semantic methods (
success(),warning(),error())
MenuDisplay (ui/display.py)
- Table and menu rendering
- Header, row, footer management
- Multiple selection and marker support
- Complete separation of display logic
Utilities
helpers.py (utils/helpers.py)
- Argument parser setup
- Logging configuration
- Host entry validation
- Generic support functions
Installation
Install from PyPI (Recommended)
The easiest way to install sshmenuc is directly from PyPI:
pip install sshmenuc
Or to install a specific version:
pip install sshmenuc==1.1.0
Install from Source (Development)
For development or to install from source:
- Clone the repository:
git clone https://github.com/disoardi/sshmenuc.git
cd sshmenuc
- Install with Poetry:
poetry install
- Or install in editable mode with pip:
pip install -e .
Installazione via Docker
Se non vuoi installare Python e dipendenze, puoi usare l'immagine Docker:
# Build locale
docker build -t sshmenuc .
# Oppure pull da GitHub Container Registry (quando pubblicata)
docker pull ghcr.io/disoardi/sshmenuc
Avvio con mount del config e delle chiavi SSH:
docker run --rm -it \
-v ~/.config/sshmenuc:/root/.config/sshmenuc \
-v ~/.ssh:/root/.ssh:ro \
sshmenuc
Per comoditร , aggiungi questo alias al tuo .bashrc / .zshrc:
alias sshmenuc='docker run --rm -it \
-v ~/.config/sshmenuc:/root/.config/sshmenuc \
-v ~/.ssh:/root/.ssh:ro \
sshmenuc'
SSH agent forwarding (chiavi con passphrase)
Se le tue chiavi SSH sono protette da passphrase e usi ssh-agent, monta il socket dell'agent per evitare di reinserire la passphrase ad ogni connessione:
docker run --rm -it \
-v ~/.config/sshmenuc:/root/.config/sshmenuc \
-v ~/.ssh:/root/.ssh:ro \
-v "$SSH_AUTH_SOCK":/tmp/ssh-auth.sock \
-e SSH_AUTH_SOCK=/tmp/ssh-auth.sock \
sshmenuc
Alias completo con agent forwarding:
alias sshmenuc='docker run --rm -it \
-v ~/.config/sshmenuc:/root/.config/sshmenuc \
-v ~/.ssh:/root/.ssh:ro \
${SSH_AUTH_SOCK:+-v "$SSH_AUTH_SOCK":/tmp/ssh-auth.sock -e SSH_AUTH_SOCK=/tmp/ssh-auth.sock} \
sshmenuc'
Questo alias monta il socket dell'agent solo se
SSH_AUTH_SOCKรจ definito, ed รจ quindi compatibile con ambienti senza agent attivo.
Connessioni di tipo Docker
Se utilizzi connection type docker nella config per connetterti a container locali, aggiungi il mount del socket Docker:
docker run --rm -it \
-v ~/.config/sshmenuc:/root/.config/sshmenuc \
-v ~/.ssh:/root/.ssh:ro \
-v /var/run/docker.sock:/var/run/docker.sock \
sshmenuc
Development with Poetry
-
Install Poetry: https://python-poetry.org/docs/#installation
-
Create/install environment and dependencies:
poetry install
- Activate Poetry virtualenv:
poetry shell
# or run commands without activating:
poetry run python -m sshmenuc
Running the Application
# As a module (recommended)
python -m sshmenuc
# Direct execution
python sshmenuc/main.py
# With arguments
python -m sshmenuc -c /path/to/config.json -l debug
Configuration Reference
The configuration file (~/.config/sshmenuc/config.json) uses the following structure:
{
"targets": [
{
"Group Name": [
{ <host entry> },
{ <host entry> }
]
}
]
}
Host Entry Fields
| Campo | Tipo | Default | Descrizione |
|---|---|---|---|
friendly |
string | required | Nome visualizzato nel menu |
host |
string | required | Hostname, IP o nome container |
user |
string | current user | Username per la connessione |
port |
integer | 22 |
Porta SSH |
certkey |
string | โ | Path alla chiave privata SSH (es. ~/.ssh/id_rsa) |
extra_args |
string | โ | Argomenti SSH aggiuntivi (es. "-t bash", "-o StrictHostKeyChecking=no") |
connection_type |
string | ssh |
Tipo connessione: ssh, gssh (Google Cloud), docker |
zone |
string | โ | Zona cloud (solo gssh) |
project |
string | โ | Progetto cloud (solo gssh) |
command |
string | โ | Comando custom (solo docker, es. "docker exec -it") |
Esempi
{
"targets": [
{
"Production": [
{
"friendly": "web-01",
"host": "web01.example.com",
"user": "admin",
"port": 22,
"certkey": "~/.ssh/prod_key"
},
{
"friendly": "jump-host",
"host": "jump.example.com",
"user": "admin",
"extra_args": "-t bash"
}
]
},
{
"Docker": [
{
"friendly": "nginx",
"host": "nginx_container",
"command": "docker exec -it",
"connection_type": "docker"
}
]
}
]
}
Tip: usa
sshmenuc -c /path/to/config.jsonper specificare un file di configurazione alternativo.
Refactoring Benefits
1. Separation of Concerns
- Each class has a specific, well-defined responsibility
- UI separated from business logic
- Configuration isolated from navigation
2. Reusability
- Base class provides common functionality
- UI components reusable in other contexts
- SSH launcher usable independently
3. Testability
- Smaller, focused classes
- Injectable dependencies
- Well-defined public methods for unit testing
4. Extensibility
- Easy to add new connection types
- Template Method pattern for customizations
- Modular structure for new features
5. Maintainability
- Logically organized code
- Reduced code duplication
- Clear interfaces between modules
Migration Guide
Using the New Structure:
# Instead of importing everything from one file
from sshmenuc.core import ConnectionManager, ConnectionNavigator
from sshmenuc.ui import Colors, MenuDisplay
from sshmenuc.utils import setup_logging
# Create objects with common inheritance
config_manager = ConnectionManager("config.json")
navigator = ConnectionNavigator("config.json")
# Both inherit from BaseSSHMenuC
assert isinstance(config_manager, BaseSSHMenuC)
assert isinstance(navigator, BaseSSHMenuC)
Breaking Changes in v1.1.0
- Original monolithic
sshmenuc.pyhas been removed - Entry point is now
main.pywith modular structure - All functionality maintained through new class-based architecture
- Configuration format remains compatible
Testing
The project includes comprehensive test coverage:
- 212 tests across all modules
- CI/CD integration with GitHub Actions
- Multi-version testing on Python 3.9, 3.10, 3.11, 3.12
Running Tests
# Run all tests
poetry run pytest
# Run with coverage
poetry run pytest --cov=sshmenuc --cov-report=html
# Run specific test file
poetry run pytest tests/core/test_navigation.py -v
Test Examples
# Base class testing
def test_base_config_loading():
manager = ConnectionManager("test_config.json")
assert manager.validate_config()
# Isolated UI component testing
def test_colors():
colors = Colors()
assert colors.success("test").startswith("\033[92m")
# Launcher testing with mocks
def test_ssh_launcher():
launcher = SSHLauncher("test.com", "user")
assert launcher.host == "test.com"
Contributing
Contributions are welcome. Typical workflow:
- Fork the repository
- Create a feature branch:
git checkout -b feature/my-change
- Implement changes, add tests and update documentation
- Commit and push your branch:
git commit -am "Describe change"
git push origin feature/my-change
- Open a Pull Request against the main repository
Please follow the existing code style and include tests for new functionality where appropriate.
License
This project is licensed under GPLv3. See the LICENSE file for details.
Project Status
Version 1.2.0 - Production Ready โ
- โ
Available on PyPI:
pip install sshmenuc - โ Complete modular refactoring with OOP design
- โ Comprehensive test suite (212 tests)
- โ Full API documentation with Sphinx
- โ CI/CD pipeline with GitHub Actions
- โ Interactive configuration editor
- โ Remote config sync with AES-256-GCM encryption
- โ Multi-context profiles (home, work, ISPโฆ)
- โ Zero-plaintext-on-disk mode
- โ Python 3.9+ support
Future Enhancements
Potential improvements for future versions:
-
Observer pattern for UI events
- Decouple UI event handling from business logic
- Enable plugin-based event listeners
-
Dependency injection framework
- Improve testability and flexibility
- Enable runtime component swapping
-
Enhanced features
- SSH connection pooling
- Session history and favorites
- Advanced filtering and search
- Custom key bindings
Contributions and suggestions are welcome!
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters