pwn 0.4.657 → 0.4.658

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: cccc9a73545d98c7ea358da6e2bfa4b1f559ea47bfc2c5508da928a3598f82e6
4
- data.tar.gz: 96e8c671bbb5bf11e66ba57196eaccf052714d211f48bee30b99eb18bb14430a
3
+ metadata.gz: a8c68251fcd5e0e63b4cf69eeb69a903ce22059b7596e1eb6ed3c7671a5e929d
4
+ data.tar.gz: 5ef0c65b628eadb0b9abb1a119a12447ab5597f92c2c798fdf361e4669b3aaca
5
5
  SHA512:
6
- metadata.gz: 52d89b0786494ce95a6584b15adb257b07deb281e92ad6dea318963f9bf9e7fc79fee106e2766b7f61b10069c0cab076b165cf199383f4a99b852fe60b2e6ce7
7
- data.tar.gz: 322378b8f011f581deafdbfe62fa5a9a36cf028ec5acc1d30a1d9a7ef5d96d641e09c1fcb1bec2a12e19257aa3c66f2bae79a2a405f3773507733d1465a6d690
6
+ metadata.gz: b1e157e0332533711b5f54239497a1b954bf2ae785f913407a36a73763d16fc18d5de8353f01458c421cc477d01317f127042b36a271f970cb140dcad88831d0
7
+ data.tar.gz: 999ae9da2a56ccaaf37a5c8c3f8b055d62576be70bd51b48bcee5af8faa572277edf0976a820bbfa6d572b44595f8c111680f6ae92ee347f9646d56b0197fdad
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ rvm use ruby-3.2.2@pwn
37
37
  $ rvm list gemsets
38
38
  $ gem install --verbose pwn
39
39
  $ pwn
40
- pwn[v0.4.657]:001 >>> PWN.help
40
+ pwn[v0.4.658]: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.2.2@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.657]:001 >>> PWN.help
55
+ pwn[v0.4.658]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -93,7 +93,7 @@ include_csv_headers = false if opts[:no_headers]
93
93
  include_csv_headers ||= true
94
94
 
95
95
  # Compare which two is larger
96
- if csv1.length > csv2.length
96
+ if csv1.length >= csv2.length
97
97
  csv_diff(
98
98
  larger_csv: csv1,
99
99
  smaller_csv: csv2,
@@ -101,7 +101,7 @@ if csv1.length > csv2.length
101
101
  include_csv_headers: include_csv_headers,
102
102
  column_names_to_exclude: column_names_to_exclude
103
103
  )
104
- elsif csv1.length < csv2.length
104
+ else
105
105
  csv_diff(
106
106
  larger_csv: csv2,
107
107
  smaller_csv: csv1,
@@ -109,6 +109,4 @@ elsif csv1.length < csv2.length
109
109
  include_csv_headers: include_csv_headers,
110
110
  column_names_to_exclude: column_names_to_exclude
111
111
  )
112
- else
113
- puts "#{c1_path} and #{c2_path} are the same size."
114
112
  end
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.4.657'
4
+ VERSION = '0.4.658'
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.4.657
4
+ version: 0.4.658
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.