This is an alias of bundle.
This executable can spawn an interactive system shell.
This function can be performed by any unprivileged user.
BUNDLE_GEMFILE=x bundle exec /bin/sh
This function is performed by the privileged user if executed via sudo because the acquired privileges are not dropped.
BUNDLE_GEMFILE=x bundle exec /bin/sh
This function can be performed by any unprivileged user.
touch Gemfile
bundle exec /bin/sh
This function is performed by the privileged user if executed via sudo because the acquired privileges are not dropped.
touch Gemfile
bundle exec /bin/sh
This function can be performed by any unprivileged user.
echo 'system("/bin/sh")' >Gemfile
bundle install
This function is performed by the privileged user if executed via sudo because the acquired privileges are not dropped.
echo 'system("/bin/sh")' >Gemfile
bundle install
This executable can inherit functions from another.
This function can be performed by any unprivileged user.
bundle help
This function is performed by the privileged user if executed via sudo because the acquired privileges are not dropped.
bundle help
This function can be performed by any unprivileged user.
touch Gemfile
bundle console
This function is performed by the privileged user if executed via sudo because the acquired privileges are not dropped.
touch Gemfile
bundle console