Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungWhat is Programming And How i can Enjoy it?(24.09.2026 um 11:54 Uhr)
Sichere ProgrammierungYou Don't Need Adobe Commerce Cloud to Survive Black Friday(24.09.2026 um 11:55 Uhr)
Malware / Trojaner / VirenBeyond Lazarus: Organization of DPRK cyber capabilities(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenBeyond Lazarus: Organization of DPRK Cyber Capabilities(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenThe fake worker threat and the rise of human infiltration(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenPolinRider Spreads Through Compromised GitHub Accounts and Packagist(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenWeaselBiscuit Strips BeaverTail and OtterCookie Down to Essentials(24.09.2026 um 11:59 Uhr)
Sichere ProgrammierungWhat is Programming And How i can Enjoy it?(24.09.2026 um 11:54 Uhr)
Sichere ProgrammierungYou Don't Need Adobe Commerce Cloud to Survive Black Friday(24.09.2026 um 11:55 Uhr)
Malware / Trojaner / VirenBeyond Lazarus: Organization of DPRK cyber capabilities(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenBeyond Lazarus: Organization of DPRK Cyber Capabilities(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenThe fake worker threat and the rise of human infiltration(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenPolinRider Spreads Through Compromised GitHub Accounts and Packagist(24.09.2026 um 11:59 Uhr)
Malware / Trojaner / VirenWeaselBiscuit Strips BeaverTail and OtterCookie Down to Essentials(24.09.2026 um 11:59 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Linux Filesystem & Essential Linux Commands

Linux Directory Structure / - Root (base) directory 🌳 /root - Home directory for root user 👑 /home - User home directories (/home/username) 🏠 /bin - Symlink to /usr/bin (user command binaries) ⚙️ /sbin - Symlink to /usr/sbin (system a…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!






Linux Directory Structure



/ - Root (base) directory 🌳



/root - Home directory for root user 👑



/home - User home directories (/home/username) 🏠



/bin - Symlink to /usr/bin (user command binaries) ⚙️



/sbin - Symlink to /usr/sbin (system admin binaries) 🛠️



/usr/bin - Actual location of user binaries (ls, cat, docker) 📦



/usr/sbin - System administration binaries (useradd, nginx) 🔧



/usr/local/bin - Manually installed binaries (not managed by package manager) 📥



/lib - Essential system libraries for /bin and /sbin 📚



/opt - Third-party/commercial software packages (self-contained) 🧩



/var - Runtime data, logs, application state (Docker, Jenkins) 📊



/etc - Configuration files (editable text configs) 📝



/tmp - Temporary files (cleared on reboot) ⏳



/proc - Virtual filesystem with process/system information 🔍



/sys - Virtual filesystem with hardware/kernel information 🖥️



/boot - Boot loader files and kernel 🚀



/dev - Device files (hardware interfaces) 🔌



/mnt - Manual mount point for filesystems 💽



/media - Auto-mount point for removable devices 📀



/run - Runtime process data (PIDs, sockets) 🏃






The PATH Variable



The PATH variable in Linux is an environment variable that specifies a list of directories where executable programs are located. When you run a command in the terminal, the system searches through these directories to find the executable file corresponding to that command.






Format of the PATH Variable



The PATH variable consists of a colon (:) separated list of directories. Here's an example:




/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games









Example of Setting the PATH Variable



To include a new directory, such as where you have installed Terraform, you can modify the PATH variable as follows:




export PATH=$PATH:/usr/local/terraform






After editing the file, you can apply the changes immediately by sourcing the file:




source ~/.bashrc









Linux Commands






Gaining Root User Access






sudo su -
logout









Finding path






which









Piping Commands






# Use the output of the first command as input for the second
|









Debugging Commands






# Print command in debug mode
set -x









Error Handling in Scripts






# Exit the script when there is an error
set -e

# Exit the script when there is a pipe failure
set -o pipefail









Disk and Memory Usage






# Disk usage in human-readable format
df -h

# Memory usage
free

# Number of processing units
nproc









Real-Time Performance Monitoring






# Monitor performance in real-time
top

# All processes running in the background
ps -ef









Filtering Output






# Basic filtering command
grep

# Powerful filtering and text processing
awk









Retrieving and Downloading Information from the Internet






# Retrieve information from the internet
curl

# Download files from the internet
wget









Searching for Files






# Search for the location of a file
find / -name test.sh









Trapping Signals in Linux






trap









Working with Processes






# List all processes
ps -ef

# Print errors from remote logs
curl ... | grep ...









String Manipulation






# Write number of occurrences of 's' in the word 'missi'
x=missi
grep -o "s" <<<"$x" | wc -l









Scheduling Tasks with Crontab






# Crontab in Linux
Alarm









Editing Files






# Open a file in read-only mode
vim -r test.txt











  • Acts as a shortcut reference to the original file


  • The link can be broken if the original file is deleted or moved







  • Acts as a copy


  • Deleting the original file does not affect the hard link







Network Troubleshooting Utilities






Traceroute
Tracepath









Managing Large Log Files






Logrotate









Filtering JSON Data






# Filter data from JSON
jq









Filtering YAML Data






# Filter data from YAML
yq






Feel free to share and spread the knowledge! 🌟😊 Enjoy Learning! 😊

CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - Linux Filesystem & Essential Linux Commands
id: a92aa988-bd0c-42ff-87f8-b66e5d4a0ad4
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "Linux Filesystem & Essential L" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Linux Filesystem &amp; Essential Linux Comma.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Linux Filesystem & Essential Linux Commands

Thematisch verwandte Begriffe: Linux, Filesystem, Essential, Commands · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY Kritische Sicherheitsmeldung
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick