> For the complete documentation index, see [llms.txt](https://n4shx.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://n4shx.gitbook.io/wiki/schule/archiv/linux-host-enumeration.md).

# Linux Host Enumeration

### Identität / Rechte

```
whoami
id
groups
```

### Systeminfos

```
uname -a
hostname
cat /etc/os-release
```

### Netzwerk

```
ip a
ip r
ss -tulpn
netstat -antp
```

### Prozesse / Dienste

```
ps aux
systemctl list-units --type=service
```

### Dateien / Suche

```
ls -la
find / -name "*.conf" 2>/dev/null
grep -R "password" /etc 2>/dev/null
```
