pwn 0.5.556 → 0.5.557

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: 6255f4d76631b0b118c22f396f3f5eed54df73455a82366ca356cf8f0b4df301
4
- data.tar.gz: 77bdc2f5e0ad10c62ee0560026b14c103e4df65782c92dd84e9aca2b1dbbe4e0
3
+ metadata.gz: 5935ab10fe01a381e4535adf2d7c2d5b314cd77aa40d96bc583167d82a549064
4
+ data.tar.gz: e4b60b0ead1e429cac2001b068c8d46718e157aaa0657c9b4868e1ec58720136
5
5
  SHA512:
6
- metadata.gz: d1369056ea8d30f251095722906cf37fda7d0ec181ef06608d79ec763f177755450e0b752a3cc1570a70f905f2e41ac9170b0de450f93eca6ec1e97efad012a6
7
- data.tar.gz: deebb978ccdbf9733eddd6052adf30f12f7f48957dae412493bd0f5461b05ac0872aa96c41b4025872b0efd63febfaa98967f54a16c918e5c1c2f31ab98e25b1
6
+ metadata.gz: 463c4c59073e29bcd5d7b00485ca7d49a3deb2ee2b674c33cc73b57dd7ab00ce11e8d122f42c96bb3c3773865847ee0faa8d144e19bcc4aa713c7e49d52d274f
7
+ data.tar.gz: 13fedf226b07f3d6936d90352031538ba44e3d852af5c58d75f6881436848189e3be103a89356fb6480b2f3a52a483104bf03b3ee6442a6f44183633896d4d85
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.556]:001 >>> PWN.help
40
+ pwn[v0.5.557]: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-4.0.1@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.556]:001 >>> PWN.help
55
+ pwn[v0.5.557]: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-4.0.1@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.556]:001 >>> PWN.help
65
+ pwn[v0.5.557]: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:
@@ -161,7 +161,6 @@ module PWN
161
161
  entry: entry
162
162
  )
163
163
  end
164
- sleep Random.rand(30..60)
165
164
 
166
165
  when :sitemap
167
166
  sitemap = get_sitemap(
@@ -222,7 +221,6 @@ module PWN
222
221
  entry: entry
223
222
  )
224
223
  end
225
- sleep Random.rand(60..90)
226
224
 
227
225
  when :websocket_history
228
226
  websocket_history = get_websocket_history(
@@ -260,8 +258,8 @@ module PWN
260
258
  entry: entry
261
259
  )
262
260
  end
263
- sleep Random.rand(3..10)
264
261
  end
262
+ sleep Random.rand(3..10)
265
263
  offset += limit unless keep_offset
266
264
  end
267
265
  rescue Errno::ECONNREFUSED
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.556'
4
+ VERSION = '0.5.557'
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.556
4
+ version: 0.5.557
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.