pwn 0.5.5 → 0.5.6
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/bin/pwn_bdba_scan +3 -4
- 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: db25f7826cf641ff6ee9a08c514eb818ca86a4d240b27673f41f9405a19dd5aa
|
4
|
+
data.tar.gz: fc3ed02c0b71b85c2de7ed372f039a572bad16dbf8fba58e51be1ea1bb2481ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93763a61f4ad91827c6972f83c49ee6e7b88adf18911d190fa5a3dcdcb60d5b9195b9e5a37b4e5a9236d449e626622dd68d4b64860093db490149478e28e17f4
|
7
|
+
data.tar.gz: 55280eca8607553bbdfd0c42f1d3f5b8ae93a319cf688c2515e58ffd7e2842f96b6fea98e1e2bc1b10dfc0ce007278cab64c6eb3a125ee1fb9301ba03cbef5de
|
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.6]: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.6]: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.6]: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/bin/pwn_bdba_scan
CHANGED
@@ -146,10 +146,9 @@ begin
|
|
146
146
|
find_product_attempts = scan_attempts
|
147
147
|
print 'Looking for Product in Apps by Group...'
|
148
148
|
loop do
|
149
|
-
#
|
150
|
-
#
|
151
|
-
|
152
|
-
target_basename = CGI.unescape_uri_component(File.basename(target_file))
|
149
|
+
# target_basename = CGI.unescape_uri_component(File.basename(target_file))
|
150
|
+
# ^ Synopsis unescapes it for us.
|
151
|
+
target_basename = File.basename(target_file)
|
153
152
|
|
154
153
|
find_product = scan_progress_resp[:products].find { |p| p[:name] == target_basename }
|
155
154
|
|
data/lib/pwn/version.rb
CHANGED