pwn 0.5.360 → 0.5.361

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: eeee337e9a2c5177f741508eb5eef6f451bc40226122d5c7c4715bdb90c500e3
4
- data.tar.gz: d9b0ee1d04259d8178498ec800bb755c2197c4864ba016932e1d3a4515daf529
3
+ metadata.gz: e88078c5511bf73455ec0e180d74722ae21abde53eabeb9d7d6aa01f789aed0a
4
+ data.tar.gz: 1d5415ee2ab144edf5a2a31b95ced38d942bfc2e9d47608d09107158643eb723
5
5
  SHA512:
6
- metadata.gz: eecefbeebc5a8efd78c0d41bd54f86ad463ec2d988b08d8dbdd35d717964b261899aea17245c614f385eb2a696ad943d2d96b1d015dce69a09c56d15a6c7424b
7
- data.tar.gz: 665a85e6cbb2179696c88872ebe3d9eac6b2e3ed58230106e9d8358e328d095f7e476208de43e61d7d83babff2f25678fa4aed9563d269e416de5f7e56a2ca65
6
+ metadata.gz: 93ec2e53152dec0b4402778c8dd003467ec2fb8943c0b3f8ec143062448acbf9b67b430dd329ac1169c556962f92132d56342d434043f13950340ea683449ec8
7
+ data.tar.gz: d5134a5b7fe5de07253ddde38cb884ebad73bc96369963fa8a5c69d00bb58b5d36e24c2ab475fb39322045af007a8a843e96ea514882fd112bcffcd8e0e849ba
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.360]:001 >>> PWN.help
40
+ pwn[v0.5.361]: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.360]:001 >>> PWN.help
55
+ pwn[v0.5.361]: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.360]:001 >>> PWN.help
65
+ pwn[v0.5.361]: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:
@@ -277,10 +277,6 @@ module PWN
277
277
  var selected_data = selectedRows.data().toArray();
278
278
  original_json.data = selected_data;
279
279
 
280
- if (original_json.report_name) {
281
- original_json.report_name += '_selected';
282
- }
283
-
284
280
  var json_str = JSON.stringify(original_json, null, 2);
285
281
  var blob = new Blob([json_str], { type: 'application/json' });
286
282
  var url = URL.createObjectURL(blob);
@@ -334,10 +334,6 @@ module PWN
334
334
  var selected_data = selectedRows.data().toArray();
335
335
  original_json.data = selected_data;
336
336
 
337
- if (original_json.report_name) {
338
- original_json.report_name += '_selected';
339
- }
340
-
341
337
  var json_str = JSON.stringify(original_json, null, 2);
342
338
  var blob = new Blob([json_str], { type: 'application/json' });
343
339
  var url = URL.createObjectURL(blob);
@@ -364,10 +364,6 @@ module PWN
364
364
 
365
365
  original_json.data = new_data;
366
366
 
367
- if (original_json.report_name) {
368
- original_json.report_name += '_selected';
369
- }
370
-
371
367
  var json_str = JSON.stringify(original_json, null, 2);
372
368
  var blob = new Blob([json_str], { type: 'application/json' });
373
369
  var url = URL.createObjectURL(blob);
@@ -285,10 +285,6 @@ module PWN
285
285
  var selected_data = selectedRows.data().toArray();
286
286
  original_json.data = selected_data;
287
287
 
288
- if (original_json.report_name) {
289
- original_json.report_name += '_selected';
290
- }
291
-
292
288
  var json_str = JSON.stringify(original_json, null, 2);
293
289
  var blob = new Blob([json_str], { type: 'application/json' });
294
290
  var url = URL.createObjectURL(blob);
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.360'
4
+ VERSION = '0.5.361'
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.360
4
+ version: 0.5.361
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.