x32x01
  • by x32x01 ||
Disk Group Privilege Escalation is a complex attack method targeting vulnerabilities or misconfigurations within the disk group management system of Linux environments. Attackers might focus on disk devices such as /dev/sda, which represents the primary hard drive in Linux systems and is commonly associated with the first SCSI (Small Computer System Interface) disk device, during Disk Group Privilege Escalation attacks. Attackers exploit vulnerabilities or misconfigurations linked to /dev/sda and similar devices to gain unauthorized access to sensitive data or exploit associated vulnerabilities. By manipulating permissions or exploiting misconfigurations concerning disk devices, attackers aim to escalate their privileges or access critical system resources.

Table of Contents
  • Lab Setup
  • Configuration
  • Exploitation
  • Conclusion
Lab Setup
In this article, we are going to exploit the disk group privilege escalation vulnerability on the ubuntu machine and obtain the root access. Following are the machines:
Target Machine: Ubuntu (192.168.1.6)
Attacker Machine: Kali Linux (192.168.1.7)

Configuration
Let’s start by creating a new user raj in the ubuntu machine.
Code:
You Can, Log in or Register To View Codes Content !
001.png
Add the newly created raj user to the disk group using the following command:
Code:
You Can, Log in or Register To View Codes Content !
002.png
Install the openssh-server using the following command:
Code:
You Can, Log in or Register To View Codes Content !
003.png
Generate the ssh private key and public key for the root user using the following command:
Code:
You Can, Log in or Register To View Codes Content !
004.png
By default, inside the sshd server system-wide configuration file options for PermitRootLogin and PubkeyAuthentication is commented out.
005.png
Here, we need to perform two changes in the configuration file, the first one is changing the value of PermitRootLogin to yes and removing the comment (#) and second is removing the comment (#) on the PubKeyAuthentication.
006.png
Now, after the configuration is complete restart the ssh service.
Code:
You Can, Log in or Register To View Codes Content !
007.png
Exploitation
Since the disk group misconfiguration vulnerability is a privilege escalation technique in linux, so we are taking an initial shell using the ssh service and as raj user to show the privilege escalation part using this vulnerability.
Code:
You Can, Log in or Register To View Codes Content !
We can use the id command to verify the groups that raj user belongs to. It can be seen that raj is a member of disk group.

To check the disk space summary for each mounted file in human-readable format we will use the following command:
Code:
You Can, Log in or Register To View Codes Content !
Here we are going to consider the partition where the / (root) directory is mounted i.e., /dev/sda3.
008.png
After the partition is selected, now to examine and modify the partition the debugfs utility can be used in linux. This utility can also be used to create a directory or read the contents of a directory.

After creating a test directory using debugfs utility, it shows that the filesystem has read/only permissions. So, we can try here reading the ssh private key of root user so that we can login later using the ssh private key.
Code:
You Can, Log in or Register To View Codes Content !
009.png
Since we are able to read the openssh private key of the root user, so we can copy the private key and paste in a file and give it limited permissions so that it should not be overly permissive private key.
Code:
You Can, Log in or Register To View Codes Content !
010.png
Observe that the privilege escalation is performed, and the attacker has the root access. Now we can read the /etc/shadow file and obtain the hashes of other users.

Conclusion
011.png
Disk Group Privilege Escalation is a major concern for the security of Linux systems. It allows attackers to gain unauthorized access to sensitive data and elevate their privileges. It’s essential to grasp how this attack works and to establish robust security measures to protect against it. Doing so is vital for minimizing risks and ensuring systems remain safe from exploitation.
 

Similar Threads

x32x01
Replies
0
Views
119
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
97
x32x01
x32x01
x32x01
Replies
0
Views
75
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
110
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
256
x32x01
x32x01
TAGs: Tags
privilege escalation

Register & Login Faster

Forgot your password?

Latest Resources

Forum Statistics

Threads
507
Messages
508
Members
42
Latest Member
Mustafa123
Back
Top