An adversary may perform shell escapes or exploit vulnerabilities in an application with the setsuid or setgid bits to get code running in a different user’s context. On Linux or macOS, when the setuid or setgid bits are set for an application, the application will run with the privileges of the owning user or group respectively. (Citation: setuid man page). Normally an application is run in the current user’s context, regardless of which user or group owns the application. However, there are instances where programs need to be executed in an elevated context to function properly, but the user running them doesn’t need the elevated privileges.Instead of creating an entry in the sudoers file, which must be done by root, any user can specify the setuid or setgid flag to be set for their own applications. These bits are indicated with an "s" instead of an "x" when viewing a file's attributes via
ls -l
. Thechmod
program can set these bits with via bitmasking,chmod 4777 [file]
or via shorthand naming,chmod u+s [file]
.Adversaries can use this mechanism on their own malware to make sure they're able to execute in elevated contexts in the future.(Citation: OSX Keydnap malware).
Make, change owner, and change file attributes on a C source code file
Supported Platforms: macOS, Linux
Name | Description | Type | Default Value |
---|---|---|---|
payload | hello.c payload | path | PathToAtomicsFolder/T1548.001/src/hello.c |
cp #{payload} /tmp/hello.c
sudo chown root /tmp/hello.c
sudo make /tmp/hello
sudo chown root /tmp/hello
sudo chmod u+s /tmp/hello
/tmp/hello
sudo rm /tmp/hello
sudo rm /tmp/hello.c
This test sets the SetUID flag on a file in Linux and macOS.
Supported Platforms: macOS, Linux
Name | Description | Type | Default Value |
---|---|---|---|
file_to_setuid | Path of file to set SetUID flag | path | /tmp/evilBinary |
sudo touch #{file_to_setuid}
sudo chown root #{file_to_setuid}
sudo chmod u+s #{file_to_setuid}
sudo rm #{file_to_setuid}
This test sets the SetGID flag on a file in Linux and macOS.
Supported Platforms: macOS, Linux
Name | Description | Type | Default Value |
---|---|---|---|
file_to_setuid | Path of file to set SetGID flag | path | /tmp/evilBinary |
sudo touch #{file_to_setuid}
sudo chown root #{file_to_setuid}
sudo chmod g+s #{file_to_setuid}
sudo rm #{file_to_setuid}