
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
TerminalOS is a full desktop-like experience within your terminal. Built using Python and the Textual framework, it offers a responsive and visually appealing TUI (Text User Interface) with multiple applications, window management, theme support, and keyboard navigation—all running inside a terminal window.
App | Description | Status | Shortcut |
---|---|---|---|
📁 File Manager | Browse directories and file info | ✅ Ready | 1 in launcher |
📝 Text Editor | Syntax-highlighted file editing | ✅ Ready | 2 in launcher |
🔢 Calculator | Scientific calculator with history | ✅ Ready | 3 in launcher |
📊 System Monitor | CPU, memory, and disk usage | ✅ Ready | 4 in launcher |
💻 Terminal | Built-in CLI emulator | 🚧 Coming Soon | 5 in launcher |
🎵 Music Player | Playlist and audio playback | 🚧 Coming Soon | 6 in launcher |
F1
: HelpF12
: App LauncherCtrl+Q
: QuitESC
: Close current dialog/appTab
: Move between UI elementsgit clone https://github.com/000xs/terminalos.git
cd terminalos
pip install -r requirements.txt
pip install -e .
terminalos
textual>=0.41.0
rich>=13.0.0
click>=8.1.0
psutil>=5.9.0
pyfiglet>=0.8.0
pygments>=2.14.0
git clone https://github.com/000xs/terminalos.git
cd terminalos
python start_terminalos.py
git clone https://github.com/000xs/terminalos.git
cd terminalos
pip install -e .
terminalos
terminalos
# Optional flags:
--debug
--no-boot
--version
Enter
F12
ESC
F1
terminalos --theme matrix
Located at:
%USERPROFILE%\.config\terminalos\
~/.config/terminalos/
Example config.json
:
{
"theme": "dark",
"debug": false,
"auto_save": true,
"appearance": {
"show_boot": true,
"animations": true,
"font_size": 12
},
"file_manager": {
"show_hidden": false,
"default_path": "~",
"sort_by": "name"
},
"text_editor": {
"syntax_highlighting": true,
"line_numbers": true,
"tab_size": 4
}
}
terminalos/
├── core/ # App framework
├── desktop/ # Desktop and taskbar
├── apps/ # Built-in apps
├── config/ # Settings and themes
└── utils/ # Helpers and logging
git clone https://github.com/000xs/terminalos.git
cd terminalos
pip install -e .
from textual.screen import Screen
from textual.widgets import Header, Footer, Static
class MyCustomApp(Screen):
def compose(self):
yield Header()
yield Static("Hello from my custom app!")
yield Footer()
def on_key(self, event):
if event.key == "escape":
self.dismiss()
Add to launcher in desktop/desktop.py
:
from ..apps.my_app import MyCustomApp
self.dismiss()
self.app.push_screen(MyCustomApp())
ModuleNotFoundError
: Use direct launcherpip install textual rich click psutil pyfiglet pygments
echo $TERM
FAQs
A complete operating system experience in your terminal
We found that terminalos demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.