A few years ago I did a nice write-up on Cockpit + Duo Security 2FA. Since then, CentOS Stream 8 updates pulled in functionality from Cockpit upstream that introduces some challenges. One of these features displays “Other Options” on the login menu with a “Connect to” prompt. The issue with this is that it allows an exposed Cockpit instance to act as a proxy which bypasses the 2FA check. I was very worried about this and opened an issue with the project. Lo and behold, a solution already existed.
First we need to edit the configuration for Cockpit which is at /etc/cockpit/cockpit.conf
. My install didn’t have a configuration file, so I had to create a new file there and add the following content:
[WebService]
LoginTo = false
Now the last action is to restart cockpit to load in the new configuration.
# systemctl restart cockpit.socket
And that’s it!
People should really be aware of the very real risk here to your system with exposed web-based admin panels…it’s like exposing your IPMI interface to the internet…you should be aware of the risks before doing so. You could potentially be allowing an attacker to directly pivot into your network. Without the appropriate controls in place, there is more than just that host at risk.