pwn 0.5.31 → 0.5.33

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: b4aaec5842b8e4f45064030d9bf15e4b95e9a2608da256391203957dcd2156e2
4
- data.tar.gz: f96a7d795fee71f0a66039d7e357c5d12e52367adae529fa5c4f2cb09ab1b35c
3
+ metadata.gz: b53951502ff747ce5dcb1b0dea5ffdfc2c48aaad64af272c1e49091c26a27c23
4
+ data.tar.gz: 1f7e8b51e925ffd5df4a7cea3cab15817c2bfebdbf79c538c2408cfe844c98e8
5
5
  SHA512:
6
- metadata.gz: 1aab91b51df53af22edfe396c4dc95d4e4c6045113dd5ba9ed777c6c3d5d8fa929f924ea0cc6271cfb064ed1bc102d816018a3bb2b714f93ac1e6c68aad35ac1
7
- data.tar.gz: 6dac0146d36fec6187103d1ed8340507c5ebe1c80f0ef26a54ac96d51888e25cb37901862e2539c03ddc51cc19be79f5f0e9332b5a2c87e9e4ab3aa84e976c07
6
+ metadata.gz: 64602514e14c0e6984499480911de341caeca50804b27e637d9dd15310138bbfc2b2d9861b5a42bcf3e71f792f9119730b54e9ad1e7ff63b665e614c5057b795
7
+ data.tar.gz: 12c4215d65ddfc8c607015003fa8fc156157892666e3145034cf61f29c7dc9f3a3fee000d9c7e48bb505b51c5b1e3db053deced00a085d48f80fe359320ec383
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.31]:001 >>> PWN.help
40
+ pwn[v0.5.33]: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.31]:001 >>> PWN.help
55
+ pwn[v0.5.33]: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.31]:001 >>> PWN.help
65
+ pwn[v0.5.33]: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:
@@ -19,7 +19,9 @@ module PWN
19
19
  arch = opts[:arch] ||= PWN::Plugins::DetectOS.arch
20
20
  endian = opts[:endian] ||= :little
21
21
 
22
- raise "ERROR: opcodes parameter is required." if opcodes.nil?
22
+ pwn_asm_tmp = Tempfile.new('pwn_asm')
23
+
24
+ raise 'ERROR: opcodes parameter is required.' if opcodes.nil?
23
25
 
24
26
  case arch
25
27
  when 'amd64', 'i386', 'i686', 'x86', 'x86_64'
@@ -32,16 +34,16 @@ module PWN
32
34
  raise "Unsupported architecture: #{arch}"
33
35
  end
34
36
 
37
+ # TOOD: Fix this
35
38
  # If opcodes appear to be '"90", "90", "90"' then convert to "\x90\x90\x90"
36
- opcodes = opcodes.split(',').map { |x| format('\x%02x', x.gsub('"', '').to_i(16)) }.join if opcodes.include?('"') && opcodes.include?(',')
39
+ # opcodes = opcodes.split(',').map { |x| format('\x%02x', x.gsub('"', '').to_i(16)) }.join if opcodes.include?('"') && opcodes.include?(',')
37
40
 
38
41
  # If opcodes appear to be '90 90 90' then convert to "\x90\x90\x90"
39
- opcodes = opcodes.split.map { |x| format('\x%02x', x.to_i(16)) }.join if opcodes.include?(' ')
42
+ # opcodes = opcodes.split.map { |x| format('\x%02x', x.to_i(16)) }.join if opcodes.include?(' ')
40
43
 
41
44
  # If opcodes appear to be '909090' then convert to "\x90\x90\x90"
42
- opcodes = opcodes.chars.each_slice(2).map(&:join).map { |x| format('\x%02x', x.to_i(16)) }.join if opcodes.length.even?
45
+ # opcodes = opcodes.chars.each_slice(2).map(&:join).map { |x| format('\x%02x', x.to_i(16)) }.join if opcodes.length.even?
43
46
 
44
- pwn_asm_tmp = Tempfile.new('pwn_asm')
45
47
  File.binwrite(pwn_asm_tmp.path, opcodes)
46
48
  `objdump -D -b binary -m #{arch} -M intel --endian #{endian} #{pwn_asm_tmp.path}`
47
49
  rescue StandardError => e
@@ -63,7 +65,7 @@ module PWN
63
65
  arch = opts[:arch] ||= PWN::Plugins::DetectOS.arch
64
66
  endian = opts[:endian] ||= :little
65
67
 
66
- raise "ERROR: asm parameter is required." if asm.nil?
68
+ raise 'ERROR: asm parameter is required.' if asm.nil?
67
69
 
68
70
  case arch
69
71
  when 'i386', 'i686', 'x86'
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.31'
4
+ VERSION = '0.5.33'
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.31
4
+ version: 0.5.33
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.