| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Shift from Windows key → PuTTY → Enter → host → Enter to Debian's OpenSSH—without a hard landing.
SSHShift is a profile-free KDE launcher for OpenSSH, built for Windows administrators moving their daily work to Debian. It provides a familiar “enter a host and connect” window, then gets out of the way and lets the system's real ssh client run inside Konsole.
| Tool | Familiar starting point | Debian engine |
|---|---|---|
| RDPShift | An mstsc-style “enter a computer and connect” workflow | FreeRDP |
| SSHShift | Windows key → PuTTY → Enter → host → Enter, made native to KDE | OpenSSH + Konsole |
| MapShift | A familiar “map network drive” path into KDE applications | KDE KIO SMB + KIO-FUSE |
| ServiceShift | A services.msc-style overview with familiar service controls | systemd + PolicyKit |
| TaskShift | A Task Scheduler-style overview with safe schedule editing | systemd timers + PolicyKit |
SSHShift supports Debian 13 with KDE Plasma and Wayland.
Debian already ships excellent administration tools, but a command prompt can be an unnecessarily abrupt first step for administrators arriving from Windows. SSHShift provides a softer landing without replacing OpenSSH, inventing a new protocol stack, or locking users into its interface.
The Advanced options panel shows the equivalent ssh command for the current choices. The launcher can therefore act as training wheels: use the graphical workflow today and take the same command to a terminal whenever you are ready.
SSHShift does not bundle its own SSH implementation. It launches the OpenSSH and Konsole packages maintained by Debian, so normal apt upgrades deliver their security and bug fixes through the same trusted update path as the rest of the system. There is no separate full client, private protocol copy, or extra updater that can quietly fall behind.
The small wrapper may occasionally need a compatibility or interface update, but the security-sensitive SSH engine remains Debian's package—not frozen inside SSHShift.
The persistent known-host database is stored at $XDG_DATA_HOME/ssh-shift/known_hosts, normally ~/.local/share/ssh-shift/known_hosts. It contains public host keys indexed by KDE-Wallet-keyed opaque aliases—not server names.
Install the runtime dependencies:
sudo apt install openssh-client konsole python3-dbus python3-pyqt6Then install SSHShift for the current user:
./install.shThe application appears as SSHShift in Plasma's application menu. The installer defaults to ~/.local; set PREFIX to choose another user prefix.
To uninstall the launcher:
./uninstall.shUninstalling deliberately preserves the known-host database and KDE Wallet key so reinstalling does not silently discard host-key-change protection.
If Konsole needs time to start, SSHShift displays a cancellable progress window instead of appearing unresponsive.
python3 -m unittest discover -s tests -v
python3 -m py_compile ssh-shiftThe tests cover endpoint validation, configuration-injection defenses, native UI defaults, command previews, HMAC host aliases, private file permissions, OpenSSH configuration parsing, and destination-free launcher arguments.
SSHShift prevents this launcher and OpenSSH's user known-host file from retaining recoverable destination names. It cannot hide a live connection from DNS, network equipment, the destination, the operating system, or an attacker able to inspect process memory or an unlocked KDE Wallet. See SECURITY.md for details.
OpenSSH remains responsible for SSH cryptography, authentication, protocol compatibility, host-key validation, and the remote session.
MIT. See LICENSE.
| Back | FazBrowse Home | New Git URL |