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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc91b4652f944cf2a6086038f0a1516334a49322c17c9727b63d71d817ad43f1
4
- data.tar.gz: 14cb1decc4b1ba6cdd6e1c0eb084fb1a7eb8c962faf399920572a8aaead6dc8a
3
+ metadata.gz: d9ce21b1d507091646c3ec3f4099bf500fc60c2501864e8b41ee5fe5ac7e9d6a
4
+ data.tar.gz: 9bbef9c3e5daef59c2b471d6598f9b6815a1437d825870c9a0103830653176a4
5
5
  SHA512:
6
- metadata.gz: e92b1fdf6ba84bec99fbb6f18c3c36e3430111a2da186dcf2dcc2965a32113b8048dfcf31b6360d66b0d6f2d6011ff1b7b6710e5f5f70d82450d39bab71e7441
7
- data.tar.gz: b567648e876640c3117463b76ac970c0bba6dd61246a501823f62eecf8d338a529806cdbe1942187eb13abb3602d15c9b11b977c4b03436c4d2778482a3ae6c7
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-01-26 19:15:57 UTC using RuboCop version 1.82.1.
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.537]:001 >>> PWN.help
40
+ pwn[v0.5.538]:001 >>> PWN.help
41
41
  ```
42
42
 
43
43
  [![Installing the pwn Security Automation Framework](https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png)](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.537]:001 >>> PWN.help
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.537]:001 >>> PWN.help
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PWN
4
- VERSION = '0.5.537'
4
+ VERSION = '0.5.538'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.537
4
+ version: 0.5.538
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.