pwn 0.5.33 → 0.5.34

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b53951502ff747ce5dcb1b0dea5ffdfc2c48aaad64af272c1e49091c26a27c23
4
- data.tar.gz: 1f7e8b51e925ffd5df4a7cea3cab15817c2bfebdbf79c538c2408cfe844c98e8
3
+ metadata.gz: f879ebdd5ad454c5a57dab480906a255c1a1c9551c33895b346417f26b320784
4
+ data.tar.gz: e78218a0680ed4982aad8a13e5368bfac5fc5b04b548a1bd2410389ce2945c0a
5
5
  SHA512:
6
- metadata.gz: 64602514e14c0e6984499480911de341caeca50804b27e637d9dd15310138bbfc2b2d9861b5a42bcf3e71f792f9119730b54e9ad1e7ff63b665e614c5057b795
7
- data.tar.gz: 12c4215d65ddfc8c607015003fa8fc156157892666e3145034cf61f29c7dc9f3a3fee000d9c7e48bb505b51c5b1e3db053deced00a085d48f80fe359320ec383
6
+ metadata.gz: d94948a701a5716491c3c058168c34ffd16038e07c048a4284f4471c47a00b8a79122c4562e47a068ff249c24fbcd4575bc8df7b81518c589c9648ca2f8d6c03
7
+ data.tar.gz: 1b9d36a3f3ee1f4a54a7cb7cce7a40ecbd47eff55593dd38f479604d7ed21c8bc8a17e4fcdd4db1f252b87052d985eac468d31420a14b51df0eb6fae47c7e191
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.33]:001 >>> PWN.help
40
+ pwn[v0.5.34]: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.33]:001 >>> PWN.help
55
+ pwn[v0.5.34]: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.33]:001 >>> PWN.help
65
+ pwn[v0.5.34]: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:
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'metasm'
4
- require 'tempfile'
5
4
 
6
5
  module PWN
7
6
  module Plugins
@@ -19,17 +18,17 @@ module PWN
19
18
  arch = opts[:arch] ||= PWN::Plugins::DetectOS.arch
20
19
  endian = opts[:endian] ||= :little
21
20
 
22
- pwn_asm_tmp = Tempfile.new('pwn_asm')
23
-
24
21
  raise 'ERROR: opcodes parameter is required.' if opcodes.nil?
25
22
 
26
23
  case arch
27
- when 'amd64', 'i386', 'i686', 'x86', 'x86_64'
28
- arch = 'i386'
24
+ when 'i386', 'i686', 'x86'
25
+ arch_obj = Metasm::Ia32.new(endian)
26
+ when 'amd64', 'x86_64'
27
+ arch_obj = Metasm::X86_64.new(endian)
29
28
  when 'armv4l', 'armv4b', 'armv5l', 'armv5b', 'armv6l', 'armv6b', 'armv7b', 'armv7l', 'arm', 'armhf'
30
- arch = 'arm'
29
+ arch_obj = Metasm::ARM.new(endian)
31
30
  when 'aarch64', 'arm64'
32
- arch = 'aarch64'
31
+ arch_obj = Metasm::ARM64.new(endian)
33
32
  else
34
33
  raise "Unsupported architecture: #{arch}"
35
34
  end
@@ -44,13 +43,9 @@ module PWN
44
43
  # If opcodes appear to be '909090' then convert to "\x90\x90\x90"
45
44
  # opcodes = opcodes.chars.each_slice(2).map(&:join).map { |x| format('\x%02x', x.to_i(16)) }.join if opcodes.length.even?
46
45
 
47
- File.binwrite(pwn_asm_tmp.path, opcodes)
48
- `objdump -D -b binary -m #{arch} -M intel --endian #{endian} #{pwn_asm_tmp.path}`
46
+ Metasm::Shellcode.disassemble(arch_obj, opcodes).to_s
49
47
  rescue StandardError => e
50
48
  raise e
51
- ensure
52
- tmp_file = [pwn_asm_tmp.path]
53
- FileUtils.rm_f(tmp_file) if File.exist?(pwn_asm_tmp.path)
54
49
  end
55
50
 
56
51
  # Supported Method Parameters::
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.33'
4
+ VERSION = '0.5.34'
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.33
4
+ version: 0.5.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.