librex 0.0.54 → 0.0.63

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +1,17 @@
1
- # REX
1
+ # Rex
2
2
 
3
- A non-official re-packaging of the Rex library as a gem for easy of usage of the Metasploit REX framework in a non Metasploit application. I received permission from HDM to create this package.
3
+ An re-packaging of the Rex library included in the Metasploit Framework for use by non-Metasploit applications. Originally created by Jacob Hammack and
4
+ made official by the Rapid7 development team. The upstream of this package is the rex subdirectory of https://github.com/rapid7/metasploit-framework
4
5
 
5
6
  Currently based on:
6
- SVN Revision: 13882
7
+ SVN Revision: 14187
8
+
9
+ # Notes
10
+
11
+ This gem takes a ridiculously long time to generate documentation. We recommend using the following command to install this gem:
12
+
13
+ $ gem install --no-ri --no-rdoc librex
7
14
 
8
15
  # Credits
9
- The Metasploit development team <http://www.metasploit.com>
16
+ The Rapid7 Metasploit team <http://www.metasploit.com>
17
+ Jacob Hammack <https://github.com/hammackj>
data/Rakefile CHANGED
@@ -1,14 +1,16 @@
1
1
  # encoding: utf-8
2
+
3
+ require 'fileutils'
2
4
 
3
5
  task :build => :update do
4
6
  Rake::Task['clean'].execute
5
7
  puts "[*] Building librex.gemspec"
6
- system "gem build librex.gemspec &> /dev/null"
8
+ system "gem build librex.gemspec &> /dev/null"
7
9
  end
8
10
 
9
11
  task :release => :build do
10
12
  puts "[*] Pushing librex to rubygems.org"
11
- system "gem push librex-*.gem &> /dev/null"
13
+ system "gem push librex-*.gem &> /dev/null"
12
14
  Rake::Task['clean'].execute
13
15
  end
14
16
 
@@ -17,28 +19,29 @@ task :clean do
17
19
  end
18
20
 
19
21
  task :update do
20
- puts "[*] Removing old rex code"
21
- system "git rm lib/rex.rb &> /dev/null"
22
- system "git rm lib/rex.rb.ts.rb &> /dev/null"
23
- system "git rm -rf lib/ &> /dev/null"
24
- system "rm -rf lib/ &> /dev/null" #So there is a cvs file in the msf stuff that breaks things
25
- system "mkdir lib &> /dev/null"
22
+ puts "[*] Removing old Rex code..."
23
+ system "git rm -rf lib/ >/dev/null 2>&1"
24
+ ::FileUtils.rm_rf("lib")
25
+ ::FileUtils.mkdir("lib")
26
+
26
27
 
27
- puts "[*] Checking out Metasploit trunk"
28
- results = `svn co https://www.metasploit.com/svn/framework3/trunk/ /tmp/msftmp`
29
- rev = results.match(/^Checked out revision (.*)\.$/)
28
+ tdir = "tmp" + rand(0x100000000).to_s + rand(0x100000000).to_s
29
+
30
+ begin
30
31
 
32
+ puts "[*] Checking out Metasploit trunk..."
33
+ results = `svn export https://www.metasploit.com/svn/framework3/trunk/lib/ #{tdir}`
34
+ rev = results.match(/^Exported revision (.*)\.$/)
31
35
  puts "[*] Checkout Revision: #{rev[1]}"
36
+
37
+ puts "[*] Copying new files..."
38
+ ::FileUtils.cp( ::File.join(tdir, "rex.rb"), "lib")
39
+ ::FileUtils.cp_r( ::File.join(tdir, "rex"), ::File.join("lib", "rex") )
32
40
 
33
- puts "[*] Copying new files"
34
- system "mv /tmp/msftmp/lib/rex.rb lib/ &> /dev/null"
35
- system "mv /tmp/msftmp/lib/rex.rb.ts.rb lib/ &> /dev/null"
36
- system "mv /tmp/msftmp/lib/rex/ lib/ &> /dev/null"
37
- system "find . -iname '.svn' -exec rm -rf {} \\; &> /dev/null"
38
41
  system "git add lib/ &> /dev/null"
39
42
 
40
- puts "[*] Cleaning up tmp files"
41
- system "rm -rf /tmp/msftmp"
43
+ puts "[*] Cleaning up tmp files..."
44
+ ::FileUtils.rm_rf(tdir)
42
45
 
43
46
  version = ""
44
47
 
@@ -88,7 +91,13 @@ task :update do
88
91
  system "git commit -a -m \"Updated for Revision #{rev[1]}\" &> /dev/null"
89
92
  puts "[*] Commiting and Pushing Updates for Revision #{rev[1]}"
90
93
  system "git push &> /dev/null"
94
+
95
+ rescue ::Exception
96
+ $stderr.puts "[-] Error: #{$!.class} #{$!} #{$!.backtrace}"
97
+ ensure
98
+ ::FileUtils.rm_rf(tdir)
99
+ end
91
100
 
92
- #Twitter tweet for the update, I am that lazy yes.
101
+ # Twitter tweet for the update, I am that lazy yes
93
102
  puts "[*] Updated librex to v#{version} based on SVN Revision: #{rev[1]} of the #metasploit rex library. Available in rubygems."
94
103
  end
@@ -20,7 +20,7 @@ class HeapLib
20
20
  # The list of symbols found in the file. This is used to dynamically
21
21
  # replace contents.
22
22
  #
