Bosch Smart Spülmaschine

Wenn mir mal jemand erzählt hätte, daß ich einen nmap auf eine Spülmaschine mache und dabei auch noch einen WebServer finde, hätte ich gefragt, was man denn so genommen hätte. Aber da sind wir:

➜  ~ nmap -A --osscan-guess -Pn -sV 192.168.0.11
Starting Nmap 7.95 ( https://nmap.org ) at 2024-08-29 16:21 CEST
Nmap scan report for bosch-dishwasher-123.fritz.box (192.168.0.11)
Host is up (0.0060s latency).
Not shown: 999 closed tcp ports (conn-refused)
PORT STATE SERVICE VERSION
443/tcp open ssl/https?
|_ssl-date: TLS randomness does not represent time
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 43.83 seconds

Spülmaschine mit HTTPS-Port:

➜  ~ nmap -sV --script ssl-enum-ciphers -p 443 192.168.0.11
Starting Nmap 7.95 ( https://nmap.org ) at 2024-08-29 16:26 CEST
Nmap scan report for bosch-dishwasher-123.fritz.box (192.168.0.11)
Host is up (0.093s latency).
PORT STATE SERVICE VERSION
443/tcp open ssl/https?
| ssl-enum-ciphers:
| TLSv1.2:
| ciphers:
| TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 (secp256r1) - A
| TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 (secp256r1) - A
| TLS_PSK_WITH_AES_256_CBC_SHA - unknown
| TLS_NULL_WITH_NULL_NULL - F
| compressors:
| NULL
| cipher preference: server
| warnings:
| Anonymous key exchange, score capped at F
|_ least strength: unknown
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 32.71 seconds
➜ ~