pwn 0.5.392 → 0.5.393

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: f5187c42fe3f9cc6cafcd3663179230111276cc2305f0c24ed1f7070be21c319
4
- data.tar.gz: cf9d12113a23120d0e39ccc840cd23c77330829a7d51af3f2601504499b20468
3
+ metadata.gz: a8f2b66b63fc352c09d9be39170e8240c4ddefcd6957eeb6ed8266c09efe904f
4
+ data.tar.gz: 99311970b372085cc972ce18740868be356f906334193757bae88de42373d682
5
5
  SHA512:
6
- metadata.gz: 6605150902b9eb40072585b38674868a4ec507c1b938a4a9a8f63799e5bb4f959238dbeb66dbb4a1a1c2860e4a5ad1396edf59ac0ab130fb3d17eb11f0c115b3
7
- data.tar.gz: 91e3fefae884f51df19571dac3f1bd0e3a767ecd6f335d39de9823554583f715bb2b05679e3fef45c70d62166c8aa56aab95cbe6a9f75d48b491f92f9b8e568b
6
+ metadata.gz: '0065870d881a5cba684562db8fda802c22098fa0e459a2f9870d659ab7f15d096ff7fcfda1945e648d9ccd06aee69005d8435df9b63c2a4277b25229b8fb7367'
7
+ data.tar.gz: ff035fe1150349cc5d3acdbd7f5eb7a641ce66c3da1f19147b835da243bab2fea6e7055c4291f309248ea8421864f231c96131d6daa47878aeec4aff642855dd
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.392]:001 >>> PWN.help
40
+ pwn[v0.5.393]: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.4@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.392]:001 >>> PWN.help
55
+ pwn[v0.5.393]: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.4@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.392]:001 >>> PWN.help
65
+ pwn[v0.5.393]: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:
@@ -130,8 +130,8 @@ module PWN
130
130
  var newScrollYHeight = Math.max(min_scroll_height, newWindowHeight - offset); // Your offset
131
131
  $('.dt-scroll-body').css('max-height', newScrollYHeight + 'px')
132
132
  table.columns.adjust().draw(false); // Adjust columns first, then redraw without data reload
133
- console.log('Window resized. New scrollY height: ' + newScrollYHeight + 'px');
134
133
  });
134
+
135
135
  </script>
136
136
  </body>
137
137
  </html>
@@ -243,7 +243,7 @@ module PWN
243
243
  // Calculate scrollY: Subtract an offset for non-table elements
244
244
  var offset = 325;
245
245
  var min_scroll_height = 50;
246
- var scrollYHeight = Math.max(min_scroll_height, windowHeight - offset); // Ensure minimum of 600px
246
+ var scrollYHeight = Math.max(min_scroll_height, windowHeight - offset);
247
247
  )
248
248
  rescue StandardError => e
249
249
  raise e
@@ -318,6 +318,9 @@ module PWN
318
318
  });
319
319
 
320
320
  table.buttons().container().appendTo('#toggle_col_and_button_group');
321
+
322
+ // Update Smart Search Label with Example
323
+ $('.dt-search label').text('Smart Search (e.g., "password !secure"):').css({'font-weight': 'bold', color: '#B40404'});
321
324
  }
322
325
  });
323
326
 
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.392'
4
+ VERSION = '0.5.393'
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.392
4
+ version: 0.5.393
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.