pwn 0.5.413 → 0.5.414
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 +1 -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: 798c5274897984458607e30a2f4c84baf97d89b65c8bf30f0b7165f57f271978
|
4
|
+
data.tar.gz: 226ca5a870619a8a2049a1164e67f889934177cd1b890f86ca22f8091b4cdd5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f124230605ee42b8aa7525155f8fc8ca40023f68a7aa1c22cbb053a17c8e1a48da538df036d3387822ed81159b6858fd024b105a8556a797ee7b7630d58d453
|
7
|
+
data.tar.gz: e673939907707ac587b5e9625d5588b174a08671b321fa33d11885b557f67b96139fb9a388ba6a0b102fd2933fdcbfcd8acd728910748a866a2ca5ccd1bb5174
|
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.414]: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.414]: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.414]: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:
|
@@ -370,7 +370,6 @@ module PWN
|
|
370
370
|
keyword = opts[:keyword]
|
371
371
|
|
372
372
|
rest_call = "http://#{mitm_rest_api}/sitemap"
|
373
|
-
rest_call = "#{rest_call}/#{base64_encoded_target_url}" if target_url
|
374
373
|
|
375
374
|
sitemap = rest_browser.get(
|
376
375
|
rest_call,
|
@@ -386,7 +385,7 @@ module PWN
|
|
386
385
|
end
|
387
386
|
end
|
388
387
|
|
389
|
-
sitemap_arr
|
388
|
+
sitemap_arr.uniq
|
390
389
|
rescue StandardError => e
|
391
390
|
stop(burp_obj: burp_obj) unless burp_obj.nil?
|
392
391
|
raise e
|
data/lib/pwn/version.rb
CHANGED