pwn 0.4.904 → 0.4.906

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bad6ce74eeb5ccae9625b4ee38d9b8b7fa1d3c8f91e4fbdb0023c78182abbd23
4
- data.tar.gz: 5a7459ede92b731376ac68239c4193ce57dac70fa6188fe11c5450fab86b7217
3
+ metadata.gz: 0e59869bd42240ae727b70dcc8580ec62d0a208bb26e01692b032304558f2808
4
+ data.tar.gz: 7ea494fd1a212a60ff77f94f09ac8df1730403c253ff15bcdb6752c924cb3aa1
5
5
  SHA512:
6
- metadata.gz: 79a429151509542d1d64cda1335b42388be63e9c4741668ea0e09447da0d9895dfc1edc00f39554dd9ffd6c972a3b4e043b94dd62f02ec8c9a9a3a097607f599
7
- data.tar.gz: a8871653250a0cb7d73da6e612fd209b55e1e1edf0500cb912f69500e8b5f7230522e7dda92aa041427e5ac03b7c6b6e3b475bf216f11b599d0e34b5f6b32180
6
+ metadata.gz: e79e91f3d7de9678f22013dbe3dc065ae8d6564c8d40ff748760874eaa57c1dc0dfd292e6c44c285cb3d01416308b1fd8c25fb67451ecbe1f161f2bde6b64172
7
+ data.tar.gz: d69e6dd7f64621527c99d524141b5db7871c9c365db207753ba0c3fad8eb50863bc3ebe85ca1514685ce54bfc2dde76de59d9cc8db73f428d2bd6ae5dd84a85f
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ rvm use ruby-3.2.2@pwn
37
37
  $ rvm list gemsets
38
38
  $ gem install --verbose pwn
39
39
  $ pwn
40
- pwn[v0.4.904]:001 >>> PWN.help
40
+ pwn[v0.4.906]:001 >>> PWN.help
41
41
  ```
42
42
 
43
43
  [![Installing the pwn Security Automation Framework](https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png)](https://youtu.be/G7iLUY4FzsI)
@@ -52,7 +52,7 @@ $ rvm use ruby-3.2.2@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.904]:001 >>> PWN.help
55
+ pwn[v0.4.906]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -30,11 +30,6 @@ module PWN
30
30
  tls ||= false
31
31
 
32
32
  tls_min_version = OpenSSL::SSL::TLS1_VERSION if tls_min_version.nil?
33
- # tls_version Values can be Displayed via:
34
- # OpenSSL::SSL::SSLContext::METHODS
35
- # tls_version = 'TLSv1' if tls_version.nil?
36
- # tls_version = nil if tls_min_version == OpenSSL::SSL::TLS1_3_VERSION
37
- # cipher_tls = 'TLSv1.0' if cipher_tls.nil?
38
33
 
39
34
  case protocol
40
35
  when :tcp
@@ -42,12 +37,14 @@ module PWN
42
37
  sock = TCPSocket.open(target, port)
43
38
  tls_context = OpenSSL::SSL::SSLContext.new
44
39
  tls_context.set_params(verify_mode: OpenSSL::SSL::VERIFY_NONE)
45
- # tls_context.verify_hostname = false
46
- # tls_context.ssl_version = tls_version
47
40
  tls_context.min_version = tls_min_version
48
- # tls_context.ciphers = tls_context.ciphers.select { |c| c[1] == cipher_tls }
41
+ # tls_context.ciphers = tls_context.ciphers.select do |cipher|
42
+ # cipher[1] == cipher_tls
43
+ # end
49
44
  tls_sock = OpenSSL::SSL::SSLSocket.new(sock, tls_context)
45
+ tls_sock.hostname = target
50
46
  sock_obj = tls_sock.connect
47
+ sock_obj.sync_close = true
51
48
  else
52
49
  sock_obj = TCPSocket.open(target, port)
53
50
  end
@@ -63,12 +60,10 @@ module PWN
63
60
  case tls_min_version
64
61
  when OpenSSL::SSL::TLS1_VERSION
65
62
  puts 'Attempting OpenSSL::SSL::TLS1_1_VERSION...'
66
- # tls_version = 'TLSv1_1'
67
63
  # cipher_tls = 'TLSv1.0'
68
64
  tls_min_version = OpenSSL::SSL::TLS1_1_VERSION
69
65
  when OpenSSL::SSL::TLS1_1_VERSION
70
66
  puts 'Attempting OpenSSL::SSL::TLS1_2_VERSION...'
71
- # tls_version = 'TLSv1_2'
72
67
  # cipher_tls = 'TLSv1.2'
73
68
  tls_min_version = OpenSSL::SSL::TLS1_2_VERSION
74
69
  when OpenSSL::SSL::TLS1_2_VERSION
@@ -219,7 +214,6 @@ module PWN
219
214
  protocol: :tcp,
220
215
  tls: true
221
216
  )
222
- tls_sock_obj.sync_close = true
223
217
  tls_sock_obj.peer_cert
224
218
  rescue StandardError => e
225
219
  raise e
data/lib/pwn/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PWN
4
- VERSION = '0.4.904'
4
+ VERSION = '0.4.906'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.904
4
+ version: 0.4.906
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.