pwn 0.5.319 → 0.5.320

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: 9f2e97579ad9dfed311ca04aa2c0ebc14ae715f503de0cb618eab39fb1224c8a
4
- data.tar.gz: '081e8e1033d4435f1a583154b49a570ef1bada2fd422a65f2490a7970ecc8d04'
3
+ metadata.gz: 3345d8d2650b34e2e1f18b2bb66d02fc9cbd24805bb115fb395b161c5a0133e7
4
+ data.tar.gz: a2dbe1818c8bba10dc03aec5d518191fc001d1803787c643e7a403853e9ff2bf
5
5
  SHA512:
6
- metadata.gz: 2c9fd3af6414e7b100b56eee560b5ecc6cc9da1163d0692ee06b6ad96005c93ff506bd89c1249eceb7fad94aae030b88d75e88120b92ec52858a50c171735524
7
- data.tar.gz: bb9071909f4595002bb841a74bcc60c635f69a3f641c7ea4f799c3d76f6bebb88b1fc19fb8e49b02edaf62d6780729703d31f1913eff6dec80b0507cb96e085b
6
+ metadata.gz: dd4c499818137e8cfb71c8633199367cb33653b1bf284ef483f5ac5c2e75d4a5f43051072eaed10c90350a43b23ffab3941b300cdb544494aa6df4a81763ea14
7
+ data.tar.gz: c69355e3035a7d3833a12f1a3d0f4ea3c40420e53c3e000f0a6aa51889216933b190060aec48529d678b7790ee2d97ad937f79341ef13f562cabe74bc58a9952
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ cd /opt/pwn
37
37
  $ ./install.sh
38
38
  $ ./install.sh ruby-gem
39
39
  $ pwn
40
- pwn[v0.5.319]:001 >>> PWN.help
40
+ pwn[v0.5.320]: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.4.4@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.319]:001 >>> PWN.help
55
+ pwn[v0.5.320]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
  If you're using a multi-user install of RVM do:
@@ -62,7 +62,7 @@ $ rvm use ruby-3.4.4@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.319]:001 >>> PWN.help
65
+ pwn[v0.5.320]:001 >>> PWN.help
66
66
  ```
67
67
 
68
68
  PWN periodically upgrades to the latest version of Ruby which is reflected in `/opt/pwn/.ruby-version`. The easiest way to upgrade to the latest version of Ruby from a previous PWN installation is to run the following script:
@@ -202,9 +202,9 @@ module PWN
202
202
  ]
203
203
 
204
204
  if implicit_http_ports_arr.include?(json_port)
205
- json_uri = "#{json_protocol}//#{json_host}#{json_path}"
205
+ json_uri = "#{json_protocol}://#{json_host}#{json_path}"
206
206
  else
207
- json_uri = "#{json_protocol}//#{json_host}:#{json_port}#{json_path}"
207
+ json_uri = "#{json_protocol}://#{json_host}:#{json_port}#{json_path}"
208
208
  end
209
209
 
210
210
  next unless json_host == target_domain_name && json_port == target_port
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.5.319'
4
+ VERSION = '0.5.320'
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.5.319
4
+ version: 0.5.320
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.