pwn 0.4.883 → 0.4.884

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: 7e885f7bbe5c37e3c4f5aec29732db2e0317be4161485f3332107d91bae3bbee
4
- data.tar.gz: 156fff9c4d0f0409620f13edbdd56938e26db6f76c16b8b8bc3ff57fd2dfe936
3
+ metadata.gz: 6da36f181234544228772fe502a244a08aacbf2566c1785bf6ed89705c7fc6d3
4
+ data.tar.gz: 0664cf572253f558b278532376468ed582e6ff01705cbd2d8691151662aeb697
5
5
  SHA512:
6
- metadata.gz: 908852b210b0f61f4fde53b3b75f5cf643a63fac4fd9b342900483a11ea1790d2fb46a6f6163faaf7de023b1bd48184873569f05e25b5a605c69bbb2322bd598
7
- data.tar.gz: d295e66d2912685f6b26c86e35a92796317fe1bdfaa35f029be8c11269c53b39de070ba044787cf664a2c3573a36f8e06dea95108d043be8b8307b02913d9bee
6
+ metadata.gz: d651d3cab3a8998706361ce2c305c672d8034c149235d705b37095274f632896105843b97fc30162e6390f2280e4be37cfc4c5b207246473c9f2a4666cadc5fb
7
+ data.tar.gz: c3d97f877e0647ff5b091ff81a366bd1b408cb87319427ec58a046c5844b11d63df5a62e339241b91df893a2659e18e6aeba9e8da3f4d9a45cd6c46c3558dff1
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.883]:001 >>> PWN.help
40
+ pwn[v0.4.884]: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.883]:001 >>> PWN.help
55
+ pwn[v0.4.884]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
data/bin/pwn_www_checkip CHANGED
@@ -48,10 +48,11 @@ begin
48
48
 
49
49
  puts "PUBLIC IP: #{public_ip_address}"
50
50
  if ipinfo
51
- puts PWN::Plugins::IPInfo.get(
51
+ ip_info_obj = PWN::Plugins::IPInfo.get(
52
52
  target: public_ip_address,
53
53
  proxy: proxy
54
54
  )
55
+ pp ip_info_obj
55
56
  end
56
57
  rescue StandardError => e
57
58
  raise e
@@ -81,7 +81,6 @@ module PWN
81
81
  )
82
82
 
83
83
  ip_resp[:tls_avail] = tls_port_avail
84
- ip_resp[:cert_txt] = false
85
84
  ip_resp[:cert_obj] = false
86
85
  next unless tls_port_avail
87
86
 
@@ -92,7 +91,6 @@ module PWN
92
91
 
93
92
  next unless cert_obj.is_a?(OpenSSL::X509::Certificate)
94
93
 
95
- ip_resp[:cert_txt] = cert_obj.to_text
96
94
  ip_resp[:cert_obj] = cert_obj
97
95
  end
98
96
  end
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.883'
4
+ VERSION = '0.4.884'
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.883
4
+ version: 0.4.884
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.