pwn 0.5.246 → 0.5.247
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: 8730f2eed3279325677174b1ee3780c3d2e60bc8841c749c62b3266e695f32f8
|
4
|
+
data.tar.gz: 6562dd958339c08e6150e1d5931d069b840c088e23c8be5984eed161948c1aa4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1bae9d38b21f14ac22c5b4abbdc19939c29e7b98fa3760f3334f448563b79d6fe61a6dd922837bdf25dd69d0e1aefda38f194f05eea0e8f6e457adda0dee137f
|
7
|
+
data.tar.gz: 7bc8bf0892468cebaefda769818167029f65e082c786d3fe33afc94a89565e5c930c59545d7cbb53377e24d28334b8c68b9efa5c3977219dd1a5f0ce2387613e
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2025-
|
3
|
+
# on 2025-02-15 22:50:15 UTC using RuboCop version 1.72.1.
|
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
|
@@ -30,7 +30,18 @@ Lint/NestedMethodDefinition:
|
|
30
30
|
Exclude:
|
31
31
|
- 'lib/pwn/plugins/repl.rb'
|
32
32
|
|
33
|
-
# Offense count:
|
33
|
+
# Offense count: 8
|
34
|
+
# This cop supports safe autocorrection (--autocorrect).
|
35
|
+
Lint/RedundantTypeConversion:
|
36
|
+
Exclude:
|
37
|
+
- 'bin/pwn_xss_dom_vectors'
|
38
|
+
- 'lib/pwn/plugins/beef.rb'
|
39
|
+
- 'lib/pwn/plugins/defect_dojo.rb'
|
40
|
+
- 'lib/pwn/plugins/hacker_one.rb'
|
41
|
+
- 'lib/pwn/plugins/jenkins.rb'
|
42
|
+
- 'lib/pwn/plugins/repl.rb'
|
43
|
+
|
44
|
+
# Offense count: 320
|
34
45
|
# This cop supports safe autocorrection (--autocorrect).
|
35
46
|
# Configuration parameters: AutoCorrect.
|
36
47
|
Lint/UselessAssignment:
|
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.247]:001 >>> PWN.help
|
41
41
|
```
|
42
42
|
|
43
43
|
[](https://youtu.be/G7iLUY4FzsI)
|
@@ -52,7 +52,7 @@ $ rvm use ruby-3.4.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.247]: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.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.247]: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