pwn 0.5.224 → 0.5.225

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: 5f3053bc992855c9b715f45c3fcff263a3f57db584cd097f4e08ee8f4e25bf8b
4
- data.tar.gz: 84a413505b53fd6f44acf96f37f4e289a6e3fa0ecdaa8ebf83d58a3819b5902f
3
+ metadata.gz: baadaa7fc233c80233a7eae98e1f15b1aa438001ff832121a0875cd38eea0600
4
+ data.tar.gz: 3db2c8f074f4cfede3ca7479d2eb7599cec0024c17e42e01aa5466712aabd5b5
5
5
  SHA512:
6
- metadata.gz: 41bcce03db3746b62b81956ee9005c13025399e18daa1ece513a0c83c7a3bf98258d30832982456675f5cccc8ba8eb56d62e3fe7adb60bb27614375c328914a8
7
- data.tar.gz: 01c830874cf6badcf5fe365b0d6b2e01bc5c41f5a4c6ec22c62d0d597cdbea8c2d193b3b9d5d8a502b1989eef9bdc97e9e04ce4bc1bd35306772c76f17ff5675
6
+ metadata.gz: 6edd056bd446da61f9a339951fc06fcf0e5de977b684c38f71243d373840db206a01aa1cf24651d332b9876a36315f3614027ef0f46bace4891a5954076a98ad
7
+ data.tar.gz: 9af8adec2e4cda10ec9cc061386f4083a07581844e52cfeb863a03fcf45740c919b24e5f83c7e97ade126f5c70b1804024292b764a816c2810654289fe0349b2
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.224]:001 >>> PWN.help
40
+ pwn[v0.5.225]: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.5@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.224]:001 >>> PWN.help
55
+ pwn[v0.5.225]: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.5@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.224]:001 >>> PWN.help
65
+ pwn[v0.5.225]: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:
@@ -27,7 +27,7 @@ module PWN
27
27
  # PWN::Plugins::DetectOS.arch
28
28
 
29
29
  public_class_method def self.arch
30
- RUBY_PLATFORM.split('-').first
30
+ OS.host_cpu
31
31
  rescue StandardError => e
32
32
  raise e
33
33
  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.5.224'
4
+ VERSION = '0.5.225'
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.224
4
+ version: 0.5.225
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.