pwn 0.5.319 → 0.5.320
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/burp_suite.rb +2 -2
- 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: 3345d8d2650b34e2e1f18b2bb66d02fc9cbd24805bb115fb395b161c5a0133e7
|
4
|
+
data.tar.gz: a2dbe1818c8bba10dc03aec5d518191fc001d1803787c643e7a403853e9ff2bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd4c499818137e8cfb71c8633199367cb33653b1bf284ef483f5ac5c2e75d4a5f43051072eaed10c90350a43b23ffab3941b300cdb544494aa6df4a81763ea14
|
7
|
+
data.tar.gz: c69355e3035a7d3833a12f1a3d0f4ea3c40420e53c3e000f0a6aa51889216933b190060aec48529d678b7790ee2d97ad937f79341ef13f562cabe74bc58a9952
|
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.320]:001 >>> PWN.help
|
41
41
|
```
|
42
42
|
|
43
43
|
[](https://youtu.be/G7iLUY4FzsI)
|
@@ -52,7 +52,7 @@ $ rvm use ruby-3.4.4@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.320]: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.4.4@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.320]: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:
|
@@ -202,9 +202,9 @@ module PWN
|
|
202
202
|
]
|
203
203
|
|
204
204
|
if implicit_http_ports_arr.include?(json_port)
|
205
|
-
json_uri = "#{json_protocol}
|
205
|
+
json_uri = "#{json_protocol}://#{json_host}#{json_path}"
|
206
206
|
else
|
207
|
-
json_uri = "#{json_protocol}
|
207
|
+
json_uri = "#{json_protocol}://#{json_host}:#{json_port}#{json_path}"
|
208
208
|
end
|
209
209
|
|
210
210
|
next unless json_host == target_domain_name && json_port == target_port
|
data/lib/pwn/version.rb
CHANGED