pwn 0.5.537 → 0.5.538
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/.rubocop_todo.yml +13 -2
- data/README.md +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: d9ce21b1d507091646c3ec3f4099bf500fc60c2501864e8b41ee5fe5ac7e9d6a
|
|
4
|
+
data.tar.gz: 9bbef9c3e5daef59c2b471d6598f9b6815a1437d825870c9a0103830653176a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8293c431567a0b0bd78a1394950a89f8ff5a444c00f553c24f9e9452262d5b78f76302da7afba9abc11626d1a9f0a18cde9f261eba87ba4db95b4f200119b81c
|
|
7
|
+
data.tar.gz: '03961baac23048d18dea46f56206e316990f5d7bdfcc2206b2a2761e194a7535ee6ef1a0e92b635c66908c3f50df5ed9bef865109a81f05d8a8ec6ce51251791'
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on 2026-
|
|
3
|
+
# on 2026-02-27 17:49:20 UTC using RuboCop version 1.85.0.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
@@ -109,6 +109,11 @@ Style/ExplicitBlockArgument:
|
|
|
109
109
|
Exclude:
|
|
110
110
|
- 'lib/pwn/plugins/nmap_it.rb'
|
|
111
111
|
|
|
112
|
+
# Offense count: 2
|
|
113
|
+
Style/FileOpen:
|
|
114
|
+
Exclude:
|
|
115
|
+
- 'lib/pwn/plugins/log.rb'
|
|
116
|
+
|
|
112
117
|
# Offense count: 2
|
|
113
118
|
# This cop supports safe autocorrection (--autocorrect).
|
|
114
119
|
# Configuration parameters: MinBodyLength, AllowConsecutiveConditionals.
|
|
@@ -154,11 +159,17 @@ Style/RedundantBegin:
|
|
|
154
159
|
# Offense count: 94
|
|
155
160
|
# This cop supports safe autocorrection (--autocorrect).
|
|
156
161
|
# Configuration parameters: AllowedMethods.
|
|
157
|
-
# AllowedMethods: nonzero?
|
|
162
|
+
# AllowedMethods: infinite?, nonzero?
|
|
158
163
|
Style/RedundantCondition:
|
|
159
164
|
Exclude:
|
|
160
165
|
- 'lib/pwn/plugins/packet.rb'
|
|
161
166
|
|
|
167
|
+
# Offense count: 1
|
|
168
|
+
# This cop supports safe autocorrection (--autocorrect).
|
|
169
|
+
Style/RedundantParentheses:
|
|
170
|
+
Exclude:
|
|
171
|
+
- 'lib/pwn/plugins/xxd.rb'
|
|
172
|
+
|
|
162
173
|
# Offense count: 2
|
|
163
174
|
# This cop supports safe autocorrection (--autocorrect).
|
|
164
175
|
Style/RedundantSelf:
|
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.538]:001 >>> PWN.help
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
[](https://youtu.be/G7iLUY4FzsI)
|
|
@@ -52,7 +52,7 @@ $ rvm use ruby-4.0.1@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.538]: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-4.0.1@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.538]: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/version.rb
CHANGED