The sys admin's daily grind: Shell In A Box
Sea Shells in a Box
At some point, any service that can't run fast enough will be put on the web. So, why not do this for remote login? With a little JavaScript and CSS wizardry, a software tool called "Shell In A Box" sends a shell to the browser.
The web login tool I am looking at today is available in many distributions, or you can download it from the website [1]. I got Shell In A Box to jump onto my Kubuntu lab machine like this:
apt-get -fym install shellinabox
It runs as a service in the background, normally listening on port 4200. When I then surf to localhost:4200, I see the Bash login prompt and can log on and go about my work in the normal way (Figure 1). It doesn't even have to be a full login. I can also redirect the output from programs running in Bash to the web.
Shell In A Box is easily configurable. Typing
shellinaboxd -t--localhost-only -p 8001--no-beep -s'/htop/:nobody:nogroup:/:htop-d 5'
beams the Htop process monitor into the web. The -t
parameter disables SSL encryption, which is enabled by default. Switching this off here is less critical than you might think, because I am only letting Shell In A Box listen locally on 127.0.0.1 – in a box in the true sense of the word. If you don't like the idea of the default port (4200), you can choose a different one; this is handled by -p 8001
in my example. The --no-beep
option disables the annoying notification tones.
Miscellaneous Crustaceans
The -s
parameter is followed by the actual shell command, whose output you want to display in the browser. You can do this with multiple box shell instances at the same time, which is why I specified a URL (/htop
) to distinguish between the instances. To see the output, I thus need to enter a URL of http://127.0.0.1/htop in my browser's address bar. The results look like Figure 2.
Besides statically displaying the typical text flow from standard command-line tools, the browser also supports interactive working, assuming that the tools you use have an interactive mode. For example, if you press the M key in the Htop output, the browser shows the processes sorted in descending order by memory requirement, just as in the native command line.
As always in production operations, I would advise caution with the shellinaboxd
. If you export your Bash to the web, you should at least insist on HTTPS. The user rights also need to be as conservative as possible, as shown in the Htop example, where I specified nobody:nogroup
.
Charly Kühnast
Charly Kühnast is a Unix operating system administrator at the Data Center in Moers, Germany. His tasks include firewall and DMZ security and availability. He divides his leisure time into hot, wet, and eastern sectors, where he enjoys cooking, freshwater aquariums, and learning Japanese, respectively.
Infos
- Shell In A Box: https://code.google.com/p/shellinabox/
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.