pwn 0.5.386 → 0.5.387

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: 32574f1d485c5d56361798bda3224919973f8347bbb3190797d9da2aee93c850
4
- data.tar.gz: f539be698f7167a78fbc79f8769df47886e3f7a2a53746fa4d2468432212fef5
3
+ metadata.gz: 6276f7133a84a10851a85b44e5b21543de34abaec589011698c04667ede52f35
4
+ data.tar.gz: b632de2f5bf6957b5ab1ce5f4408403a935a4fce1709bbcaa223d56962cef613
5
5
  SHA512:
6
- metadata.gz: 469d75064ee55c3c2ab4bfc355f1970585204c3b449f43623aa8e951783194dee1f71e8650474750bcc56bd082a8ada97a54f525bdbc25803eea7b7a42ace9c5
7
- data.tar.gz: 41b084795147fdc31fc344b4b6e82b31537f65a1562b64a898548170e7b8b971afbcacb798e9c434e2dd497c0d8ceeea895f5132556c91f79a54385912c2e804
6
+ metadata.gz: bdc09c6f2b768550ab1c288bccab9e02c8008eb09769313f350719c19b8a4d87b6121116f481f013ee2ba2b978b79ccf5a81ec7a177f0f966103b810887e367b
7
+ data.tar.gz: f6911fdab5cffa4038412815b4b8a1f5ccba48d6bd0b645900aa65b79138322c00945b6740c0f5f165bcb3169b2c54582ad0c5735b19d07ac68081e60eff2f23
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.386]:001 >>> PWN.help
40
+ pwn[v0.5.387]: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.386]:001 >>> PWN.help
55
+ pwn[v0.5.387]: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.386]:001 >>> PWN.help
65
+ pwn[v0.5.387]: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:
@@ -612,8 +612,8 @@ module PWN
612
612
  flatData.push({
613
613
  timestamp: row.timestamp,
614
614
  test_case: row.security_references.sast_module.split('::')[2],
615
- nist: row.security_references.section,
616
- cwe: row.security_references.cwe_id,
615
+ nist_800_53_security_control: row.security_references.nist_800_53_uri,
616
+ cwe: row.security_references.cwe_uri,
617
617
  path: row.filename.entry,
618
618
  line_no: line.line_no,
619
619
  contents: line.contents,
@@ -639,12 +639,12 @@ module PWN
639
639
 
640
640
  // Set column widths by dividing desired column inches by 0.135
641
641
  // column inches observed with Exce
642
- // e.g 2.83 inches / 0.135 ~ 209px
642
+ // e.g 2.83 inches / 0.0135 ~ 209px
643
643
  ws['!cols'] = [
644
644
  {wpx: 209},
645
645
  {wpx: 130},
646
- {wpx: 350},
647
- {wpx: 40},
646
+ {wpx: 580},
647
+ {wpx: 256},
648
648
  {wpx: 110},
649
649
  {wpx: 40},
650
650
  {wpx: 370},
@@ -716,7 +716,7 @@ module PWN
716
716
  ...flatData.map(r => [
717
717
  r.timestamp,
718
718
  r.test_case,
719
- r.nist,
719
+ r.nist_800_53_security_control,
720
720
  r.cwe,
721
721
  r.path,
722
722
  r.line_no,
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.386'
4
+ VERSION = '0.5.387'
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.386
4
+ version: 0.5.387
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.