pwn 0.5.25 → 0.5.26

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: dadd39787409b581c7e107e807d9dc488d9ff6f030b3f8267cf97181c076ea94
4
- data.tar.gz: cbf8770e949609afa29736c2035aa0d272e2a64c728630a46771767e5c13c2c3
3
+ metadata.gz: ccfdeec6aac7c06f9ed930595c5f0ab6284cd702920135d02b39353c38f97289
4
+ data.tar.gz: fb101f03af0551b32c84fde42b32a999ff0b7caed272c59d1d493905ab729f76
5
5
  SHA512:
6
- metadata.gz: 9e74854f00d56728fd72baa1129d863e15577c93974b1fc471a57fe81b923badba073f915eb9fe25b3dfa643669166f65df113f5d9015a5698eb2e097ad6fec8
7
- data.tar.gz: cfd9e46e1d2dfd58b40d42f0e85807dc37bf204ca642e1533363f2bb816ba792db26f594fbf12eb5251b54e4bade76d1e0eb6f6d4f91e1b4c219dd13183c3ccb
6
+ metadata.gz: 4db3d35799d8c8c4dd7c426cf35d0a2100a0d78d93071501b6ba42b9c456ab7adbb1211bf796460bcde6bf27ca7b844eff428dba9599a446b2ca7879c1e56b09
7
+ data.tar.gz: d618f1e6546d935183dd9a33c3029dc12eb0783f04e07c84748d018b13cb4c3d2a28897225489e4988dc71b869583d18c0f407c0d4f28628ea170542e30a4454
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.25]:001 >>> PWN.help
40
+ pwn[v0.5.26]: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.5.25]:001 >>> PWN.help
55
+ pwn[v0.5.26]: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.5.25]:001 >>> PWN.help
65
+ pwn[v0.5.26]: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:
@@ -20,13 +20,13 @@ module PWN
20
20
  endian = opts[:endian] ||= :little
21
21
 
22
22
  case arch
23
- when 'i386'
23
+ when 'i386', 'i686', 'x86'
24
24
  arch_obj = Metasm::Ia32.new(endian)
25
25
  when 'amd64', 'x86_64'
26
26
  arch_obj = Metasm::X86_64.new(endian)
27
- when 'armv71'
27
+ when 'armv4l', 'armv4b','armv5l', 'armv5b', 'armv6l', 'armv6b', 'armv7b', 'armv7l', 'arm', 'armhf'
28
28
  arch_obj = Metasm::ARM.new(endian)
29
- when 'aarch64'
29
+ when 'aarch64', 'arm64'
30
30
  arch_obj = Metasm::ARM64.new(endian)
31
31
  else
32
32
  raise "Unsupported architecture: #{arch}"
@@ -50,13 +50,13 @@ module PWN
50
50
  endian = opts[:endian] ||= :little
51
51
 
52
52
  case arch
53
- when 'i386'
53
+ when 'i386', 'i686', 'x86'
54
54
  arch_obj = Metasm::Ia32.new(endian)
55
55
  when 'amd64', 'x86_64'
56
56
  arch_obj = Metasm::X86_64.new(endian)
57
- when 'armv71'
57
+ when 'armv4l', 'armv4b','armv5l', 'armv5b', 'armv6l', 'armv6b', 'armv7b', 'armv7l', 'arm', 'armhf'
58
58
  arch_obj = Metasm::ARM.new(endian)
59
- when 'aarch64'
59
+ when 'aarch64', 'arm64'
60
60
  arch_obj = Metasm::ARM64.new(endian)
61
61
  else
62
62
  raise "Unsupported architecture: #{arch}"
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.25'
4
+ VERSION = '0.5.26'
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.25
4
+ version: 0.5.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.