23
- SymbolNames =
23
+ SymbolNames =
24
24
  {
25
25
  "Methods" =>
26
26
  [
@@ -101,4 +101,4 @@ protected
101
101
  end
102
102
 
103
103
  end
104
- end
104
+ end
File without changes
File without changes
File without changes
File without changes
@@ -79,6 +79,7 @@ module Rex
79
79
  def collect_reference
80
80
  return unless in_tag("references")
81
81
  return unless in_tag("vulnerability")
82
+ return unless @state[:vuln]
82
83
  @state[:ref][:value] = @text.to_s.strip
83
84
  @report_data[:refs] ||= []
84
85
  @report_data[:refs] << @state[:ref]
@@ -0,0 +1,86 @@
1
+ module Rex
2
+ module Post
3
+ module Meterpreter
4
+ module Extensions
5
+ module Stdapi
6
+ module Railgun
7
+ module Def
8
+
9
+ class Def_wlanapi
10
+
11
+ def self.create_dll(dll_path = 'wlanapi')
12
+ dll = DLL.new(dll_path, ApiConstants.manager)
13
+
14
+
15
+ dll.add_function( 'WlanOpenHandle', 'DWORD',[
16
+ ['DWORD', 'dwClientVersion', 'in'],
17
+ ['LPVOID', 'pReserved', 'in'],
18
+ ['PDWORD', 'pdwNegotiatedVersion', 'out'],
19
+ ['PDWORD', 'phClientHandle', 'out']])
20
+
21
+ dll.add_function( 'WlanEnumInterfaces', 'DWORD',[
22
+ ['DWORD', 'hClientHandle', 'in'],
23
+ ['LPVOID', 'pReserved', 'in'],
24
+ ['PDWORD', 'ppInterfaceList', 'out']])
25
+
26
+ dll.add_function( 'WlanGetProfileList', 'DWORD',[
27
+ ['DWORD', 'hClientHandle', 'in'],
28
+ ['PBLOB', 'pInterfaceGuid', 'in'],
29
+ ['LPVOID', 'pReserved', 'in'],
30
+ ['PDWORD', 'ppProfileList', 'out']])
31
+
32
+ dll.add_function( 'WlanGetProfile', 'DWORD',[
33
+ ['DWORD', 'hClientHandle', 'in'],
34
+ ['PBLOB', 'pInterfaceGuid', 'in'],
35
+ ['PBLOB', 'strProfileName', 'in'],
36
+ ['LPVOID', 'pReserved', 'in'],
37
+ ['PDWORD', 'pstrProfileXML', 'out'],
38
+ ['PDWORD', 'pdwFlags', 'inout'],
39
+ ['PDWORD', 'pdwGrantedAccess', 'out']])
40
+
41
+ dll.add_function( 'WlanFreeMemory', 'DWORD',[
42
+ ['LPVOID', 'pMemory', 'in']])
43
+
44
+ dll.add_function( 'WlanCloseHandle', 'DWORD',[
45
+ ['DWORD', 'hClientHandle', 'in'],
46
+ ['LPVOID', 'pReserved', 'in']])
47
+
48
+ dll.add_function( 'WlanQueryInterface', 'DWORD',[
49
+ ['DWORD', 'hClientHandle', 'in'],
50
+ ['PBLOB', 'pInterfaceGuid', 'in'],
51
+ ['DWORD', 'OpCode', 'in'],
52
+ ['LPVOID', 'pReserved', 'in'],
53
+ ['PDWORD', 'pdwDataSize', 'out'],
54
+ ['PDWORD', 'ppData', 'out'],
55
+ ['PDWORD', 'pWlanOpcodeValueType', 'out']])
56
+
57
+ dll.add_function( 'WlanScan', 'DWORD',[
58
+ ['DWORD', 'hClientHandle', 'in'],
59
+ ['PBLOB', 'pInterfaceGuid', 'in'],
60
+ ['PBLOB', 'pDot11Ssid', 'in'],
61
+ ['PBLOB', 'pIeData', 'in'],
62
+ ['LPVOID', 'pReserved', 'in']])
63
+
64
+ dll.add_function( 'WlanGetNetworkBssList', 'DWORD',[
65
+ ['DWORD', 'hClientHandle', 'in'],
66
+ ['PBLOB', 'pInterfaceGuid', 'in'],
67
+ ['PBLOB', 'pDot11Ssid', 'in'],
68
+ ['DWORD', 'dot11BssType', 'in'],
69
+ ['BOOL', 'bSecurityEnabled', 'in'],
70
+ ['LPVOID', 'pReserved', 'in'],
71
+ ['PDWORD', 'ppWlanBssList', 'out']])
72
+
73
+ dll.add_function( 'WlanDisconnect', 'DWORD',[
74
+ ['DWORD', 'hClientHandle', 'in'],
75
+ ['PBLOB', 'pInterfaceGuid', 'in'],
76
+ ['LPVOID', 'pReserved', 'in']])
77
+
78
+
79
+ return dll
80
+ end
81
+
82
+ end
83
+
84
+ end; end; end; end; end; end; end
85
+
86
+
@@ -11,6 +11,13 @@ class Def_ws2_32
11
11
  def self.create_dll(dll_path = 'ws2_32')
12
12
  dll = DLL.new(dll_path, ApiConstants.manager)
13
13
 
14
+ dll.add_function('getaddrinfo', 'DWORD',[
15
+ ["PCHAR","pNodeName","in"],
16
+ ["PCHAR","pServiceName","in"],
17
+ ["PDWORD","pHints","in"],
18
+ ["PDWORD","ppResult","out"]
19
+ ])
20
+
14
21
  dll.add_function('WSAAccept', 'DWORD',[
15
22
  ["DWORD","s","in"],
16
23
  ["PBLOB","addr","inout"],
@@ -74,7 +74,8 @@ class Railgun
74
74
  'advapi32',
75
75
  'shell32',
76
76
  'netapi32',
77
- 'crypt32'
77
+ 'crypt32',
78
+ 'wlanapi',
78
79
  ].freeze
79
80
 
80
81
  ##
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env rubyj
1
+ #!/usr/bin/env ruby
2
2
 
3
3
  $:.unshift(File.join(File.dirname(__FILE__), '..', '..', '..','..','..','..','..', 'lib'))
4
4
 
@@ -17,9 +17,17 @@ class Railgun::UnitTest < Test::Unit::TestCase
17
17
 
18
18
  # DLLs we know should be available at the time of this writing,
19
19
  # and DLLs that because of changes since then should be available
20
- STOCK_DLLS =
21
- ['kernel32', 'ntdll', 'user32', 'ws2_32', 'crypt32',
22
- 'iphlpapi', 'netapi32', 'advapi32', 'shell32'] | Railgun::BUILTIN_DLLS
20
+ STOCK_DLLS = [
21
+ 'kernel32',
22
+ 'ntdll',
23
+ 'user32',
24
+ 'ws2_32',
25
+ 'iphlpapi',
26
+ 'advapi32',
27
+ 'shell32',
28
+ 'netapi32',
29
+ 'crypt32',
30
+ ] | Railgun::BUILTIN_DLLS
23
31
 
24
32
  include MockMagic
25
33
 
File without changes
@@ -288,7 +288,7 @@ class Client
288
288
  #
289
289
  # Connects to the remote server if possible.
290
290
  #
291
- def connect
291
+ def connect(t = -1)
292
292
  # If we already have a connection and we aren't pipelining, close it.
293
293
  if (self.conn)
294
294
  if !pipelining?
@@ -298,6 +298,8 @@ class Client
298
298
  end
299
299
  end
300
300
 
301
+ timeout = (t.nil? or t == -1) ? 0 : t
302
+
301
303
  self.conn = Rex::Socket::Tcp.create(
302
304
  'PeerHost' => self.hostname,
303
305
  'PeerPort' => self.port.to_i,
@@ -306,7 +308,8 @@ class Client
306
308
  'Context' => self.context,
307
309
  'SSL' => self.ssl,
308
310
  'SSLVersion'=> self.ssl_version,
309
- 'Proxies' => self.proxies
311
+ 'Proxies' => self.proxies,
312
+ 'Timeout' => timeout
310
313
  )
311
314
  end
312
315
 
@@ -329,7 +332,7 @@ class Client
329
332
  #
330
333
  def send_recv(req, t = -1, persist=false)
331
334
  @pipeline = persist
332
- send_request(req)
335
+ send_request(req, t)
333
336
  res = read_response(t)
334
337
  res.request = req.to_s if res
335
338
  res
@@ -338,8 +341,8 @@ class Client
338
341
  #
339
342
  # Send an HTTP request to the server
340
343
  #
341
- def send_request(req)
342
- connect
344
+ def send_request(req, t = -1)
345
+ connect(t)
343
346
  conn.put(req.to_s)
344
347
  end
345
348
 
File without changes
@@ -38,6 +38,7 @@ module Text
38
38
  LowAscii = [*(0x00 .. 0x1f)].pack("C*")
39
39
  DefaultWrap = 60
40
40
  AllChars = [*(0x00 .. 0xff)].pack("C*")
41
+ Punctuation = ( [*(0x21 .. 0x2f)] + [*(0x3a .. 0x3F)] + [*(0x5b .. 0x60)] + [*(0x7b .. 0x7e)] ).flatten.pack("C*")
41
42
 
42
43
  DefaultPatternSets = [ Rex::Text::UpperAlpha, Rex::Text::LowerAlpha, Rex::Text::Numerals ]
43
44
 
@@ -1130,7 +1131,7 @@ module Text
1130
1131
  # Punycode would have been more "standard", but it requires valid Unicode chars
1131
1132
  #
1132
1133
  def self.unicode_filter_encode(str)
1133
- if (str.unpack("C*") & ( LowAscii + HighAscii + "\x7f" ).unpack("C*")).length > 0
1134
+ if (str.to_s.unpack("C*") & ( LowAscii + HighAscii + "\x7f" ).unpack("C*")).length > 0
1134
1135
  str = "$U$" + str.unpack("C*").select{|c| c < 0x7f and c > 0x1f and c != 0x2d}.pack("C*") + "-0x" + str.unpack("H*")[0]
1135
1136
  else
1136
1137
  str
@@ -1138,7 +1139,7 @@ module Text
1138
1139
  end
1139
1140
 
1140
1141
  def self.unicode_filter_decode(str)
1141
- str.gsub( /\$U\$([\x20-\x2c\x2e-\x7E]*)\-0x([A-Fa-f0-9]+)/ ){|m| [$2].pack("H*") }
1142
+ str.to_s.gsub( /\$U\$([\x20-\x2c\x2e-\x7E]*)\-0x([A-Fa-f0-9]+)/ ){|m| [$2].pack("H*") }
1142
1143
  end
1143
1144
 
1144
1145
  protected
@@ -1,4 +1,5 @@
1
1
  require 'rex/ui'
2
+ require 'windows_console_color_support'
2
3
 
3
4
  module Rex
4
5
  module Ui
@@ -18,6 +19,9 @@ class Output::Stdio < Rex::Ui::Text::Output
18
19
  when false
19
20
  return false
20
21
  else # auto
22
+ if (Rex::Compat.is_windows)
23
+ return true
24
+ end
21
25
  term = Rex::Compat.getenv('TERM')
22
26
  return (term and term.match(/(?:vt10[03]|xterm(?:-color)?|linux|screen|rxvt)/i) != nil)
23
27
  end
@@ -27,7 +31,11 @@ class Output::Stdio < Rex::Ui::Text::Output
27
31
  # Prints the supplied message to standard output.
28
32
  #
29
33
  def print_raw(msg = '')
30
- $stdout.print(msg)
34
+ if (Rex::Compat.is_windows and supports_color?)
35
+ WindowsConsoleColorSupport.new($stdout).write(msg)
36
+ else
37
+ $stdout.print(msg)
38
+ end
31
39
  $stdout.flush
32
40
 
33
41
  msg
@@ -1,4 +1,5 @@
1
1
  require 'rex/ui'
2
+ require 'rex/socket'
2
3
 
3
4
  module Rex
4
5
  module Ui
@@ -98,7 +99,8 @@ class Table
98
99
  str << header_to_s || ''
99
100
  str << columns_to_s || ''
100
101
  str << hr_to_s || ''
101
-
102
+
103
+ sort_rows(0)
102
104
  rows.each { |row|
103
105
  if (is_hr(row))
104
106
  str << hr_to_s
@@ -121,6 +123,8 @@ class Table
121
123
  rows.each { |row|
122
124
  next if is_hr(row)
123
125
  str << ( row.map{|x|
126
+ x = x.to_s
127
+
124
128
  x.gsub(/[\r\n]/, ' ').gsub(/\s+/, ' ').gsub('"', '""')
125
129
  }.map{|x| "\"#{x}\"" }.join(",") + "\n" )
126
130
  }
@@ -173,12 +177,24 @@ class Table
173
177
 
174
178
  #
175
179
  # Sorts the rows based on the supplied index of sub-arrays
180
+ # If the supplied index is an IPv4 address, handle it differently, but
181
+ # avoid actually resolving domain names.
176
182
  #
177
- def sort_rows(index)
178
- rows.sort!{|a,b| a[index].nil? ? -1 : b[index].nil? ? 1 : a[index] <=> b[index]}
183
+ def sort_rows(index=0)
184
+ return unless rows
185
+ rows.sort! do |a,b|
186
+ if a[index].nil?
187
+ -1
188
+ elsif b[index].nil?
189
+ 1
190
+ elsif Rex::Socket.dotted_ip?(a[index]) and Rex::Socket.dotted_ip?(b[index])
191
+ Rex::Socket::addr_atoi(a[index]) <=> Rex::Socket::addr_atoi(b[index])
192
+ else
193
+ a[index] <=> b[index] # assumes otherwise comparable.
194
+ end
195
+ end
179
196
  end
180
197
 
181
-
182
198
  #
183
199
  # Adds a horizontal line.
184
200
  #
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,521 +1,542 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: librex
3
- version: !ruby/object:Gem::Version
4
- version: 0.0.54
3
+ version: !ruby/object:Gem::Version
4
+ hash: 97
5
5
  prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 63
10
+ version: 0.0.63
6
11
  platform: ruby
7
- authors:
8
- - Metasploit Development Team
12
+ authors:
13
+ - HD Moore
9
14
  - Jacob Hammack
10
15
  autorequire:
11
16
  bindir: bin
12
17
  cert_chain: []
13
- date: 2011-10-11 00:00:00.000000000Z
18
+
19
+ date: 2011-11-08 00:00:00 -06:00
20
+ default_executable:
14
21
  dependencies: []
15
- description: Rex provides a variety of classes useful for security testing and exploit
16
- development. Based on SVN Revision 13882
17
- email:
18
- - hdm@metasploit.com
22
+
23
+ description: Rex provides a variety of classes useful for security testing and exploit development. Based on SVN Revision 14187
24
+ email:
25
+ - hd_moore@rapid7.com
19
26
  - jacob.hammack@hammackj.com
20
27
  executables: []
28
+
21
29
  extensions: []
22
- extra_rdoc_files:
30
+
31
+ extra_rdoc_files:
23
32
  - README.markdown
24
- files:
25
- - Rakefile
33
+ files:
26
34
  - README.markdown
27
- - lib/rex/arch/sparc.rb
28
- - lib/rex/arch/sparc.rb.ut.rb
29
- - lib/rex/arch/x86.rb
30
- - lib/rex/arch/x86.rb.ut.rb
31
- - lib/rex/arch.rb
32
- - lib/rex/assembly/nasm.rb
33
- - lib/rex/assembly/nasm.rb.ut.rb
34
- - lib/rex/codepage.map
35
- - lib/rex/compat.rb
36
- - lib/rex/constants.rb
37
- - lib/rex/elfparsey/elf.rb
38
- - lib/rex/elfparsey/elfbase.rb
39
- - lib/rex/elfparsey/exceptions.rb
35
+ - Rakefile
36
+ - lib/rex.rb
37
+ - lib/rex/io/stream_abstraction.rb
38
+ - lib/rex/io/bidirectional_pipe.rb
39
+ - lib/rex/io/ring_buffer.rb.ut.rb
40
+ - lib/rex/io/stream_server.rb
41
+ - lib/rex/io/datagram_abstraction.rb
42
+ - lib/rex/io/ring_buffer.rb
43
+ - lib/rex/io/stream.rb
44
+ - lib/rex/zip/blocks.rb
45
+ - lib/rex/zip/archive.rb
46
+ - lib/rex/zip/jar.rb
47
+ - lib/rex/zip/entry.rb
48
+ - lib/rex/zip/samples/recursive.rb
49
+ - lib/rex/zip/samples/comment.rb
50
+ - lib/rex/zip/samples/mkzip.rb
51
+ - lib/rex/zip/samples/mkwar.rb
52
+ - lib/rex/ui.rb
53
+ - lib/rex/ole.rb
54
+ - lib/rex/peparsey/pebase.rb
55
+ - lib/rex/peparsey/exceptions.rb
56
+ - lib/rex/peparsey/pe_memdump.rb
57
+ - lib/rex/peparsey/pe.rb
58
+ - lib/rex/peparsey/section.rb
59
+ - lib/rex/script.rb
60
+ - lib/rex/poly/register.rb
61
+ - lib/rex/poly/register/x86.rb
62
+ - lib/rex/poly/block.rb
63
+ - lib/rex/service.rb
40
64
  - lib/rex/elfparsey.rb
65
+ - lib/rex/services/local_relay.rb
66
+ - lib/rex/time.rb
67
+ - lib/rex/machparsey/machbase.rb
68
+ - lib/rex/machparsey/exceptions.rb
69
+ - lib/rex/machparsey/mach.rb
70
+ - lib/rex/socket.rb
41
71
  - lib/rex/elfscan/scanner.rb
42
72
  - lib/rex/elfscan/search.rb
43
- - lib/rex/elfscan.rb
44
- - lib/rex/encoder/alpha2/alpha_mixed.rb
45
- - lib/rex/encoder/alpha2/alpha_upper.rb
46
- - lib/rex/encoder/alpha2/generic.rb
47
- - lib/rex/encoder/alpha2/unicode_mixed.rb
48
- - lib/rex/encoder/alpha2/unicode_upper.rb
49
- - lib/rex/encoder/alpha2.rb
50
- - lib/rex/encoder/ndr.rb
51
- - lib/rex/encoder/ndr.rb.ut.rb
52
- - lib/rex/encoder/nonalpha.rb
53
- - lib/rex/encoder/nonupper.rb
54
- - lib/rex/encoder/xdr.rb
55
- - lib/rex/encoder/xdr.rb.ut.rb
56
- - lib/rex/encoder/xor/dword.rb
57
- - lib/rex/encoder/xor/dword_additive.rb
58
- - lib/rex/encoder/xor.rb
59
- - lib/rex/encoders/xor_dword.rb
60
- - lib/rex/encoders/xor_dword_additive.rb
61
- - lib/rex/encoders/xor_dword_additive.rb.ut.rb
62
- - lib/rex/encoding/xor/byte.rb
63
- - lib/rex/encoding/xor/byte.rb.ut.rb
64
- - lib/rex/encoding/xor/dword.rb
65
- - lib/rex/encoding/xor/dword.rb.ut.rb
66
- - lib/rex/encoding/xor/dword_additive.rb
67
- - lib/rex/encoding/xor/dword_additive.rb.ut.rb
68
- - lib/rex/encoding/xor/exceptions.rb
69
- - lib/rex/encoding/xor/generic.rb
70
- - lib/rex/encoding/xor/generic.rb.ut.rb
71
- - lib/rex/encoding/xor/qword.rb
72
- - lib/rex/encoding/xor/word.rb
73
- - lib/rex/encoding/xor/word.rb.ut.rb
74
- - lib/rex/encoding/xor.rb
75
- - lib/rex/encoding/xor.rb.ts.rb
76
73
  - lib/rex/exceptions.rb
77
- - lib/rex/exceptions.rb.ut.rb
78
- - lib/rex/exploitation/cmdstager/base.rb
79
- - lib/rex/exploitation/cmdstager/debug_asm.rb
80
- - lib/rex/exploitation/cmdstager/debug_write.rb
74
+ - lib/rex/exploitation/egghunter.rb
75
+ - lib/rex/exploitation/heaplib.rb
76
+ - lib/rex/exploitation/obfuscatejs.rb
77
+ - lib/rex/exploitation/egghunter.rb.ut.rb
78
+ - lib/rex/exploitation/seh.rb.ut.rb
81
79
  - lib/rex/exploitation/cmdstager/tftp.rb
80
+ - lib/rex/exploitation/cmdstager/debug_write.rb
81
+ - lib/rex/exploitation/cmdstager/debug_asm.rb
82
+ - lib/rex/exploitation/cmdstager/base.rb
82
83
  - lib/rex/exploitation/cmdstager/vbs.rb
83
84
  - lib/rex/exploitation/cmdstager.rb
84
- - lib/rex/exploitation/egghunter.rb
85
- - lib/rex/exploitation/egghunter.rb.ut.rb
85
+ - lib/rex/exploitation/opcodedb.rb.ut.rb
86
+ - lib/rex/exploitation/seh.rb
87
+ - lib/rex/exploitation/omelet.rb.ut.rb
86
88
  - lib/rex/exploitation/encryptjs.rb
87
- - lib/rex/exploitation/heaplib.js.b64
88
- - lib/rex/exploitation/heaplib.rb
89
+ - lib/rex/exploitation/opcodedb.rb
89
90
  - lib/rex/exploitation/javascriptosdetect.rb
90
- - lib/rex/exploitation/jsobfu.rb
91
- - lib/rex/exploitation/obfuscatejs.rb
92
91
  - lib/rex/exploitation/omelet.rb
93
- - lib/rex/exploitation/omelet.rb.ut.rb
94
- - lib/rex/exploitation/opcodedb.rb
95
- - lib/rex/exploitation/opcodedb.rb.ut.rb
96
- - lib/rex/exploitation/seh.rb
97
- - lib/rex/exploitation/seh.rb.ut.rb
98
- - lib/rex/file.rb
99
- - lib/rex/file.rb.ut.rb
100
- - lib/rex/image_source/disk.rb
101
- - lib/rex/image_source/image_source.rb
102
- - lib/rex/image_source/memory.rb
103
- - lib/rex/image_source.rb
104
- - lib/rex/io/bidirectional_pipe.rb
105
- - lib/rex/io/datagram_abstraction.rb
106
- - lib/rex/io/ring_buffer.rb
107
- - lib/rex/io/ring_buffer.rb.ut.rb
108
- - lib/rex/io/stream.rb
109
- - lib/rex/io/stream_abstraction.rb
110
- - lib/rex/io/stream_server.rb
111
- - lib/rex/job_container.rb
112
- - lib/rex/LICENSE
113
- - lib/rex/logging/log_dispatcher.rb
114
- - lib/rex/logging/log_sink.rb
115
- - lib/rex/logging/sinks/flatfile.rb
116
- - lib/rex/logging/sinks/stderr.rb
117
- - lib/rex/logging.rb
118
- - lib/rex/machparsey/exceptions.rb
119
- - lib/rex/machparsey/mach.rb
120
- - lib/rex/machparsey/machbase.rb
121
- - lib/rex/machparsey.rb
122
- - lib/rex/machscan/scanner.rb
92
+ - lib/rex/exploitation/heaplib.js.b64
93
+ - lib/rex/exploitation/jsobfu.rb
123
94
  - lib/rex/machscan.rb
124
- - lib/rex/mime/header.rb
125
- - lib/rex/mime/message.rb
126
- - lib/rex/mime/part.rb
127
- - lib/rex/mime.rb
95
+ - lib/rex/codepage.map
96
+ - lib/rex/compat.rb
97
+ - lib/rex/LICENSE
98
+ - lib/rex/post.rb
99
+ - lib/rex/service_manager.rb.ut.rb
100
+ - lib/rex/arch.rb
101
+ - lib/rex/proto.rb.ts.rb
128
102
  - lib/rex/nop/opty2.rb
129
103
  - lib/rex/nop/opty2.rb.ut.rb
130
104
  - lib/rex/nop/opty2_tables.rb
131
- - lib/rex/ole/clsid.rb
132
- - lib/rex/ole/difat.rb
133
- - lib/rex/ole/directory.rb
134
- - lib/rex/ole/direntry.rb
135
- - lib/rex/ole/docs/dependencies.txt
136
- - lib/rex/ole/docs/references.txt
137
- - lib/rex/ole/fat.rb
138
- - lib/rex/ole/header.rb
139
- - lib/rex/ole/minifat.rb
140
- - lib/rex/ole/propset.rb
141
- - lib/rex/ole/samples/create_ole.rb
142
- - lib/rex/ole/samples/dir.rb
143
- - lib/rex/ole/samples/dump_stream.rb
144
- - lib/rex/ole/samples/ole_info.rb
145
- - lib/rex/ole/storage.rb
146
- - lib/rex/ole/stream.rb
147
- - lib/rex/ole/substorage.rb
148
- - lib/rex/ole/util.rb
149
- - lib/rex/ole.rb
150
- - lib/rex/parser/acunetix_nokogiri.rb
151
- - lib/rex/parser/apple_backup_manifestdb.rb
152
- - lib/rex/parser/appscan_nokogiri.rb
153
- - lib/rex/parser/arguments.rb
154
- - lib/rex/parser/arguments.rb.ut.rb
155
- - lib/rex/parser/burp_session_nokogiri.rb
156
- - lib/rex/parser/ci_nokogiri.rb
157
- - lib/rex/parser/foundstone_nokogiri.rb
158
- - lib/rex/parser/ini.rb
159
- - lib/rex/parser/ini.rb.ut.rb
160
- - lib/rex/parser/ip360_aspl_xml.rb
161
- - lib/rex/parser/ip360_xml.rb
162
- - lib/rex/parser/mbsa_nokogiri.rb
163
- - lib/rex/parser/nessus_xml.rb
164
- - lib/rex/parser/netsparker_xml.rb
165
- - lib/rex/parser/nexpose_raw_nokogiri.rb
166
- - lib/rex/parser/nexpose_simple_nokogiri.rb
167
- - lib/rex/parser/nexpose_xml.rb
168
- - lib/rex/parser/nmap_nokogiri.rb
169
- - lib/rex/parser/nmap_xml.rb
170
- - lib/rex/parser/nokogiri_doc_mixin.rb
171
- - lib/rex/parser/retina_xml.rb
105
+ - lib/rex/payloads/win32.rb
172
106
  - lib/rex/payloads/win32/common.rb
107
+ - lib/rex/payloads/win32/kernel.rb
173
108
  - lib/rex/payloads/win32/kernel/common.rb
174
- - lib/rex/payloads/win32/kernel/migration.rb
175
109
  - lib/rex/payloads/win32/kernel/recovery.rb
176
110
  - lib/rex/payloads/win32/kernel/stager.rb
177
- - lib/rex/payloads/win32/kernel.rb
178
- - lib/rex/payloads/win32.rb
179
- - lib/rex/payloads.rb
180
- - lib/rex/peparsey/exceptions.rb
181
- - lib/rex/peparsey/pe.rb
182
- - lib/rex/peparsey/pe_memdump.rb
183
- - lib/rex/peparsey/pebase.rb
184
- - lib/rex/peparsey/section.rb
185
- - lib/rex/peparsey.rb
186
- - lib/rex/pescan/analyze.rb
187
- - lib/rex/pescan/scanner.rb
188
- - lib/rex/pescan/search.rb
189
- - lib/rex/pescan.rb
190
- - lib/rex/platforms/windows.rb
191
- - lib/rex/platforms.rb
192
- - lib/rex/poly/block.rb
193
- - lib/rex/poly/register/x86.rb
194
- - lib/rex/poly/register.rb
195
- - lib/rex/poly.rb
196
- - lib/rex/post/dir.rb
197
- - lib/rex/post/file.rb
111
+ - lib/rex/payloads/win32/kernel/migration.rb
112
+ - lib/rex/machparsey.rb
113
+ - lib/rex/image_source.rb
114
+ - lib/rex/assembly/nasm.rb.ut.rb
115
+ - lib/rex/assembly/nasm.rb
116
+ - lib/rex/post/ui.rb
117
+ - lib/rex/post/thread.rb
118
+ - lib/rex/post/permission.rb
119
+ - lib/rex/post/process.rb
198
120
  - lib/rex/post/file_stat.rb
199
- - lib/rex/post/gen.pl
200
- - lib/rex/post/io.rb
201
- - lib/rex/post/meterpreter/channel.rb
202
- - lib/rex/post/meterpreter/channel_container.rb
203
121
  - lib/rex/post/meterpreter/channels/pool.rb
204
122
  - lib/rex/post/meterpreter/channels/pools/file.rb
205
123
  - lib/rex/post/meterpreter/channels/pools/stream_pool.rb
206
124
  - lib/rex/post/meterpreter/channels/stream.rb
207
- - lib/rex/post/meterpreter/client.rb
125
+ - lib/rex/post/meterpreter/packet.rb
126
+ - lib/rex/post/meterpreter/packet_dispatcher.rb
208
127
  - lib/rex/post/meterpreter/client_core.rb
209
- - lib/rex/post/meterpreter/dependencies.rb
128
+ - lib/rex/post/meterpreter/object_aliases.rb
129
+ - lib/rex/post/meterpreter/channel.rb
130
+ - lib/rex/post/meterpreter/channel_container.rb
131
+ - lib/rex/post/meterpreter/ui/console.rb
132
+ - lib/rex/post/meterpreter/ui/console/interactive_channel.rb
133
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi.rb
134
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/espia.rb
135
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/core.rb
136
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/sniffer.rb
137
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/priv/elevate.rb
138
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/priv/timestomp.rb
139
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/priv/passwd.rb
140
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/networkpug.rb
141
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/ui.rb
142
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/webcam.rb
143
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/sys.rb
144
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/fs.rb
145
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/net.rb
146
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/priv.rb
147
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher/incognito.rb
148
+ - lib/rex/post/meterpreter/ui/console/command_dispatcher.rb
149
+ - lib/rex/post/meterpreter/packet_parser.rb
150
+ - lib/rex/post/meterpreter/inbound_packet_handler.rb
210
151
  - lib/rex/post/meterpreter/extension.rb
152
+ - lib/rex/post/meterpreter/dependencies.rb
153
+ - lib/rex/post/meterpreter/packet_response_waiter.rb
154
+ - lib/rex/post/meterpreter/extensions/incognito/tlv.rb
155
+ - lib/rex/post/meterpreter/extensions/incognito/incognito.rb
211
156
  - lib/rex/post/meterpreter/extensions/espia/espia.rb
212
157
  - lib/rex/post/meterpreter/extensions/espia/tlv.rb
213
- - lib/rex/post/meterpreter/extensions/incognito/incognito.rb
214
- - lib/rex/post/meterpreter/extensions/incognito/tlv.rb
158
+ - lib/rex/post/meterpreter/extensions/sniffer/tlv.rb
159
+ - lib/rex/post/meterpreter/extensions/sniffer/sniffer.rb
215
160
  - lib/rex/post/meterpreter/extensions/lanattacks/lanattacks.rb
216
161
  - lib/rex/post/meterpreter/extensions/lanattacks/tlv.rb
217
- - lib/rex/post/meterpreter/extensions/networkpug/networkpug.rb
218
162
  - lib/rex/post/meterpreter/extensions/networkpug/tlv.rb
163
+ - lib/rex/post/meterpreter/extensions/networkpug/networkpug.rb
219
164
  - lib/rex/post/meterpreter/extensions/priv/fs.rb
165
+ - lib/rex/post/meterpreter/extensions/priv/tlv.rb
220
166
  - lib/rex/post/meterpreter/extensions/priv/passwd.rb
221
167
  - lib/rex/post/meterpreter/extensions/priv/priv.rb
222
- - lib/rex/post/meterpreter/extensions/priv/tlv.rb
223
- - lib/rex/post/meterpreter/extensions/sniffer/sniffer.rb
224
- - lib/rex/post/meterpreter/extensions/sniffer/tlv.rb
225
- - lib/rex/post/meterpreter/extensions/stdapi/constants.rb
226
- - lib/rex/post/meterpreter/extensions/stdapi/fs/dir.rb
227
- - lib/rex/post/meterpreter/extensions/stdapi/fs/file.rb
228
- - lib/rex/post/meterpreter/extensions/stdapi/fs/file_stat.rb
229
- - lib/rex/post/meterpreter/extensions/stdapi/fs/io.rb
230
- - lib/rex/post/meterpreter/extensions/stdapi/net/config.rb
231
- - lib/rex/post/meterpreter/extensions/stdapi/net/interface.rb
232
- - lib/rex/post/meterpreter/extensions/stdapi/net/route.rb
233
- - lib/rex/post/meterpreter/extensions/stdapi/net/socket.rb
234
- - lib/rex/post/meterpreter/extensions/stdapi/net/socket_subsystem/tcp_client_channel.rb
235
- - lib/rex/post/meterpreter/extensions/stdapi/net/socket_subsystem/tcp_server_channel.rb
236
- - lib/rex/post/meterpreter/extensions/stdapi/net/socket_subsystem/udp_channel.rb
237
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/api_constants.rb
168
+ - lib/rex/post/meterpreter/extensions/stdapi/ui.rb
169
+ - lib/rex/post/meterpreter/extensions/stdapi/stdapi.rb
170
+ - lib/rex/post/meterpreter/extensions/stdapi/webcam/webcam.rb
171
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/mock_magic.rb
172
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/railgun.rb
238
173
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/api_constants.rb.ut.rb
239
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/buffer_item.rb
240
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/buffer_item.rb.ut.rb
174
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_user32.rb
175
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_ntdll.rb
241
176
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_advapi32.rb
242
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_crypt32.rb
243
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_iphlpapi.rb
244
177
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_kernel32.rb
178
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_wlanapi.rb
179
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_ws2_32.rb
245
180
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_netapi32.rb
246
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_ntdll.rb
181
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_iphlpapi.rb
182
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_crypt32.rb
247
183
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_shell32.rb
248
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_user32.rb
249
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/def/def_ws2_32.rb
184
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/win_const_manager.rb.ut.rb
185
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/buffer_item.rb
250
186
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll.rb
251
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll.rb.ut.rb
252
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_function.rb
253
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_function.rb.ut.rb
254
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_helper.rb
255
187
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_helper.rb.ut.rb
188
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/buffer_item.rb.ut.rb
189
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/util.rb
190
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/api_constants.rb
256
191
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_wrapper.rb
257
192
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_wrapper.rb.ut.rb
258
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/mock_magic.rb
259
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/multicall.rb
260
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/railgun.rb
261
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/railgun.rb.ut.rb
262
193
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/tlv.rb
263
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/util.rb
194
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/multicall.rb
195
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll.rb.ut.rb
264
196
  - lib/rex/post/meterpreter/extensions/stdapi/railgun/win_const_manager.rb
265
- - lib/rex/post/meterpreter/extensions/stdapi/railgun/win_const_manager.rb.ut.rb
266
- - lib/rex/post/meterpreter/extensions/stdapi/railgun.rb.ts.rb
267
- - lib/rex/post/meterpreter/extensions/stdapi/stdapi.rb
268
- - lib/rex/post/meterpreter/extensions/stdapi/sys/config.rb
269
- - lib/rex/post/meterpreter/extensions/stdapi/sys/event_log.rb
270
- - lib/rex/post/meterpreter/extensions/stdapi/sys/event_log_subsystem/event_record.rb
271
- - lib/rex/post/meterpreter/extensions/stdapi/sys/power.rb
272
- - lib/rex/post/meterpreter/extensions/stdapi/sys/process.rb
197
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_helper.rb
198
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_function.rb.ut.rb
199
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/railgun.rb.ut.rb
200
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun/dll_function.rb
201
+ - lib/rex/post/meterpreter/extensions/stdapi/tlv.rb
202
+ - lib/rex/post/meterpreter/extensions/stdapi/fs/file_stat.rb
203
+ - lib/rex/post/meterpreter/extensions/stdapi/fs/io.rb
204
+ - lib/rex/post/meterpreter/extensions/stdapi/fs/file.rb
205
+ - lib/rex/post/meterpreter/extensions/stdapi/fs/dir.rb
206
+ - lib/rex/post/meterpreter/extensions/stdapi/sys/thread.rb
207
+ - lib/rex/post/meterpreter/extensions/stdapi/sys/registry.rb
208
+ - lib/rex/post/meterpreter/extensions/stdapi/sys/process_subsystem/thread.rb
273
209
  - lib/rex/post/meterpreter/extensions/stdapi/sys/process_subsystem/image.rb
274
210
  - lib/rex/post/meterpreter/extensions/stdapi/sys/process_subsystem/io.rb
275
211
  - lib/rex/post/meterpreter/extensions/stdapi/sys/process_subsystem/memory.rb
276
- - lib/rex/post/meterpreter/extensions/stdapi/sys/process_subsystem/thread.rb
277
- - lib/rex/post/meterpreter/extensions/stdapi/sys/registry.rb
212
+ - lib/rex/post/meterpreter/extensions/stdapi/sys/config.rb
213
+ - lib/rex/post/meterpreter/extensions/stdapi/sys/process.rb
214
+ - lib/rex/post/meterpreter/extensions/stdapi/sys/event_log_subsystem/event_record.rb
278
215
  - lib/rex/post/meterpreter/extensions/stdapi/sys/registry_subsystem/registry_key.rb
279
- - lib/rex/post/meterpreter/extensions/stdapi/sys/registry_subsystem/registry_value.rb
280
216
  - lib/rex/post/meterpreter/extensions/stdapi/sys/registry_subsystem/remote_registry_key.rb
281
- - lib/rex/post/meterpreter/extensions/stdapi/sys/thread.rb
282
- - lib/rex/post/meterpreter/extensions/stdapi/tlv.rb
283
- - lib/rex/post/meterpreter/extensions/stdapi/ui.rb
284
- - lib/rex/post/meterpreter/extensions/stdapi/webcam/webcam.rb
285
- - lib/rex/post/meterpreter/inbound_packet_handler.rb
286
- - lib/rex/post/meterpreter/object_aliases.rb
287
- - lib/rex/post/meterpreter/packet.rb
288
- - lib/rex/post/meterpreter/packet_dispatcher.rb
289
- - lib/rex/post/meterpreter/packet_parser.rb
290
- - lib/rex/post/meterpreter/packet_response_waiter.rb
291
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/core.rb
292
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/espia.rb
293
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/incognito.rb
294
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/networkpug.rb
295
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/priv/elevate.rb
296
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/priv/passwd.rb
297
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/priv/timestomp.rb
298
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/priv.rb
299
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/sniffer.rb
300
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/fs.rb
301
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/net.rb
302
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/sys.rb
303
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/ui.rb
304
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi/webcam.rb
305
- - lib/rex/post/meterpreter/ui/console/command_dispatcher/stdapi.rb
306
- - lib/rex/post/meterpreter/ui/console/command_dispatcher.rb
307
- - lib/rex/post/meterpreter/ui/console/interactive_channel.rb
308
- - lib/rex/post/meterpreter/ui/console.rb
217
+ - lib/rex/post/meterpreter/extensions/stdapi/sys/registry_subsystem/registry_value.rb
218
+ - lib/rex/post/meterpreter/extensions/stdapi/sys/event_log.rb
219
+ - lib/rex/post/meterpreter/extensions/stdapi/sys/power.rb
220
+ - lib/rex/post/meterpreter/extensions/stdapi/railgun.rb.ts.rb
221
+ - lib/rex/post/meterpreter/extensions/stdapi/constants.rb
222
+ - lib/rex/post/meterpreter/extensions/stdapi/net/socket_subsystem/udp_channel.rb
223
+ - lib/rex/post/meterpreter/extensions/stdapi/net/socket_subsystem/tcp_server_channel.rb
224
+ - lib/rex/post/meterpreter/extensions/stdapi/net/socket_subsystem/tcp_client_channel.rb
225
+ - lib/rex/post/meterpreter/extensions/stdapi/net/socket.rb
226
+ - lib/rex/post/meterpreter/extensions/stdapi/net/config.rb
227
+ - lib/rex/post/meterpreter/extensions/stdapi/net/interface.rb
228
+ - lib/rex/post/meterpreter/extensions/stdapi/net/route.rb
229
+ - lib/rex/post/meterpreter/client.rb
309
230
  - lib/rex/post/meterpreter.rb
310
- - lib/rex/post/permission.rb
311
- - lib/rex/post/process.rb
312
- - lib/rex/post/thread.rb
313
- - lib/rex/post/ui.rb
314
- - lib/rex/post.rb
315
- - lib/rex/proto/dcerpc/client.rb
231
+ - lib/rex/post/io.rb
232
+ - lib/rex/post/gen.pl
233
+ - lib/rex/post/file.rb
234
+ - lib/rex/post/dir.rb
235
+ - lib/rex/encoding/xor/generic.rb
236
+ - lib/rex/encoding/xor/generic.rb.ut.rb
237
+ - lib/rex/encoding/xor/exceptions.rb
238
+ - lib/rex/encoding/xor/byte.rb
239
+ - lib/rex/encoding/xor/byte.rb.ut.rb
240
+ - lib/rex/encoding/xor/dword_additive.rb.ut.rb
241
+ - lib/rex/encoding/xor/word.rb
242
+ - lib/rex/encoding/xor/dword_additive.rb
243
+ - lib/rex/encoding/xor/word.rb.ut.rb
244
+ - lib/rex/encoding/xor/dword.rb.ut.rb
245
+ - lib/rex/encoding/xor/qword.rb
246
+ - lib/rex/encoding/xor/dword.rb
247
+ - lib/rex/encoding/xor.rb.ts.rb
248
+ - lib/rex/encoding/xor.rb
249
+ - lib/rex/mime/message.rb
250
+ - lib/rex/mime/header.rb
251
+ - lib/rex/mime/part.rb
252
+ - lib/rex/sync/event.rb
253
+ - lib/rex/sync/thread_safe.rb
254
+ - lib/rex/sync/ref.rb
255
+ - lib/rex/sync/read_write_lock.rb
256
+ - lib/rex/script/shell.rb
257
+ - lib/rex/script/meterpreter.rb
258
+ - lib/rex/script/base.rb
259
+ - lib/rex/text.rb.ut.rb
260
+ - lib/rex/ui/subscriber.rb
261
+ - lib/rex/ui/progress_tracker.rb
262
+ - lib/rex/ui/interactive.rb
263
+ - lib/rex/ui/output.rb
264
+ - lib/rex/ui/text/irb_shell.rb
265
+ - lib/rex/ui/text/progress_tracker.rb
266
+ - lib/rex/ui/text/input/socket.rb
267
+ - lib/rex/ui/text/input/stdio.rb
268
+ - lib/rex/ui/text/input/readline.rb
269
+ - lib/rex/ui/text/input/buffer.rb
270
+ - lib/rex/ui/text/color.rb.ut.rb
271
+ - lib/rex/ui/text/table.rb
272
+ - lib/rex/ui/text/progress_tracker.rb.ut.rb
273
+ - lib/rex/ui/text/shell.rb
274
+ - lib/rex/ui/text/output.rb
275
+ - lib/rex/ui/text/color.rb
276
+ - lib/rex/ui/text/dispatcher_shell.rb
277
+ - lib/rex/ui/text/output/socket.rb
278
+ - lib/rex/ui/text/output/tee.rb
279
+ - lib/rex/ui/text/output/stdio.rb
280
+ - lib/rex/ui/text/output/file.rb
281
+ - lib/rex/ui/text/output/buffer.rb
282
+ - lib/rex/ui/text/table.rb.ut.rb
283
+ - lib/rex/ui/text/input.rb
284
+ - lib/rex/ui/output/none.rb
285
+ - lib/rex/exceptions.rb.ut.rb
286
+ - lib/rex/sync.rb
287
+ - lib/rex/pescan/scanner.rb
288
+ - lib/rex/pescan/analyze.rb
289
+ - lib/rex/pescan/search.rb
290
+ - lib/rex/struct2.rb
291
+ - lib/rex/peparsey.rb
292
+ - lib/rex/ropbuilder.rb
293
+ - lib/rex/ole/minifat.rb
294
+ - lib/rex/ole/clsid.rb
295
+ - lib/rex/ole/substorage.rb
296
+ - lib/rex/ole/util.rb
297
+ - lib/rex/ole/header.rb
298
+ - lib/rex/ole/fat.rb
299
+ - lib/rex/ole/samples/ole_info.rb
300
+ - lib/rex/ole/samples/dump_stream.rb
301
+ - lib/rex/ole/samples/create_ole.rb
302
+ - lib/rex/ole/samples/dir.rb
303
+ - lib/rex/ole/difat.rb
304
+ - lib/rex/ole/direntry.rb
305
+ - lib/rex/ole/directory.rb
306
+ - lib/rex/ole/propset.rb
307
+ - lib/rex/ole/stream.rb
308
+ - lib/rex/ole/storage.rb
309
+ - lib/rex/ole/docs/dependencies.txt
310
+ - lib/rex/ole/docs/references.txt
311
+ - lib/rex/image_source/disk.rb
312
+ - lib/rex/image_source/image_source.rb
313
+ - lib/rex/image_source/memory.rb
314
+ - lib/rex/transformer.rb
315
+ - lib/rex/arch/x86.rb.ut.rb
316
+ - lib/rex/arch/sparc.rb.ut.rb
317
+ - lib/rex/arch/x86.rb
318
+ - lib/rex/arch/sparc.rb
319
+ - lib/rex/encoder/xor/dword_additive.rb
320
+ - lib/rex/encoder/xor/dword.rb
321
+ - lib/rex/encoder/nonupper.rb
322
+ - lib/rex/encoder/ndr.rb
323
+ - lib/rex/encoder/xdr.rb.ut.rb
324
+ - lib/rex/encoder/alpha2.rb
325
+ - lib/rex/encoder/xdr.rb
326
+ - lib/rex/encoder/alpha2/generic.rb
327
+ - lib/rex/encoder/alpha2/alpha_upper.rb
328
+ - lib/rex/encoder/alpha2/alpha_mixed.rb
329
+ - lib/rex/encoder/alpha2/unicode_upper.rb
330
+ - lib/rex/encoder/alpha2/unicode_mixed.rb
331
+ - lib/rex/encoder/nonalpha.rb
332
+ - lib/rex/encoder/xor.rb
333
+ - lib/rex/encoder/ndr.rb.ut.rb
334
+ - lib/rex/transformer.rb.ut.rb
335
+ - lib/rex/encoders/xor_dword_additive.rb
336
+ - lib/rex/encoders/xor_dword.rb
337
+ - lib/rex/encoders/xor_dword_additive.rb.ut.rb
338
+ - lib/rex/payloads.rb
339
+ - lib/rex/proto.rb
340
+ - lib/rex/thread_factory.rb
341
+ - lib/rex/struct2/c_struct.rb
342
+ - lib/rex/struct2/generic.rb
343
+ - lib/rex/struct2/element.rb
344
+ - lib/rex/struct2/c_struct_template.rb
345
+ - lib/rex/struct2/restraint.rb
346
+ - lib/rex/struct2/s_struct.rb
347
+ - lib/rex/struct2/s_string.rb
348
+ - lib/rex/struct2/constant.rb
349
+ - lib/rex/test.rb
350
+ - lib/rex/file.rb
351
+ - lib/rex/file.rb.ut.rb
352
+ - lib/rex/parser/ip360_aspl_xml.rb
353
+ - lib/rex/parser/mbsa_nokogiri.rb
354
+ - lib/rex/parser/apple_backup_manifestdb.rb
355
+ - lib/rex/parser/acunetix_nokogiri.rb
356
+ - lib/rex/parser/ci_nokogiri.rb
357
+ - lib/rex/parser/ip360_xml.rb
358
+ - lib/rex/parser/nokogiri_doc_mixin.rb
359
+ - lib/rex/parser/arguments.rb
360
+ - lib/rex/parser/appscan_nokogiri.rb
361
+ - lib/rex/parser/arguments.rb.ut.rb
362
+ - lib/rex/parser/nexpose_xml.rb
363
+ - lib/rex/parser/nexpose_raw_nokogiri.rb
364
+ - lib/rex/parser/nessus_xml.rb
365
+ - lib/rex/parser/burp_session_nokogiri.rb
366
+ - lib/rex/parser/foundstone_nokogiri.rb
367
+ - lib/rex/parser/ini.rb
368
+ - lib/rex/parser/nmap_xml.rb
369
+ - lib/rex/parser/ini.rb.ut.rb
370
+ - lib/rex/parser/retina_xml.rb
371
+ - lib/rex/parser/nexpose_simple_nokogiri.rb
372
+ - lib/rex/parser/netsparker_xml.rb
373
+ - lib/rex/parser/nmap_nokogiri.rb
374
+ - lib/rex/logging/sinks/stderr.rb
375
+ - lib/rex/logging/sinks/flatfile.rb
376
+ - lib/rex/logging/log_dispatcher.rb
377
+ - lib/rex/logging/log_sink.rb
378
+ - lib/rex/elfparsey/exceptions.rb
379
+ - lib/rex/elfparsey/elfbase.rb
380
+ - lib/rex/elfparsey/elf.rb
381
+ - lib/rex/platforms.rb
382
+ - lib/rex/proto/proxy/socks4a.rb
383
+ - lib/rex/proto/tftp.rb
384
+ - lib/rex/proto/drda.rb.ts.rb
385
+ - lib/rex/proto/dcerpc/ndr.rb
386
+ - lib/rex/proto/dcerpc/response.rb.ut.rb
387
+ - lib/rex/proto/dcerpc/uuid.rb
388
+ - lib/rex/proto/dcerpc/packet.rb
316
389
  - lib/rex/proto/dcerpc/client.rb.ut.rb
317
390
  - lib/rex/proto/dcerpc/exceptions.rb
318
- - lib/rex/proto/dcerpc/handle.rb
319
391
  - lib/rex/proto/dcerpc/handle.rb.ut.rb
320
- - lib/rex/proto/dcerpc/ndr.rb
321
- - lib/rex/proto/dcerpc/ndr.rb.ut.rb
322
- - lib/rex/proto/dcerpc/packet.rb
323
- - lib/rex/proto/dcerpc/packet.rb.ut.rb
324
392
  - lib/rex/proto/dcerpc/response.rb
325
- - lib/rex/proto/dcerpc/response.rb.ut.rb
326
- - lib/rex/proto/dcerpc/uuid.rb
393
+ - lib/rex/proto/dcerpc/handle.rb
394
+ - lib/rex/proto/dcerpc/packet.rb.ut.rb
395
+ - lib/rex/proto/dcerpc/ndr.rb.ut.rb
327
396
  - lib/rex/proto/dcerpc/uuid.rb.ut.rb
397
+ - lib/rex/proto/dcerpc/client.rb
328
398
  - lib/rex/proto/dcerpc.rb
329
- - lib/rex/proto/dcerpc.rb.ts.rb
330
- - lib/rex/proto/dhcp/constants.rb
331
- - lib/rex/proto/dhcp/server.rb
332
- - lib/rex/proto/dhcp.rb
333
- - lib/rex/proto/drda/constants.rb
334
- - lib/rex/proto/drda/constants.rb.ut.rb
399
+ - lib/rex/proto/tftp/server.rb.ut.rb
400
+ - lib/rex/proto/tftp/server.rb
401
+ - lib/rex/proto/tftp/constants.rb
402
+ - lib/rex/proto/smb/simpleclient.rb
403
+ - lib/rex/proto/smb/constants.rb.ut.rb
404
+ - lib/rex/proto/smb/simpleclient.rb.ut.rb
405
+ - lib/rex/proto/smb/client.rb.ut.rb
406
+ - lib/rex/proto/smb/exceptions.rb
407
+ - lib/rex/proto/smb/crypt.rb
408
+ - lib/rex/proto/smb/utils.rb
409
+ - lib/rex/proto/smb/evasions.rb
410
+ - lib/rex/proto/smb/utils.rb.ut.rb
411
+ - lib/rex/proto/smb/constants.rb
412
+ - lib/rex/proto/smb/client.rb
413
+ - lib/rex/proto/rfb.rb.ut.rb
335
414
  - lib/rex/proto/drda/packet.rb
336
- - lib/rex/proto/drda/packet.rb.ut.rb
415
+ - lib/rex/proto/drda/constants.rb.ut.rb
337
416
  - lib/rex/proto/drda/utils.rb
338
417
  - lib/rex/proto/drda/utils.rb.ut.rb
339
- - lib/rex/proto/drda.rb
340
- - lib/rex/proto/drda.rb.ts.rb
341
- - lib/rex/proto/http/client.rb
418
+ - lib/rex/proto/drda/packet.rb.ut.rb
419
+ - lib/rex/proto/drda/constants.rb
420
+ - lib/rex/proto/http/server.rb.ut.rb
421
+ - lib/rex/proto/http/request.rb.ut.rb
422
+ - lib/rex/proto/http/response.rb.ut.rb
423
+ - lib/rex/proto/http/packet.rb
342
424
  - lib/rex/proto/http/client.rb.ut.rb
343
- - lib/rex/proto/http/handler/erb.rb
344
- - lib/rex/proto/http/handler/erb.rb.ut.rb
345
- - lib/rex/proto/http/handler/erb.rb.ut.rb.rhtml
346
- - lib/rex/proto/http/handler/proc.rb
347
- - lib/rex/proto/http/handler/proc.rb.ut.rb
425
+ - lib/rex/proto/http/header.rb.ut.rb
348
426
  - lib/rex/proto/http/handler.rb
427
+ - lib/rex/proto/http/server.rb
349
428
  - lib/rex/proto/http/header.rb
350
- - lib/rex/proto/http/header.rb.ut.rb
351
- - lib/rex/proto/http/packet.rb
352
- - lib/rex/proto/http/packet.rb.ut.rb
353
- - lib/rex/proto/http/request.rb
354
- - lib/rex/proto/http/request.rb.ut.rb
355
429
  - lib/rex/proto/http/response.rb
356
- - lib/rex/proto/http/response.rb.ut.rb
357
- - lib/rex/proto/http/server.rb
358
- - lib/rex/proto/http/server.rb.ut.rb
359
- - lib/rex/proto/http.rb
360
- - lib/rex/proto/http.rb.ts.rb
430
+ - lib/rex/proto/http/request.rb
431
+ - lib/rex/proto/http/handler/proc.rb.ut.rb
432
+ - lib/rex/proto/http/handler/proc.rb
433
+ - lib/rex/proto/http/handler/erb.rb.ut.rb
434
+ - lib/rex/proto/http/handler/erb.rb.ut.rb.rhtml
435
+ - lib/rex/proto/http/handler/erb.rb
436
+ - lib/rex/proto/http/packet.rb.ut.rb
437
+ - lib/rex/proto/http/client.rb
438
+ - lib/rex/proto/rfb.rb
439
+ - lib/rex/proto/dhcp.rb
440
+ - lib/rex/proto/dcerpc.rb.ts.rb
441
+ - lib/rex/proto/ntlm.rb.ut.rb
442
+ - lib/rex/proto/smb.rb.ts.rb
443
+ - lib/rex/proto/dhcp/server.rb
444
+ - lib/rex/proto/dhcp/constants.rb
445
+ - lib/rex/proto/sunrpc/client.rb
446
+ - lib/rex/proto/ntlm.rb
447
+ - lib/rex/proto/iax2.rb
448
+ - lib/rex/proto/drda.rb
449
+ - lib/rex/proto/iax2/codecs.rb
361
450
  - lib/rex/proto/iax2/call.rb
362
- - lib/rex/proto/iax2/client.rb
363
- - lib/rex/proto/iax2/codecs/alaw.rb
364
451
  - lib/rex/proto/iax2/codecs/g711.rb
365
452
  - lib/rex/proto/iax2/codecs/mulaw.rb
366
- - lib/rex/proto/iax2/codecs.rb
453
+ - lib/rex/proto/iax2/codecs/alaw.rb
367
454
  - lib/rex/proto/iax2/constants.rb
368
- - lib/rex/proto/iax2.rb
369
- - lib/rex/proto/ntlm/base.rb
370
- - lib/rex/proto/ntlm/constants.rb
371
- - lib/rex/proto/ntlm/crypt.rb
372
- - lib/rex/proto/ntlm/exceptions.rb
455
+ - lib/rex/proto/iax2/client.rb
456
+ - lib/rex/proto/sunrpc.rb
457
+ - lib/rex/proto/http.rb
373
458
  - lib/rex/proto/ntlm/message.rb
459
+ - lib/rex/proto/ntlm/exceptions.rb
460
+ - lib/rex/proto/ntlm/crypt.rb
374
461
  - lib/rex/proto/ntlm/utils.rb
375
- - lib/rex/proto/ntlm.rb
376
- - lib/rex/proto/ntlm.rb.ut.rb
377
- - lib/rex/proto/proxy/socks4a.rb
462
+ - lib/rex/proto/ntlm/base.rb
463
+ - lib/rex/proto/ntlm/constants.rb
464
+ - lib/rex/proto/http.rb.ts.rb
465
+ - lib/rex/proto/smb.rb
378
466
  - lib/rex/proto/rfb/cipher.rb
379
- - lib/rex/proto/rfb/client.rb
380
467
  - lib/rex/proto/rfb/constants.rb
381
- - lib/rex/proto/rfb.rb
382
- - lib/rex/proto/rfb.rb.ut.rb
383
- - lib/rex/proto/smb/client.rb
384
- - lib/rex/proto/smb/client.rb.ut.rb
385
- - lib/rex/proto/smb/constants.rb
386
- - lib/rex/proto/smb/constants.rb.ut.rb
387
- - lib/rex/proto/smb/crypt.rb
388
- - lib/rex/proto/smb/evasions.rb
389
- - lib/rex/proto/smb/exceptions.rb
390
- - lib/rex/proto/smb/simpleclient.rb
391
- - lib/rex/proto/smb/simpleclient.rb.ut.rb
392
- - lib/rex/proto/smb/utils.rb
393
- - lib/rex/proto/smb/utils.rb.ut.rb
394
- - lib/rex/proto/smb.rb
395
- - lib/rex/proto/smb.rb.ts.rb
396
- - lib/rex/proto/sunrpc/client.rb
397
- - lib/rex/proto/sunrpc.rb
398
- - lib/rex/proto/tftp/constants.rb
399
- - lib/rex/proto/tftp/server.rb
400
- - lib/rex/proto/tftp/server.rb.ut.rb
401
- - lib/rex/proto/tftp.rb
402
- - lib/rex/proto.rb
403
- - lib/rex/proto.rb.ts.rb
404
- - lib/rex/ropbuilder/rop.rb
405
- - lib/rex/ropbuilder.rb
406
- - lib/rex/script/base.rb
407
- - lib/rex/script/meterpreter.rb
408
- - lib/rex/script/shell.rb
409
- - lib/rex/script.rb
410
- - lib/rex/service.rb
468
+ - lib/rex/proto/rfb/client.rb
469
+ - lib/rex/job_container.rb
470
+ - lib/rex/platforms/windows.rb
411
471
  - lib/rex/service_manager.rb
412
- - lib/rex/service_manager.rb.ut.rb
413
- - lib/rex/services/local_relay.rb
414
- - lib/rex/socket/comm/local.rb
415
- - lib/rex/socket/comm/local.rb.ut.rb
416
- - lib/rex/socket/comm.rb
472
+ - lib/rex/zip.rb
473
+ - lib/rex/logging.rb
474
+ - lib/rex/text.rb
475
+ - lib/rex/ropbuilder/rop.rb
476
+ - lib/rex/constants.rb
477
+ - lib/rex/mime.rb
478
+ - lib/rex/pescan.rb
479
+ - lib/rex/machscan/scanner.rb
480
+ - lib/rex/poly.rb
481
+ - lib/rex/elfscan.rb
482
+ - lib/rex/socket.rb.ut.rb
417
483
  - lib/rex/socket/ip.rb
418
- - lib/rex/socket/parameters.rb
419
- - lib/rex/socket/parameters.rb.ut.rb
420
- - lib/rex/socket/range_walker.rb
484
+ - lib/rex/socket/switch_board.rb
485
+ - lib/rex/socket/subnet_walker.rb
421
486
  - lib/rex/socket/range_walker.rb.ut.rb
422
- - lib/rex/socket/ssl_tcp.rb
423
487
  - lib/rex/socket/ssl_tcp.rb.ut.rb
424
- - lib/rex/socket/ssl_tcp_server.rb
488
+ - lib/rex/socket/udp.rb.ut.rb
425
489
  - lib/rex/socket/ssl_tcp_server.rb.ut.rb
426
- - lib/rex/socket/subnet_walker.rb
427
490
  - lib/rex/socket/subnet_walker.rb.ut.rb
428
- - lib/rex/socket/switch_board.rb
429
- - lib/rex/socket/switch_board.rb.ut.rb
491
+ - lib/rex/socket/parameters.rb.ut.rb
430
492
  - lib/rex/socket/tcp.rb
431
- - lib/rex/socket/tcp.rb.ut.rb
493
+ - lib/rex/socket/comm.rb
432
494
  - lib/rex/socket/tcp_server.rb
433
- - lib/rex/socket/tcp_server.rb.ut.rb
495
+ - lib/rex/socket/switch_board.rb.ut.rb
496
+ - lib/rex/socket/range_walker.rb
497
+ - lib/rex/socket/parameters.rb
434
498
  - lib/rex/socket/udp.rb
435
- - lib/rex/socket/udp.rb.ut.rb
436
- - lib/rex/socket.rb
437
- - lib/rex/socket.rb.ut.rb
438
- - lib/rex/struct2/c_struct.rb
439
- - lib/rex/struct2/c_struct_template.rb
440
- - lib/rex/struct2/constant.rb
441
- - lib/rex/struct2/element.rb
442
- - lib/rex/struct2/generic.rb
443
- - lib/rex/struct2/restraint.rb
444
- - lib/rex/struct2/s_string.rb
445
- - lib/rex/struct2/s_struct.rb
446
- - lib/rex/struct2.rb
447
- - lib/rex/sync/event.rb
448
- - lib/rex/sync/read_write_lock.rb
449
- - lib/rex/sync/ref.rb
450
- - lib/rex/sync/thread_safe.rb
451
- - lib/rex/sync.rb
452
- - lib/rex/test.rb
453
- - lib/rex/text.rb
454
- - lib/rex/text.rb.ut.rb
455
- - lib/rex/thread_factory.rb
456
- - lib/rex/time.rb
457
- - lib/rex/transformer.rb
458
- - lib/rex/transformer.rb.ut.rb
459
- - lib/rex/ui/interactive.rb
460
- - lib/rex/ui/output/none.rb
461
- - lib/rex/ui/output.rb
462
- - lib/rex/ui/progress_tracker.rb
463
- - lib/rex/ui/subscriber.rb
464
- - lib/rex/ui/text/color.rb
465
- - lib/rex/ui/text/color.rb.ut.rb
466
- - lib/rex/ui/text/dispatcher_shell.rb
467
- - lib/rex/ui/text/input/buffer.rb
468
- - lib/rex/ui/text/input/readline.rb
469
- - lib/rex/ui/text/input/socket.rb
470
- - lib/rex/ui/text/input/stdio.rb
471
- - lib/rex/ui/text/input.rb
472
- - lib/rex/ui/text/irb_shell.rb
473
- - lib/rex/ui/text/output/buffer.rb
474
- - lib/rex/ui/text/output/file.rb
475
- - lib/rex/ui/text/output/socket.rb
476
- - lib/rex/ui/text/output/stdio.rb
477
- - lib/rex/ui/text/output/tee.rb
478
- - lib/rex/ui/text/output.rb
479
- - lib/rex/ui/text/progress_tracker.rb
480
- - lib/rex/ui/text/progress_tracker.rb.ut.rb
481
- - lib/rex/ui/text/shell.rb
482
- - lib/rex/ui/text/table.rb
483
- - lib/rex/ui/text/table.rb.ut.rb
484
- - lib/rex/ui.rb
485
- - lib/rex/zip/archive.rb
486
- - lib/rex/zip/blocks.rb
487
- - lib/rex/zip/entry.rb
488
- - lib/rex/zip/jar.rb
489
- - lib/rex/zip/samples/comment.rb
490
- - lib/rex/zip/samples/mkwar.rb
491
- - lib/rex/zip/samples/mkzip.rb
492
- - lib/rex/zip/samples/recursive.rb
493
- - lib/rex/zip.rb
494
- - lib/rex.rb
495
- - lib/rex.rb.ts.rb
499
+ - lib/rex/socket/tcp_server.rb.ut.rb
500
+ - lib/rex/socket/tcp.rb.ut.rb
501
+ - lib/rex/socket/comm/local.rb.ut.rb
502
+ - lib/rex/socket/comm/local.rb
503
+ - lib/rex/socket/ssl_tcp_server.rb
504
+ - lib/rex/socket/ssl_tcp.rb
505
+ has_rdoc: true
496
506
  homepage: http://www.metasploit.com/
497
- licenses:
507
+ licenses:
498
508
  - BSD
499
509
  post_install_message:
500
510
  rdoc_options: []
501
- require_paths:
511
+
512
+ require_paths:
502
513
  - lib
503
- required_ruby_version: !ruby/object:Gem::Requirement
514
+ required_ruby_version: !ruby/object:Gem::Requirement
504
515
  none: false
505
- requirements:
506
- - - ! '>='
507
- - !ruby/object:Gem::Version
516
+ requirements:
517
+ - - ">="
518
+ - !ruby/object:Gem::Version
519
+ hash: 57
520
+ segments:
521
+ - 1
522
+ - 8
523
+ - 7
508
524
  version: 1.8.7
509
- required_rubygems_version: !ruby/object:Gem::Requirement
525
+ required_rubygems_version: !ruby/object:Gem::Requirement
510
526
  none: false
511
- requirements:
512
- - - ! '>='
513
- - !ruby/object:Gem::Version
514
- version: '0'
527
+ requirements:
528
+ - - ">="
529
+ - !ruby/object:Gem::Version
530
+ hash: 3
531
+ segments:
532
+ - 0
533
+ version: "0"
515
534
  requirements: []
535
+
516
536
  rubyforge_project:
517
- rubygems_version: 1.8.6
537
+ rubygems_version: 1.4.2
518
538
  signing_key:
519
539
  specification_version: 3
520
540
  summary: Ruby Exploitation Library
521
541
  test_files: []
542
+