pwn 0.5.21 → 0.5.23
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 +4 -4
- data/README.md +3 -3
- data/lib/pwn/plugins/assembly.rb +16 -6
- data/lib/pwn/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 891006d13f97eb099047b3596fef7232f66532b32431914990360d0d0274fa26
|
4
|
+
data.tar.gz: a426cafcccb59fbaf64a1d728b0e45a251dd713f9684aa894f8b56d2e34acde6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b71a807d4441bd2b3a94a76c02d80a6505e82a87ffe8f7469f1bd88f71a89e1dfc9220606765726dea68065c4532d40c016090aeb2aceaeae6b7ba0afc2891a4
|
7
|
+
data.tar.gz: c9d404cd2f07bdee5bdc6bda8f256d255997220dfc584dc5ca559b794b24f90104bec3e138cf71d49d983015a17b81b3bc2a038d72c929c361c07673ffb08e9f
|
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.
|
40
|
+
pwn[v0.5.23]:001 >>> PWN.help
|
41
41
|
```
|
42
42
|
|
43
43
|
[](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.
|
55
|
+
pwn[v0.5.23]: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.
|
65
|
+
pwn[v0.5.23]: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:
|
data/lib/pwn/plugins/assembly.rb
CHANGED
@@ -8,15 +8,19 @@ module PWN
|
|
8
8
|
module Assembly
|
9
9
|
# Supported Method Parameters::
|
10
10
|
# PWN::Plugins::Assembly.opcodes_to_asm(
|
11
|
-
# opcodes: 'required - hex escaped opcode(s) (e.g. "\x90\x90\x90")'
|
11
|
+
# opcodes: 'required - hex escaped opcode(s) (e.g. "\x90\x90\x90")',
|
12
|
+
# arch: 'optional - objdump -i architecture (defaults to i386)'
|
12
13
|
# )
|
13
14
|
|
14
15
|
public_class_method def self.opcodes_to_asm(opts = {})
|
15
16
|
opcodes = opts[:opcodes]
|
17
|
+
arch = opts[:arch] || 'i386'
|
16
18
|
|
17
19
|
opcodes_tmp = Tempfile.new('pwn_opcodes')
|
18
20
|
File.binwrite(opcodes_tmp.path, opcodes)
|
19
|
-
|
21
|
+
# TODO: Implement support for other architectures
|
22
|
+
# for both 32bit and 64bit
|
23
|
+
`objdump --disassemble-all --target binary --architecture #{arch} #{opcodes_tmp.path}`
|
20
24
|
rescue StandardError => e
|
21
25
|
raise e
|
22
26
|
ensure
|
@@ -25,11 +29,13 @@ module PWN
|
|
25
29
|
|
26
30
|
# Supported Method Parameters::
|
27
31
|
# PWN::Plugins::Assembly.asm_to_opcodes(
|
28
|
-
# asm: 'required - assembly instruction(s) (e.g. 'nop\nnop\nnop\njmp rsp\n)'
|
32
|
+
# asm: 'required - assembly instruction(s) (e.g. 'nop\nnop\nnop\njmp rsp\n)',
|
33
|
+
# arch: 'optional - objdump -i architecture (defaults to i386)'
|
29
34
|
# )
|
30
35
|
|
31
36
|
public_class_method def self.asm_to_opcodes(opts = {})
|
32
37
|
asm = opts[:asm]
|
38
|
+
arch = opts[:arch] || 'i386'
|
33
39
|
|
34
40
|
asm_code = ".global _start\n_start:\n#{asm}"
|
35
41
|
|
@@ -38,8 +44,10 @@ module PWN
|
|
38
44
|
asm_tmp.close
|
39
45
|
|
40
46
|
asm_tmp_o = "#{asm_tmp.path}.o"
|
47
|
+
# TODO: Implement support for other architectures
|
48
|
+
# for both 32bit and 64bit
|
41
49
|
system('as', '-o', asm_tmp_o, asm_tmp.path)
|
42
|
-
`objdump -
|
50
|
+
`objdump --disassemble-all #{asm_tmp.path}.o`
|
43
51
|
rescue StandardError => e
|
44
52
|
raise e
|
45
53
|
ensure
|
@@ -60,11 +68,13 @@ module PWN
|
|
60
68
|
public_class_method def self.help
|
61
69
|
puts "USAGE:
|
62
70
|
#{self}.opcodes_to_asm(
|
63
|
-
opcodes: 'required - hex escaped opcode(s) (e.g. \"\\x90\\x90\\x90\")'
|
71
|
+
opcodes: 'required - hex escaped opcode(s) (e.g. \"\\x90\\x90\\x90\")',
|
72
|
+
arch: 'optional - objdump -i architecture (defaults to i386)'
|
64
73
|
)
|
65
74
|
|
66
75
|
#{self}.asm_to_opcodes(
|
67
|
-
asm: 'required - assembly instruction(s) (e.g. 'jmp rsp')'
|
76
|
+
asm: 'required - assembly instruction(s) (e.g. 'jmp rsp')',
|
77
|
+
arch: 'optional - objdump -i architecture (defaults to i386)'
|
68
78
|
)
|
69
79
|
|
70
80
|
#{self}.authors
|
data/lib/pwn/version.rb
CHANGED