pwn 0.4.995 → 0.4.996

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: ae602e512383cce909706ed97051ce4722de37fa71755db51eb3b8fae3d165a4
4
- data.tar.gz: 217136716efe82d5966df746e269d05d1bf5e0870fd459e0f1cf8e149c609bba
3
+ metadata.gz: c3f80997dd3c119faded4b20095334177b665ee9ea3bfb635c871da71e76a60f
4
+ data.tar.gz: 3e60827de4c62543149da6f2876e897b22e0733f981b8a161335b1d674b6808d
5
5
  SHA512:
6
- metadata.gz: 0de31dddfd05dca90867504fc8caed707033ddbfbb61c72e94742caaf8bc06dab4a205e39a43234261f3d5155295e954b22a03eb303f11a7096db8efac52e989
7
- data.tar.gz: b5e874b009d937cd2c7520dc272a03ed421613b6ec9e008cca6ba7299ee7a6d0e3b492fdfc91e13d4318d4b29e5e75972072dabd9c65d5aeacb634a9d5bb0e25
6
+ metadata.gz: c6aff2ee2aa115240881fee61c23c4b3cfbc0e43fca667bc014c1d8c9e70714341135b3823e8388208537d4297c8e06440e7e39c8cf30a2cd2219266a717df5a
7
+ data.tar.gz: 1f6c722118317f68827bfb398bde69c54fc60c2d61e22efffb3245f5aa5614e474cbab3a59ed0ce639bff958536978e117283a0c993649ebebf4454fae9b1a0b
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.995]:001 >>> PWN.help
40
+ pwn[v0.4.996]: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.995]:001 >>> PWN.help
55
+ pwn[v0.4.996]: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.995]:001 >>> PWN.help
65
+ pwn[v0.4.996]: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:
@@ -33,10 +33,29 @@ module PWN
33
33
  io.write(fmt_row)
34
34
 
35
35
  if hashed
36
- hashed_hexdump[fmt_row.split.first.delete(':').to_s] = {
37
- hex: fmt_row.split[1..8],
38
- ascii: fmt_row.split[9..-1].join
36
+ # TODO: Fix NoMethodError: undefined method `join' for nil
37
+ # when fmt_row looks like:
38
+ # 000f4b20: 0000 0000 0000 0000 ........
39
+ # fmt_row_col_len = fmt_row.split.length
40
+ # if fmt_row_col_len > 10
41
+ # fmt_row.split[9..-1].join
42
+ # end
43
+ this_key = fmt_row.split.first.delete(':').to_s
44
+ hashed_hexdump[this_key] = {
45
+ hex: fmt_row.split[1..-2],
46
+ ascii: fmt_row.split[-1]
39
47
  }
48
+
49
+ hhh_len = hashed_hexdump[this_key][:hex].length
50
+ # TODO: address last line if the hashed_hexdump[this_key][:hex] length is less than 8
51
+ if hhh_len > 8
52
+ mov_to_ascii = (hhh_len - 8) * -1
53
+ last_ascii = hashed_hexdump[this_key][:ascii]
54
+ hashed_hexdump[this_key][:hex][-1] = "#{hashed_hexdump[this_key][:hex].last}\s"
55
+ hashed_hexdump[this_key][:hex][8] = "\s#{hashed_hexdump[this_key][:hex][8]}"
56
+ hashed_hexdump[this_key][:ascii] = "#{hashed_hexdump[this_key][:hex][mov_to_ascii..-1].join(' ')}#{last_ascii}"
57
+ hashed_hexdump[this_key][:hex] = hashed_hexdump[this_key][:hex][0..7]
58
+ end
40
59
  end
41
60
  end
42
61
 
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.995'
4
+ VERSION = '0.4.996'
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.995
4
+ version: 0.4.996
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.