pwn 0.5.246 → 0.5.248

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: 26c6cdd49740e6d87395257d2c7cba5d3d5ff292dda6a40f3fc098fc7312eaf7
4
- data.tar.gz: fd909732d98f4bd2a5f9f9c9c7b2c5bee8e47aa43de3b223418536faeb75cf32
3
+ metadata.gz: dc498410e4196bc3413ee83f0f5271b759b0bdf561a768bf6de49d2b0e0d5293
4
+ data.tar.gz: ebfdd79486281badb679e7c3b16770066419176fdf4f94b0254acb51e74e7c78
5
5
  SHA512:
6
- metadata.gz: a17855978aa9ccf18993146411357289dbe7426a68a181655f0d4fdf56c11ffafb1930d7f8bb2b58aa248ae105f50baf7439f831bc6a76eb5992141687d0420a
7
- data.tar.gz: 79bd9a3082ecff473052d405500ff8df37f3a74a0cd93a095eaaac7db32acede8e8aca869a7b9be6bef835120660407746ca30acc40e892ecbe7655464b40e7a
6
+ metadata.gz: f8de79fd5b92e6d26ab8d4c3199105f7e94746698782577ed0f180ab08f90f262f0d20f45e63b23920a9af06e0a024411a24c2511c496df7ac3e02ec07a59a25
7
+ data.tar.gz: c0dc00da4b55ab0fd25c8075812cfb5e9cb03790339c833e078b5d550dc51f037c6258b3ce1ae7c5c08dc1d1c330f3573d2faec31ab91e6205e14ea544c248f5
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-01-14 18:50:21 UTC using RuboCop version 1.70.0.
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: 316
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/Gemfile CHANGED
@@ -47,7 +47,7 @@ gem 'jwt', '2.10.1'
47
47
  gem 'libusb', '0.7.2'
48
48
  gem 'luhn', '1.0.2'
49
49
  gem 'mail', '2.8.1'
50
- gem 'meshtastic', '0.0.110'
50
+ gem 'meshtastic', '0.0.115'
51
51
  gem 'metasm', '1.0.5'
52
52
  gem 'mongo', '2.21.0'
53
53
  gem 'msfrpc-client', '1.1.2'
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.246]:001 >>> PWN.help
40
+ pwn[v0.5.248]: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-3.4.1@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.246]:001 >>> PWN.help
55
+ pwn[v0.5.248]: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.246]:001 >>> PWN.help
65
+ pwn[v0.5.248]: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.246'
4
+ VERSION = '0.5.248'
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.246
4
+ version: 0.5.248
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-15 00:00:00.000000000 Z
10
+ date: 2025-02-16 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: activesupport
@@ -491,14 +491,14 @@ dependencies:
491
491
  requirements:
492
492
  - - '='
493
493
  - !ruby/object:Gem::Version
494
- version: 0.0.110
494
+ version: 0.0.115
495
495
  type: :runtime
496
496
  prerelease: false
497
497
  version_requirements: !ruby/object:Gem::Requirement
498
498
  requirements:
499
499
  - - '='
500
500
  - !ruby/object:Gem::Version
501
- version: 0.0.110
501
+ version: 0.0.115
502
502
  - !ruby/object:Gem::Dependency
503
503
  name: metasm
504
504
  requirement: !ruby/object:Gem::Requirement