pwn 0.4.988 → 0.4.989

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: e254f6c5e7e75df396901615062fd08638a440453d9ea63d2fe7315e247ba0af
4
- data.tar.gz: 5261053477ed401cd1df1bfe15ecf288801df9032efc32ab256f2eb9a6108c83
3
+ metadata.gz: 777085cdccbf8bf547432054c347e5af91a5be1c42b9fd5582cbf582119b5838
4
+ data.tar.gz: f2dc8116df0f4719f9a521d1325a1a985bba1ab367ba32c83d1e887aa529e9b5
5
5
  SHA512:
6
- metadata.gz: 2b8eb8e1316617a5aad0d6fb18947d5f946bb8a4f84452b2c7b143a44bd9f2a7b491598051b8341cdbbd979c588e7206a771ced91234a17a8a3cdef473501f06
7
- data.tar.gz: 90c90b0613bce76a5659f006fe49b652bf64f07ce05d5e0227b96460859878c7050c4abdabb828c10d496f2251e55f078e19087c8a1294369b1e0d74ebf7ac38
6
+ metadata.gz: b258e6f31978ba4c8d2c5ca350253112e9c0cdd99dd370161689b614d9298dc3ced7e2006f6718a1ef59d4e3c8921e6c585a30f8242d2f0f0568fa7f669d3980
7
+ data.tar.gz: 81bedcabe4f21448649791b38149a89c2528ee14af8b1192e6c7304acc564b176bb34af1a96e1560419a85b7cb92e6ced002360029c3678e77608e0caabcd227
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.4.988]:001 >>> PWN.help
40
+ pwn[v0.4.989]: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.0@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.988]:001 >>> PWN.help
55
+ pwn[v0.4.989]: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.0@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.4.988]:001 >>> PWN.help
65
+ pwn[v0.4.989]: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:
@@ -50,7 +50,7 @@ module PWN
50
50
 
51
51
  # TODO: fix this block as it is not working as expected
52
52
  binary_data = hexdump.lines.map do |line|
53
- line.split('')[10..-19].join.split.map do |hex|
53
+ line.chars[10..-19].join.split.map do |hex|
54
54
  [hex].pack('H*')
55
55
  end.join
56
56
  end.join
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.988'
4
+ VERSION = '0.4.989'
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.988
4
+ version: 0.4.989
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.