win32-certstore 0.6.10 → 0.6.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a55969ab67094eb7c246c946a77807c596afb12d76fd4eef07d48076ffa43b7
4
- data.tar.gz: 711f553c79a83a4edb8ed2b572ca4ddac1478658b910d57fdb097d2323b4985f
3
+ metadata.gz: 8cf571ee12470bc199074583c729786b1f2464ccdda3d9ea5e8df55ba6f4c59b
4
+ data.tar.gz: 32aab9c95c7dc1f622b5201f25097797a993cf4eb38028425b18205249dc226c
5
5
  SHA512:
6
- metadata.gz: 79af95ff03edc99c69c77cb2b333258929afda17bd3c7068cfc08f3fac65619d4723e2b0042f6f1b77fd6b34f0c2136d0136931275dc1514f2e5e78252a05d79
7
- data.tar.gz: c8d84f2111d7ff052bacf7c3384552a519a17c9f49feec1e11e924115708c6838b2d034a3c9ecefafddf0ca08b3a0d1a0a4ef10b9863811abb684d92bb52c743
6
+ metadata.gz: 3bfd9466224de7a129b0bb178e1dbf6651f2ca5bd55cc4d1a2fb4523789d6e277443791f79b71428b098ae15adf785b1dcb50fe10bada13614e087801d44b817
7
+ data.tar.gz: 41da6d47e21d80fdad28eaa1d5c7cd800a9a2e11d7eb8c92acc9570254ed7d3b0d00c790c13be3b1081aec2d83a26b05b34e8b3ee2c3070424ce287823562c3f
@@ -43,7 +43,7 @@ module Win32
43
43
 
44
44
  # Validate thumbprint
45
45
  def validate_thumbprint(cert_thumbprint)
46
- if cert_thumbprint.nil? || cert_thumbprint.empty? || cert_thumbprint.strip.empty?
46
+ if cert_thumbprint.nil? || cert_thumbprint.empty? || cert_thumbprint.strip.empty? || cert_thumbprint.length < 40
47
47
  raise ArgumentError, "Invalid certificate thumbprint."
48
48
  end
49
49
  end
@@ -26,6 +26,10 @@ module Win32
26
26
  <<-EOH
27
27
  $cert = Get-ChildItem Cert:\\#{store_location}\\#{store_name} -Recurse | Where-Object { $_.Thumbprint -eq "#{thumbprint}" }
28
28
 
29
+ if ([string]::IsNullOrEmpty($cert)){
30
+ return "Certificate Not Found"
31
+ }
32
+
29
33
  $certdata = [System.Convert]::ToBase64String($cert.RawData, 'InsertLineBreaks')
30
34
  $content = $null
31
35
  if($null -ne $cert)
@@ -146,10 +146,11 @@ module Win32
146
146
  def cert_validate(certificate_thumbprint)
147
147
  validate_thumbprint(certificate_thumbprint)
148
148
  thumbprint = update_thumbprint(certificate_thumbprint)
149
-
150
149
  cert_pem = get_cert_pem(thumbprint)
150
+ return cert_pem if cert_pem == "Certificate Not Found"
151
151
  cert_pem = format_pem(cert_pem)
152
- verify_certificate(cert_pem)
152
+ result = verify_certificate(cert_pem)
153
+ result == false ? "Certificate Has Expired" : result
153
154
  end
154
155
 
155
156
  # Search certificate from open certificate store and return list
@@ -184,13 +185,16 @@ module Win32
184
185
  end
185
186
  powershell_cmd = <<~EOH
186
187
  $result = Get-ChildItem -Path Cert:\\#{converted_store}\\#{store_name} | Where-Object { $_.Subject -match "#{search_token.strip}" } | Select-Object Thumbprint
188
+ if ([string]::IsNullOrEmpty($result)){
189
+ return "Certificate Not Found"
190
+ }
187
191
  return $result[0].Thumbprint
188
192
  EOH
189
193
 
190
194
  powershell_exec!(powershell_cmd, :powershell, timeout: timeout).result
191
195
 
192
196
  rescue ChefPowerShell::PowerShellExceptions::PowerShellCommandFailed
193
- raise ArgumentError, "Certificate not found while looking for certificate : #{search_token} in store : #{store_name} at this location : #{store_location}"
197
+ raise ArgumentError, "PowerShell threw an error retreiving the certificate. You asked for a cert with this Search Token : #{search_token}, located in this store : #{store_name}, at this location : #{store_location}"
194
198
  end
195
199
 
196
200
  # To close and destroy pointer of open certificate store handler
@@ -1,6 +1,6 @@
1
1
  module Win32
2
2
  class Certstore
3
- VERSION = "0.6.10".freeze
3
+ VERSION = "0.6.13".freeze
4
4
  MAJOR, MINOR, TINY = VERSION.split(".")
5
5
  end
6
6
  end
@@ -84,7 +84,7 @@ module Win32
84
84
  def get!(certificate_thumbprint)
85
85
  cert_pem = cert_get(certificate_thumbprint)
86
86
 
87
- raise ArgumentError, "Unable to retrieve the certificate" if cert_pem.empty?
87
+ raise ArgumentError, "Unable to retrieve the certificate" if cert_pem.empty? || cert_pem == "Certificate Not Found"
88
88
 
89
89
  cert_pem
90
90
  end
@@ -118,13 +118,7 @@ module Win32
118
118
  # @param request[thumbprint<string>] of certificate
119
119
  # @return [true, false] only true or false
120
120
  def valid?(certificate_thumbprint)
121
- cert_validate(certificate_thumbprint).yield_self do |x|
122
- if x.is_a?(TrueClass) || x.is_a?(FalseClass)
123
- x
124
- else
125
- false
126
- end
127
- end
121
+ cert_validate(certificate_thumbprint)
128
122
  end
129
123
 
130
124
  # To close and destroy pointer of open certificate store handler
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: win32-certstore
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.10
4
+ version: 0.6.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chef Software
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-28 00:00:00.000000000 Z
11
+ date: 2022-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler