pwn 0.5.129 → 0.5.130

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: 041b60ff7e7d85926a01fe639e900d83cf1e95a702960a14ca652af48cc8249b
4
- data.tar.gz: dbba29721fc429bdc2a65ded91498486afe70810d26223023c8aadc61a4444eb
3
+ metadata.gz: 814b8e431ed2d2ba7bab981882188ca4d140b0d7326df6fae263cc4a88afe9ee
4
+ data.tar.gz: cdd95ca1aedf97f1e14d81892218b6a69b74474f8f78650a3c8d5069eb8ac3dc
5
5
  SHA512:
6
- metadata.gz: f48e7d733e857094fcf3a4495d0b8e4fdd8da1c0202ea71704439e85da8722700eb6c43584918c4c960da79649526d3d1874328416e1b0ba101cbba558e6072f
7
- data.tar.gz: a658d909e8b85644f637ddc66eb8cc97d1eefdfe8e40335cbb6b0a5f76620e76497675ea8bb6d673e1c4695f152f7e1be3b13511200221ef44ca17b66f29f074
6
+ metadata.gz: d2c10d7fcf272329ef1a0189397d62aeee9a470c661ab67ad2bc26bda7659aac1a2a7a98b575e0a80bac0c0ffc207c2ade26363e01bd2e4bc5bd1d6c01f0777d
7
+ data.tar.gz: 994b0fbb996c133efee107a15de7ce11b7b57321a94b93f0750928c7892679fe59b854d456ec0c9474931586c988609a498f8a8c9cbabbf2c909d17192cfb0fd
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.129]:001 >>> PWN.help
40
+ pwn[v0.5.130]: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.3.1@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.129]:001 >>> PWN.help
55
+ pwn[v0.5.130]: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.3.1@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.129]:001 >>> PWN.help
65
+ pwn[v0.5.130]: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:
@@ -57,7 +57,7 @@ module PWN
57
57
  next unless block_given?
58
58
 
59
59
  # Extract the message text from the message
60
- message_text = message.split[3..-1].join(' ')[1..-1]
60
+ message_text = message.to_s.split[3..-1].join(' ')[1..-1]
61
61
  yield message_text
62
62
  end
63
63
  rescue StandardError => e
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.129'
4
+ VERSION = '0.5.130'
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.129
4
+ version: 0.5.130
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.