Update page.tsx

This commit is contained in:
MacRimi 2025-05-05 12:28:33 +02:00
parent 48ef6b1d78
commit 2fd36f3aa4

View File

@ -52,6 +52,13 @@ export default function SystemCommandsPage() {
{ command: "cut -d: -f1,3,4 /etc/passwd", description: "All users with UID and GID" },
{ command: "getent passwd | column -t -s :", description: "Readable user table (UID, shell, etc.)" },
],
},
{
title: "Auditing & Summary Tools",
commands: [
{ command: "lynis audit system", description: "Run a full system security audit" },
{ command: "fastfetch", description: "Display system summary in ASCII format" },
],
},
]