Skip to content

Webmin Security Vulnerabilities: Why Root Server Operators With an Admin Panel Should Act Now

Updates & News  ·   ·   ·  5 min Reading time

An admin panel with root privileges, reachable via a single URL in your browser – that's Webmin's great promise, and at the same time its greatest risk the moment someone other than you finds that URL.

In brief
  • CERT-Bund's warning and information service has published an advisory on Webmin under the identifier WID-SEC-2026-3504.
  • Webmin manages the entire server with root privileges and listens on port 10000 by default – left open on the internet, that's a direct gateway for attackers.
  • A five-step check is enough to assess your own root server: version, reachability, access restriction, update, two-factor.
  • If you're not actively using Webmin at all, a clean uninstall is the fastest way out of the danger zone.

Why an Admin Panel Is a Different Caliber Than a Single Application

Webmin isn't a website that can be compromised – it's the remote control for the entire server. Through the web interface you can create user accounts, set up cron jobs, change firewall rules, install packages, and edit files with root privileges. That's exactly why an admin panel is more interesting to attackers than almost any other application on the system: a single successful access is equivalent to full control, not just over a website, but over the machine itself.

CERT-Bund's warning and information service currently lists Webmin as security-relevant under the identifier WID-SEC-2026-3504. For details on the individual vulnerabilities, the original advisory is the right source – here, the focus is on what you should specifically check on your own root server.

Why This Works Differently on a Root Server Than With Shared Hosting

With shared hosting, the provider takes care of the admin panel and updates run centrally. On a root server, you're the administrator yourself – and therefore also responsible for keeping installed software like Webmin up to date and not left open on the internet. This applies not only to classic Webmin installations but also to Virtualmin, which is built on the same foundation. If you're securing your access anyway, our post on properly securing SSH access covers the right basics for keys, port choice, and fail2ban – the same principles apply to any other open panel on the server.

This year alone, we've already had several occasions to address exactly this: with Proxmox VE 7, authentication could be bypassed, and in the Virtualizor incident, an update channel was tampered with. Both cases show the same pattern: the target wasn't the application behind it, but the admin panel in front of it. The same basic rule applied in the BIND advisory we covered here: first check what's actually reachable, then patch.

Many Webmin installations run with the default settings from a one-line install script – and those open port 10000 to every IP address on the internet, not just your own. That's the most common reason a panel becomes vulnerable, regardless of the installed version.

Access Methods Compared

Access MethodReachable byRisk
Port 10000 open to the internetany IP addresshigh – any automated scan will find the panel
Firewall allowlistonly listed IPssignificantly reduced, but depends on a static IP
SSH tunnel / VPNonly with valid SSH or VPN accesslow – no open port facing outward
Uninstalledno onenone – no attack surface remains

The Five-Minute Check for Your Root Server

  1. Check the version. Webmin writes its version number to a dedicated file.
    cat /etc/webmin/version
  2. Check reachability. First check locally whether the service is even running, then test from outside.
    ss -tlnp | grep 10000
    nmap -p 10000 YOUR-SERVER-IP
  3. Restrict access. Allow only your own IP address, block the rest.
    ufw allow from YOUR-IP to any port 10000 proto tcp
    ufw deny 10000/tcp
  4. Install the update. Depending on how it was installed, via the package manager or the built-in update function in the panel itself (Webmin Configuration → Software Package Updates).
    apt update && apt upgrade webmin
  5. Enable two-factor authentication, if your Webmin includes the module – found under Webmin Configuration → Two-Factor Authentication.
Instead of leaving port 10000 open permanently, an SSH tunnel is enough for occasional access: ssh -L 10000:localhost:10000 root@YOUR-SERVER-IP and then open https://localhost:10000 in your browser. The port remains completely closed to the outside the whole time.
An admin panel that's reachable from the open internet isn't a feature – it's attack surface, until you've verified otherwise.

How to Check Whether It Worked

After completing the five steps, it's best to test from a second device with a different IP address – for example, a smartphone on mobile data – to see whether nmap -p 10000 YOUR-SERVER-IP now reports the port as filtered or closed instead of open. It's also worth checking /var/webmin/miniserv.log for access attempts from unknown IP addresses over the past few days – that shows whether the port was actually open before.

What This Means for You as a Root Server Customer

If you rent a root server from us, it comes without any pre-installed admin panels – you install Webmin, Virtualmin, or similar yourself, and responsibility for updates and access restriction lies with you accordingly. If you want to keep an eye on your own server without manually scanning every port, you can automate that with monitoring from Prepaid-Host and get notified as soon as a monitored service unexpectedly becomes reachable or unreachable.

In the end, the decision is simple: if you actively need Webmin, lock down access and keep the version current. If you no longer use it, uninstall it – an attack surface that no longer exists doesn't need to be monitored either.

Frequently asked questions

Does Webmin run automatically on my root server at Prepaid-Host?
No. Root servers are delivered without pre-installed admin panels. You install Webmin, Virtualmin, or comparable tools yourself if needed, and you're then also responsible for updates and access restriction.
How do I find out whether Webmin is installed on my server?
Check with `dpkg -l | grep webmin` (Debian/Ubuntu) or `rpm -qa | grep webmin` (RHEL derivatives) whether the package is present, and with `ss -tlnp | grep 10000` whether a service is listening on the default port.
Do I need to uninstall Webmin immediately?
Not necessarily. If access is restricted to your own IP address and the version is kept up to date, you can keep using it. If the port is open to the entire internet, however, you should change that immediately.
I use Virtualmin – does the advisory affect me too?
Yes. Virtualmin is built on top of Webmin and shares the same underlying foundation, including the default port. The same five-step check applies there accordingly.
What should I do if I'm no longer actively using Webmin?
The cleanest approach is to uninstall it completely rather than just disabling it, so that no outdated version remains on the server that could be started again later.
Prepaid-Host.com is itself a provider of servers, web hosting and domains, and reports here on its own market. How we handle that is set out in our disclosure statement.