- added .net versions check - added PrintMappedDrivesWMI - added PrintMicrosoftUpdatesCOM - added PrintSystemLastShutdownTime - added PrintCurrentUserIdleTime - added PowerShell Core Version check - updated ListCloudCreds - updated GetMcAfeeSitelistFiles - added PrintMachineAndUserCertificateFiles
20 lines
655 B
C#
20 lines
655 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace winPEAS.Info.FilesInfo.Certificates
|
|
{
|
|
internal class CertificateInfo
|
|
{
|
|
public string StoreLocation { get; set; }
|
|
public string Issuer { get; set; }
|
|
public string Subject { get; set; }
|
|
public DateTime ValidDate { get; set; }
|
|
public DateTime ExpiryDate { get; set; }
|
|
public bool HasPrivateKey { get; set; }
|
|
public bool? KeyExportable { get; set; }
|
|
public string Thumbprint { get; set; }
|
|
public string Template { get; set; }
|
|
public List<string> EnhancedKeyUsages { get; set; } = new List<string>();
|
|
}
|
|
}
|