From 5cc5ea7deb47e2a9c5498c3a707aabd2b49b5014 Mon Sep 17 00:00:00 2001 From: Dominik Date: Fri, 28 Nov 2025 13:34:07 +0100 Subject: [PATCH] Commands added --- data/commands.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/data/commands.json b/data/commands.json index bbebd7c..118ce3a 100644 --- a/data/commands.json +++ b/data/commands.json @@ -29,6 +29,14 @@ { "command": "python3 -m venv .venv && source .venv/bin/activate", "desc": "Initialise a (simple) .venv and activate it" + }, + { + "command": "pip install jupyterlab ipykernel && python3 -m ipykernel install --user --name=project-name", + "desc": "Install and initialise the kernel to use in jupyter" + }, + { + "command": "jupyter lab", + "desc": "Start Jupyiter Lab" } ], "go": [ @@ -116,5 +124,27 @@ "command": "gpg --keyserver hkps://keys.openpgp.org --send-keys RECIPIENT_KEY_ID", "desc": "Send a signed key to a keyserver" } + ], + "security": [ + { + "command": "firejail --private --net=none ", + "desc": "Run a command in a sandbox with no access to the home dir or the network" + }, + { + "command": "nmap -p- -A ", + "desc": "Scan a IP Address for open ports and os information" + }, + { + "command": "nmap -p -sV ", + "desc": "Scan a specific port to see more information about service running" + }, + { + "command": "nmap -p --script ssh* ", + "desc": "Scan a ssh port for all ssh relavant info" + }, + { + "command": "chkrootkit / rkhunter --check / lyns audit system", + "desc": "System checking tools for malware and auditing on linux" + } ] }