rex-socket 0.1.58 → 0.1.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fb38ba9938df81a01bc5fbfffe8055b10d09a8bbb3d19e3955904d70e6577e1b
4
- data.tar.gz: f26d820ced28fc1d88120e3d60f4a3ad08440f69f12973754e3fa4d93bcaceec
3
+ metadata.gz: e949497936b6f26c1c6da1830a2673f8708706e89598765b26ddf05179dceee0
4
+ data.tar.gz: 49e42e30d773df6f4b52539d360748fe77e51dd49bb1f1e2782a35217839eef3
5
5
  SHA512:
6
- metadata.gz: e5b90f41b5ae712f69c467202d72d211e1e35b4b4a86dc49b80a2e369e716f002bb85189edf0e3e4618579af681fe69d8f98e638854694e0a4ad6e3ca582b685
7
- data.tar.gz: e2b28c496f4c3cc30eb8d235aa2657084c338d6f782f1e22eb5a040c4b4285bd709f274fae3c2bb366923f1d619471ecd54cccf4518f33c198b8ddb2825c5ed0
6
+ metadata.gz: c8ea54f52f4f10c8050e181980de4caf16bc5443657c55cf0ce5ef1d20b1a5bca84448515ab502ab79c4bc3eef66b1a199ada9e095304a42c25150ee9d3062fe
7
+ data.tar.gz: aec32cadf5c60108aba67155731cf5eba9da3dba310f37fa6f6941f04a9e167762bae8953c05b5dfa7c6b096c8fdc44616b42a3f80e910a4cbc2b2e8c438308f
checksums.yaml.gz.sig CHANGED
Binary file
@@ -9,6 +9,7 @@ require 'rex/socket/udp'
9
9
  require 'rex/socket/sctp'
10
10
  require 'rex/socket/sctp_server'
11
11
  require 'rex/socket/ip'
12
+ require 'rex/socket/proxies'
12
13
  require 'timeout'
13
14
 
14
15
  ###
@@ -353,7 +354,7 @@ class Rex::Socket::Comm::Local
353
354
 
354
355
  def self.proxy(sock, type, host, port)
355
356
  case type.downcase
356
- when 'sapni'
357
+ when Rex::Socket::Proxies::ProxyType::SAPNI
357
358
  packet_type = 'NI_ROUTE'
358
359
  route_info_version = 2
359
360
  ni_version = 39
@@ -422,7 +423,7 @@ class Rex::Socket::Comm::Local
422
423
  raise Rex::ConnectionProxyError.new(host, port, type, "Connection to #{host}:#{port} failed (Unknown fail)")
423
424
  end
424
425
 
425
- when 'http'
426
+ when Rex::Socket::Proxies::ProxyType::HTTP
426
427
  setup = "CONNECT #{host}:#{port} HTTP/1.0\r\n\r\n"
427
428
  size = sock.put(setup)
428
429
  if size != setup.length
@@ -445,7 +446,7 @@ class Rex::Socket::Comm::Local
445
446
  if resp.code != 200
446
447
  raise Rex::ConnectionProxyError.new(host, port, type, "The proxy returned a non-OK response"), caller
447
448
  end
448
- when 'socks4'
449
+ when Rex::Socket::Proxies::ProxyType::SOCKS4
449
450
  supports_ipv6 = false
450
451
  setup = [4,1,port.to_i].pack('CCn') + Rex::Socket.resolv_nbo(host, supports_ipv6) + Rex::Text.rand_text_alpha(rand(8)+1) + "\x00"
451
452
  size = sock.put(setup)
@@ -465,7 +466,7 @@ class Rex::Socket::Comm::Local
465
466
  if ret[1,1] != "\x5a"
466
467
  raise Rex::ConnectionProxyError.new(host, port, type, "Proxy responded with error code #{ret[0,1].unpack("C")[0]}"), caller
467
468
  end
468
- when 'socks5'
469
+ when Rex::Socket::Proxies::ProxyType::SOCKS5
469
470
  auth_methods = [5,1,0].pack('CCC')
470
471
  size = sock.put(auth_methods)
471
472
  if size != auth_methods.length
@@ -1,5 +1,6 @@
1
1
  # -*- coding: binary -*-
2
2
  require 'rex/socket'
3
+ require 'rex/socket/proxies'
3
4
 
4
5
  ###
5
6
  #
@@ -163,7 +164,7 @@ class Rex::Socket::Parameters
163
164
  end
164
165
 
165
166
  if hash['Proxies']
166
- self.proxies = hash['Proxies'].split(',').map{|a| a.strip}.map{|a| a.split(':').map{|b| b.strip}}
167
+ self.proxies = Rex::Socket::Proxies.parse(hash['Proxies'])
167
168
  end
168
169
 
169
170
  # The protocol this socket will be using
@@ -0,0 +1,24 @@
1
+ # -*- coding: binary -*-
2
+
3
+ module Rex
4
+ module Socket
5
+ module Proxies
6
+ module ProxyType
7
+ SAPNI = 'sapni'
8
+ HTTP = 'http'
9
+ SOCKS4 = 'socks4'
10
+ SOCKS5 = 'socks5'
11
+ end
12
+
13
+ # @param [String,nil] value A proxy chain of format {type:host:port[,type:host:port][...]}
14
+ # @return [Array] The array of proxies, i.e. {[['type', 'host', 'port']]}
15
+ def self.parse(value)
16
+ value.to_s.strip.split(',').map { |a| a.strip }.map { |a| a.split(':').map { |b| b.strip } }
17
+ end
18
+
19
+ def self.supported_types
20
+ ProxyType.constants.map { |c| ProxyType.const_get(c) }
21
+ end
22
+ end
23
+ end
24
+ end
@@ -1,5 +1,5 @@
1
1
  module Rex
2
2
  module Socket
3
- VERSION = "0.1.58"
3
+ VERSION = "0.1.59"
4
4
  end
5
5
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rex-socket
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.58
4
+ version: 0.1.59
5
5
  platform: ruby
6
6
  authors:
7
7
  - Metasploit Hackers
@@ -34,7 +34,7 @@ cert_chain:
34
34
  DgscAao7wB3xW2BWEp1KnaDWkf1x9ttgoBEYyuYwU7uatB67kBQG1PKvLt79wHvz
35
35
  Dxs+KOjGbBRfMnPgVGYkORKVrZIwlaboHbDKxcVW5xv+oZc7KYXWGg==
36
36
  -----END CERTIFICATE-----
37
- date: 2024-11-22 00:00:00.000000000 Z
37
+ date: 2024-12-05 00:00:00.000000000 Z
38
38
  dependencies:
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: rake
@@ -118,6 +118,7 @@ files:
118
118
  - lib/rex/socket/comm/local.rb
119
119
  - lib/rex/socket/ip.rb
120
120
  - lib/rex/socket/parameters.rb
121
+ - lib/rex/socket/proxies.rb
121
122
  - lib/rex/socket/range_walker.rb
122
123
  - lib/rex/socket/sctp.rb
123
124
  - lib/rex/socket/sctp_server.rb
@@ -151,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
152
  - !ruby/object:Gem::Version
152
153
  version: '0'
153
154
  requirements: []
154
- rubygems_version: 3.4.10
155
+ rubygems_version: 3.5.22
155
156
  signing_key:
156
157
  specification_version: 4
157
158
  summary: The Ruby Exploitation (Rex) Socket Abstraction Library.
metadata.gz.sig CHANGED
Binary file