SecPod

Learn Search

Search across all Learn content

← Back to Expressions & POVs
ALERT: Superusers could run into Super trouble

ALERT: Superusers could run into Super trouble

Linux users, beware! One of the most powerful and well known command line utility, sudo, could aid users to gain superuser privileges in spite of the existing restrictions. With sudo being installed in almost all flavors of UNIX-like operating systems, a major number of users could possibly be affec...

Oct 14, 2019By Nitish B2 min read
credits: www.securityaffairs.co
credits: www.securityaffairs.co

Linux users, beware! One of the most powerful and well known command line utility, sudo, could aid users to gain superuser privileges in spite of the existing restrictions. With sudo being installed in almost all flavors of UNIX-like operating systems, a major number of users could possibly be affected. Who said security was easy? So, a vulnerability management solution is critical in such cases.

Right, let’s get down to business. sudo vulnerability assigned with CVE-2019-14287 and termed as Security Policy Bypass, the vulnerability lies in the Runas specification of sudo’s /etc/sudoers file. Any unprivileged user or a malicious application could make use of this security loophole and run root commands despite the fact that Runas specification disables root access. Auto patching can patch this sudo vulnerability.

Origin of Sudo:

The origin and meaning of the word ‘sudo’ is a bit archaic and stands for ‘superuser do’. sudo lets you run commands with privileges of other users and by default, superuser. The User Id (UID) of a superuser is 0.

Majority of the Linux systems with default configurations have ‘ALL‘ in the Runas specification. These machines remain unaffected. However, if sudo is configured to allow execution of commands as an arbitrary user. The user can still run commands as root.

Here’s how it works. Consider this configuration where the user secpod has the privileges to run ‘cat’ command as any other user except root.

plaintext
secpod = (ALL, !root) /usr/bin/cat

This disables execution of commands with superuser privileges for secpod. However, this bypassed by using the User ID “-1“. Or its unsigned equivalent “4294967295“.

plaintext
sudo -u#-1 cat /etc/saner/status.ini

Also, ss shown, the user secpod is able to gain root privileges. Whoops!

In a bid to fix the flaw. However, the vendor has released patches on all Linux platforms and strongly recommends updating to 1.8.28.

Also, please refer to this KB Article to apply the patches using SanerNow.

Featured Posts

Open Role of Posture Anomaly Management in Cloud Security
Role of Posture Anomaly Management in Cloud Security

Point of View

Role of Posture Anomaly Management in Cloud Security

Cloud posture is not static. Permissions expand, controls shift, and assets become exposed. Posture anomaly management helps teams detect abnormal changes, review risky drift, and reduce exposure faster.

Jun 18, 2026

Open The Missing Pieces in Cloud Security That Keep Risk Open
The Missing Pieces in Cloud Security That Keep Risk Open

Point of View

The Missing Pieces in Cloud Security That Keep Risk Open

Cloud security teams can see more risk than ever, but visibility alone does not close exposure. Risk drops when teams can prioritize what matters, detect risky posture changes, and remediate faster.

Jun 18, 2026

Open Exposure Management Needs a Remediation Mandate
Exposure Management Needs a Remediation Mandate

Point of View

Exposure Management Needs a Remediation Mandate

Exposure management must prove risk reduction, not just surface findings. CISOs need remediation accountability that prioritizes, validates, and reports what changed.

Jun 18, 2026

Open Every Cloud and Endpoint Has Expected Posture. Saner CSPA and PA Know When It Breaks.

Every Cloud and Endpoint Has Expected Posture. Saner CSPA and PA Know When It Breaks.

Point of View

Every Cloud and Endpoint Has Expected Posture. Saner CSPA and PA Know When It Breaks.

Jun 18, 2026

ALERT: Superusers could run into Super trouble | SecPod