0xma Cyber Security Articles




March 18, 2022

Bypass AppArmor with Perl Script

In this tutorial, we will see how to bypass AppArmor using a Perl script. AppArmor is a Linux kernel security module that allows the system administrator to restrict programs' capabilities with per-program profiles. This and this page contains more information about this vulnerability and its exploit.

We can see that Perl has the SetUID capability set. And we will be using this capability to bypass AppArmor.

View the capabilities of perl.

Using this command from GTFOBins, we can see that we have root level privileges.

Execute the id and whoami commands.

However, when we try to run /bin/sh, we are not able to get a shell as the root user.

Try to gain a root shell.

Let's create a simple Perl script and execute it to see if we can get a shell as the root user.

Perl script to gain root shell.

Unfortunately, running the script with the perl command results in a "Permission denied" message.

Script denied permission error.

This shows the configuration of AppArmor for /usr/bin/perl.

AppArmor configuration for Perl.

Let's change the permissions of our Perl script and make sure that it is executable. Having the script as executable allows us to run the script without specifying perl before the name of the script. This is because once we set the executable bit on the script, the script will be executed with whatever we have specified in the first line of the script.

Make the exploit executable.

Executing the script directly allows us to get a root shell.

Execute the script to gain root shell. Viewing the /etc/shadow file.

We can also read the root user's private SSH key. Using this key, we can login to the target box as the root user.

Viewing the .ssh/id_rsa file.

You can follow me on Twitter mujtabareads.