pwn 0.4.906 → 0.4.907

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: 0e59869bd42240ae727b70dcc8580ec62d0a208bb26e01692b032304558f2808
4
- data.tar.gz: 7ea494fd1a212a60ff77f94f09ac8df1730403c253ff15bcdb6752c924cb3aa1
3
+ metadata.gz: fe78a4cdaa98fc3d5f8c27a93df730f0d6f868ed4c836eae301c14491e148e78
4
+ data.tar.gz: 7331f43b33095b76b3405ed41c0b731b013d304355c097f58cd11ef0ff1b2023
5
5
  SHA512:
6
- metadata.gz: e79e91f3d7de9678f22013dbe3dc065ae8d6564c8d40ff748760874eaa57c1dc0dfd292e6c44c285cb3d01416308b1fd8c25fb67451ecbe1f161f2bde6b64172
7
- data.tar.gz: d69e6dd7f64621527c99d524141b5db7871c9c365db207753ba0c3fad8eb50863bc3ebe85ca1514685ce54bfc2dde76de59d9cc8db73f428d2bd6ae5dd84a85f
6
+ metadata.gz: 29217fbd9e14fb93731c04ba41f543cbae4fc78cc0ba5dd021c5aa74ed7d9762fa0e8c16ce89ee81af21a8baddba9ffaab6e8fc0bf261647a495437f13d260b1
7
+ data.tar.gz: 6f912c186e3b7b8a5b5595b3125508314d385c4cd91c2925fb94208701ed3b6821887d1d44dcf07f0358247ab6f2173a2b87548ea2edbd0c1bd2bdf1e2c992b9
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.906]:001 >>> PWN.help
40
+ pwn[v0.4.907]: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.906]:001 >>> PWN.help
55
+ pwn[v0.4.907]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -81,11 +81,18 @@ module PWN
81
81
  )
82
82
 
83
83
  ip_resp[:tls_avail] = tls_port_avail
84
+ ip_resp[:ca_issuer_uris] = false
84
85
  ip_resp[:cert_subject] = false
85
86
  ip_resp[:cert_issuer] = false
86
87
  ip_resp[:cert_serial] = false
88
+ ip_resp[:crl_uris] = false
89
+ ip_resp[:extensions] = false
87
90
  ip_resp[:not_before] = false
88
91
  ip_resp[:not_after] = false
92
+ ip_resp[:oscsp_uris] = false
93
+ ip_resp[:pem] = false
94
+ ip_resp[:signature_algorithm] = false
95
+ ip_resp[:version] = false
89
96
  next unless tls_port_avail
90
97
 
91
98
  cert_obj = PWN::Plugins::Sock.get_tls_cert(
@@ -95,11 +102,18 @@ module PWN
95
102
 
96
103
  next unless cert_obj.is_a?(OpenSSL::X509::Certificate)
97
104
 
105
+ ip_resp[:ca_issuer_uris] = cert_obj.ca_issuer_uris.to_s
98
106
  ip_resp[:cert_subject] = cert_obj.subject.to_s
99
107
  ip_resp[:cert_issuer] = cert_obj.issuer.to_s
100
108
  ip_resp[:cert_serial] = cert_obj.serial.to_s
109
+ ip_resp[:crl_uris] = cert_obj.crl_uris.to_s
110
+ ip_resp[:extensions] = cert_obj.extensions.map { |ext| ext.to_s }
101
111
  ip_resp[:not_before] = cert_obj.not_before.to_s
102
112
  ip_resp[:not_after] = cert_obj.not_after.to_s
113
+ ip_resp[:oscsp_uris] = cert_obj.ocsp_uris.to_s
114
+ ip_resp[:pem] = cert_obj.to_pem.to_s
115
+ ip_resp[:signature_algorithm] = cert_obj.signature_algorithm.to_s
116
+ ip_resp[:version] = cert_obj.version.to_s
103
117
  end
104
118
  end
105
119
 
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.906'
4
+ VERSION = '0.4.907'
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.906
4
+ version: 0.4.907
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.