Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

You might have recently read about a new heap overflow vulnerability (CVE-2021-3156) on sudo discovered by a team of security researchers from Qualys. This article covers not just information about the vulnerability. It covers how to find the vulnerable host and how to fix the new sudo vulnerability found on a vulnerable host.

What Is Sudo?

I am afraid if someone doesn’t know about sudo. Sudo is the most powerful, open-source, ubiquitous utility used in all non-windows platforms like Unix, Linux, Solaris, and Mac. sudo allows users to run the programs with another user’s security privileges, by default ‘superuser’.

About The New Heap Overflow Sudo Vulnerability (CVE-2021-3156):

This vulnerability allows an unprivileged user to gain root privileges without authentication after successfully exploiting the vulnerable host. Qualys research team reported that they have succeeded in obtaining complete root privileges by exploiting the vulnerability on Ubuntu 20.04 (Sudo 1.8.31), Debian 10 (Sudo 1.8.27), and Fedora 33 (Sudo 1.9.2). On the latest note, they also confirmed that the vulnerability is prone to macOS, AIX, and Solaris as well. Quays confirmed that they have developed multiple variants of exploits and tested independently on each one of those operating systems. You can see the Proof of Concept and other technical details on the Qualys website if you need to know how to find the vulnerability on a host and patch it. Please follow us on this article and read below two sections to know how to find and fix the new sudo vulnerability.

Further to say, This vulnerability has been registered in mitre on 26th Jan 2020. It has been assigned CVE-2021-3156 in the Common Vulnerabilities and Exposures database. sudo confirmed that this vulnerability affected to sudo versions 1.7.7 to 1.7.10p9, 1.8.2 to 1.8.31p2, and 1.9.0 to 1.9.5p1. 

Technical Details Of The New Sudo Vulnerability (CVE-2021-3156):

Todd C. Miller, a sudo maintainer, said “When sudo runs a command in shell mode, either via the -s or -i command line option, it escapes special characters in the command’s arguments with a backslash. The sudoers policy plugin will then remove the escape characters from the arguments before evaluating the sudoers policy (which doesn’t expect the escape characters) if the command is being run in shell mode. A bug in the code that removes the escape characters will read beyond the last character of a string if it ends with an unescaped backslash character. Under normal circumstances, this bug would be harmless since sudo has escaped all the backslashes in the command’s arguments. However, due to a different bug, this time in the command-line parsing code, it is possible to run sudoedit with either the -s or -i options, setting a flag that indicates shell mode is enabled. Because a command is not actually being run, sudo does not escape special characters. Finally, the code that decides whether to remove the escape characters did not check whether a command is actually being run, just that the shell flag is set. This inconsistency is what makes the bug exploitable.”

How To Find The New Sudo Vulnerability (CVE-2021-3156) On The Host?

Check your host is running one of these affected sudo versions:

  • 1.7.7 through 1.7.10p9
  • 1.8.2 through 1.8.31p2
  • 1.9.0 through 1.9.5p1

Use this command to check the version of sudo your host is running: 

$ sudo — version

In our case our host is having 1.8.31, which is the vulnerable version.

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

Suppose you want to confirm your sudo version is vulnerable to this flaw. Try this command:

$ sudoedit -s /

If your host is running a vulnerable version of sudo. You will see this on your terminal.

sudoedit: /: not a regular file

If your host is running a patched version of sudo. You will see this on your terminal. 

usage: sudoedit [-AknS] [-C num] [-D directory] [-g group] [-h host] [-p prompt] [-R directory] [-T timeout] [-u user] file …

Let’s try this method on our host and find out whether our host is running a vulnerable version.

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

As soon as we enter the command, we have prompted to enter password.

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

If the sudoers plugin has been patched but the sudo front-end has not, the following error will be displayed:

sudoedit: invalid mode flags from sudo front end: 0x20002

Patching either the sudo front-end or the sudoers plugin is sufficient to prevent exploitation, but applying the complete patch is the safest approach.

How To Fix The New Sudo Vulnerability (CVE-2021-3156) On The Host?

Time needed: 10 minutes.

Commands required to fix the new sudo vulnerability (CVE-2021-3156)

  1. Check the version of sudo

    $ sudo — version

  2. Make sure your sudo version is vulnerable to the exploit

    $ sudoedit -s /

  3. Download the patched sudo 1.9.5p2 version

    $ wget https://www.sudo.ws/dist/sudo-1.9.5p2.tar.gz

  4. Eextract the downloaded file

    $ tar xvzf sudo-1.9.5p2.tar.gz

  5. Install the make utility

    $ cd sudo-19.5p2
    $ sudo apt install make

  6. Install the build-essential packages.

    $ sudo apt update
    $ sudo apt install build-essential

  7. Configure all the files inside the sudo directory

    $ sudo ./configure

  8. Compile and install the downloaded sudo 1.9.5p2 utility

    $ sudo make && sudo make install

Sudo.ws has fixed this vulnerability is the new released versions: sudo 1.9.5p2, released on 26 Jan 2021.

Download the patched sudo 1.9.5p2 version from the site using the wget utility.

$ wget https://www.sudo.ws/dist/sudo-1.9.5p2.tar.gz

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

Since it is a compresed file use tar utility to extract it.

$ tar xvzf sudo-1.9.5p2.tar.gzAfter extracting it.

A directory gets created ‘ sudo-1.9.5p2’.

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

‘make’ utility is mandatory to compel and install the sudo utility. Install the make utility if you didn’t have it on your host.

$ cd sudo-19.5p2

$ sudo apt install make

In our case, our host system has the latest version of make.

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

Then type this command on the terminal. This command lets to check and configure all the files inside the sudo directory.

$ sudo ./configure

Our host system thrown an error. from reading the error message we can tell that we have some issues in gcc compiler. We can’t go ahead by bypassing this process. Let’s fix this issue first.

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

Debian family Linux has a repositories which has a meta package called ‘build-essential’ which has a collection of GNU compiler, GNU debugger, and other development libraries and tools required to compile software. Use these commands to install the build-essential packages.

$ sudo apt update

$ sudo apt install build-essential

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)
Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)
Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

After installing the build-essential packages. Let’s jump back to the process and try running the make configurations command again.

$ sudo ./configure

This time it ran. We didn’t encountered the issue what we had last time.

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

We are almost at the end. The final important step is to compile and install the downloaded sudo 1.9.5p2 utility. Try this command to do that.

$ sudo make && sudo make install

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

That’s all. Exit from this terminal window. Fire up a new terminal and check the sudo version.

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

Let’s verify the host is vulnerable to the exploit. Repat the verification steps showed in the previous section. Check what would be the output of the sudoedit -s / command.

$ sudoedit -s /

patched version of sudo will simply display a usage statement, for example:

usage: sudoedit [-AknS] [-C num] [-D directory] [-g group] [-h host] [-p prompt] [-R directory] [-T timeout] [-u user] file …

Step By Step Procedure To Fix The New Sudo Vulnerability (CVE-2021-3156)

We successfully patched the host.

Note: Those who wants to automate this process. Make sure build-essential packages were installed on all your host systems.
Thanks for supporting our work. Please check in

Thanks for supporting our work. Please check in thesecmaster.com for more such tutorials.

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269904.html

(0)
上一篇 2022年6月23日
下一篇 2022年6月23日

相关推荐

发表回复

登录后才能评论