pwn 0.4.905 → 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: 209f9a7230d2b15c4b2a717fb960d6cef3cb66f46f80b7d1151ff30e1c55b608
4
- data.tar.gz: 6cd6685fd53e8f8a7203a219d4b9d85f56d8bd20a00506b5455a736996f02563
3
+ metadata.gz: 0e59869bd42240ae727b70dcc8580ec62d0a208bb26e01692b032304558f2808
4
+ data.tar.gz: 7ea494fd1a212a60ff77f94f09ac8df1730403c253ff15bcdb6752c924cb3aa1
5
5
  SHA512:
6
- metadata.gz: 27a3448585dfdca17e883c3f6b0b0d7d3fc88e0620ecd7ddfdc95949cc36d17378283600dbe8d6fef2143e86efefac43d184089a422e9874d39ba7eda405b33d
7
- data.tar.gz: eb6a4f51147e0731c3236317f75b93454654234f16de80a95b63be9c2ce9fe5c7d58b56d0b4d3ce0dc1cf00b84b1510a1969e6dd82ee774577629cbaee01958b
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.905]: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.905]: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,10 +37,10 @@ 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)
50
45
  tls_sock.hostname = target
51
46
  sock_obj = tls_sock.connect
@@ -65,12 +60,10 @@ module PWN
65
60
  case tls_min_version
66
61
  when OpenSSL::SSL::TLS1_VERSION
67
62
  puts 'Attempting OpenSSL::SSL::TLS1_1_VERSION...'
68
- # tls_version = 'TLSv1_1'
69
63
  # cipher_tls = 'TLSv1.0'
70
64
  tls_min_version = OpenSSL::SSL::TLS1_1_VERSION
71
65
  when OpenSSL::SSL::TLS1_1_VERSION
72
66
  puts 'Attempting OpenSSL::SSL::TLS1_2_VERSION...'
73
- # tls_version = 'TLSv1_2'
74
67
  # cipher_tls = 'TLSv1.2'
75
68
  tls_min_version = OpenSSL::SSL::TLS1_2_VERSION
76
69
  when OpenSSL::SSL::TLS1_2_VERSION
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.905'
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.905
4
+ version: 0.4.906
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.