pwn 0.5.415 → 0.5.416
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 +3 -3
- 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: 28095b87ac8e60d0caad499cc96ad6fbb79832dc4d009ed5b9a1f51ff081d755
|
4
|
+
data.tar.gz: 4b3d0a573e840033f90496ba11244e3d8b3ef6f3ec08e5ff39baaaed3e4f6f3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58115b0a7db3baef39deecb8fd486a8a5b9f4369b7f6cd778a9d6867ae6bb36f1010afc43c729498ee7191fc3c58e5fa4b3fd04b8aa1562f2a79d24880dbdebf
|
7
|
+
data.tar.gz: 91d45eb10e7b19b880b65064ca6c5d386f8630de865aacbc8941e8550c9608ed1e68d3e9c1e0bfd97f561469cea702ca725998d096352a28d103a3f79cccf55d
|
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.416]: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.416]: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.416]: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:
|
@@ -360,7 +360,7 @@ module PWN
|
|
360
360
|
# Supported Method Parameters::
|
361
361
|
# json_sitemap = PWN::Plugins::BurpSuite.get_sitemap(
|
362
362
|
# burp_obj: 'required - burp_obj returned by #start method',
|
363
|
-
# keyword: 'optional - keyword to filter sitemap entries (default: nil)'
|
363
|
+
# keyword: 'optional - keyword to filter sitemap entries (default: nil)'
|
364
364
|
# )
|
365
365
|
|
366
366
|
public_class_method def self.get_sitemap(opts = {})
|
@@ -379,7 +379,7 @@ module PWN
|
|
379
379
|
sitemap_arr = JSON.parse(sitemap, symbolize_names: true)
|
380
380
|
|
381
381
|
if keyword
|
382
|
-
|
382
|
+
sitemap_arr = sitemap_arr.select do |site|
|
383
383
|
decoded_request = Base64.strict_decode64(site[:request])
|
384
384
|
decoded_request.include?(keyword)
|
385
385
|
end
|
@@ -1357,7 +1357,7 @@ module PWN
|
|
1357
1357
|
|
1358
1358
|
json_sitemap = #{self}.get_sitemap(
|
1359
1359
|
burp_obj: 'required - burp_obj returned by #start method',
|
1360
|
-
keyword: 'optional - keyword to filter sitemap results (default: nil)'
|
1360
|
+
keyword: 'optional - keyword to filter sitemap results (default: nil)'
|
1361
1361
|
)
|
1362
1362
|
|
1363
1363
|
json_sitemap = #{self}.add_to_sitemap(
|
data/lib/pwn/version.rb
CHANGED